Sborole commited on
Commit
ef321f4
·
verified ·
1 Parent(s): d4cb0a1

Update src/agent.py

Browse files
Files changed (1) hide show
  1. src/agent.py +2 -2
src/agent.py CHANGED
@@ -5,7 +5,7 @@ from tools.ReadAudioTool import ReadAudioTool
5
  from tools.ReadImageTool import ReadImageTool
6
  from tools.ReadTextTool import ReadTextTool
7
  from tools.ReadVideoTool import ReadVideoTool
8
- from tools.WebSearchTool import DuckDuckGoSearchTool
9
  from tools.YouTubeTool import YouTubeTool
10
  from tools.PythonRunnerTool import PythonRunnerTool
11
  from tools.PythonCalcTool import PythonCalcTool
@@ -69,7 +69,7 @@ class BasicAgent():
69
  ReadImageTool(),
70
  ReadTextTool(),
71
  ReadVideoTool(),
72
- DuckDuckGoSearchTool(),
73
  WikiTitleFinder(),
74
  WikiContentFetcher(),
75
  YouTubeTool(),
 
5
  from tools.ReadImageTool import ReadImageTool
6
  from tools.ReadTextTool import ReadTextTool
7
  from tools.ReadVideoTool import ReadVideoTool
8
+ from tools.WebSearchTool import SerpAPISearchTool
9
  from tools.YouTubeTool import YouTubeTool
10
  from tools.PythonRunnerTool import PythonRunnerTool
11
  from tools.PythonCalcTool import PythonCalcTool
 
69
  ReadImageTool(),
70
  ReadTextTool(),
71
  ReadVideoTool(),
72
+ SerpAPISearchTool(),
73
  WikiTitleFinder(),
74
  WikiContentFetcher(),
75
  YouTubeTool(),