RCaz commited on
Commit
b124d37
·
verified ·
1 Parent(s): a640217

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +3 -3
agent.py CHANGED
@@ -74,11 +74,11 @@ class TestAgent:
74
  # Instantiate the agent
75
  self.agent = CodeAgent(
76
  tools=[real_number_calculator, # homemade tool
77
- DuckDuckGoSearchTool(), # basic tools from smolagent
78
- VisitWebpageTool(),
79
  wikipedia_tool, # tool from langchain with extra parmaeters
80
  #youtube_tools, # tool from MCP server
81
- FinalAnswerTool()],
82
  model=model,
83
  max_steps=3,
84
  verbosity_level=2
 
74
  # Instantiate the agent
75
  self.agent = CodeAgent(
76
  tools=[real_number_calculator, # homemade tool
77
+ DuckDuckGoSearchTool, # basic tools from smolagent
78
+ VisitWebpageTool,
79
  wikipedia_tool, # tool from langchain with extra parmaeters
80
  #youtube_tools, # tool from MCP server
81
+ FinalAnswerTool],
82
  model=model,
83
  max_steps=3,
84
  verbosity_level=2