Sborole commited on
Commit
91d8de5
·
verified ·
1 Parent(s): 972520e

Update src/agent.py

Browse files
Files changed (1) hide show
  1. src/agent.py +2 -2
src/agent.py CHANGED
@@ -1,11 +1,11 @@
1
  from src.settings import Settings
2
- from smolagents import LiteLLMModel, ToolCallingAgent, CodeAgent, InferenceClientModel, GoogleSearchTool, Tool
3
  from tools.FinalAnswerTool import FinalAnswerTool
4
  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
 
1
  from src.settings import Settings
2
+ from smolagents import LiteLLMModel, ToolCallingAgent, CodeAgent, InferenceClientModel, Tool
3
  from tools.FinalAnswerTool import FinalAnswerTool
4
  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 GoogleSearchTool
9
  from tools.YouTubeTool import YouTubeTool
10
  from tools.PythonRunnerTool import PythonRunnerTool
11
  from tools.PythonCalcTool import PythonCalcTool