CrewAI-Studio icon indicating copy to clipboard operation
CrewAI-Studio copied to clipboard

package duckduck_search obsolete

Open amartin-tech opened this issue 4 months ago • 0 comments

Hello,

I'm opening this issue because I've found that the dukduk_search tool is no longer working as the package has been renamed. The duckduckgo_search package has been renamed to ddgs.

Proposed Changes

To fix this, the following two files need to be modified:

1. Tool File Modification

  • File: app/tools/DuckDuckGoSearchTool.py
  • Change: Replace the import statement on line 3 from:
    from duckduckgo_search import DDGS
    
    to:
    from ddgs import DDGS
    
    This updates the import to reflect the new package name.

2. Requirements File Modification

  • File: requirements.txt
  • Change: Replace the package on line 17 from:
    duckduckgo-search>=8.0.2
    
    to:
    ddgs
    
    This ensures that the correct dependency is installed for the project.

Thank you for your attention to this matter.

amartin-tech avatar Aug 15 '25 17:08 amartin-tech