CrewAI-Studio
CrewAI-Studio copied to clipboard
package duckduck_search obsolete
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:
to:from duckduckgo_search import DDGS
This updates the import to reflect the new package name.from ddgs import DDGS
2. Requirements File Modification
- File:
requirements.txt - Change: Replace the package on line 17 from:
to:duckduckgo-search>=8.0.2
This ensures that the correct dependency is installed for the project.ddgs
Thank you for your attention to this matter.