Martin Bär commited on
Commit
81dea43
·
1 Parent(s): d8b1cc3

Try only using wikipedia tool

Browse files
Files changed (1) hide show
  1. basic_agent.py +1 -1
basic_agent.py CHANGED
@@ -36,7 +36,7 @@ class BasicAgent:
36
 
37
  # Create Alfred with all the tools
38
  self.agent = AgentWorkflow.from_tools_or_functions(
39
- [search_tool, webpage_tool] + wiki_search_tool_las,
40
  llm=llm,
41
  verbose=True
42
  )
 
36
 
37
  # Create Alfred with all the tools
38
  self.agent = AgentWorkflow.from_tools_or_functions(
39
+ wiki_search_tool_las, # [search_tool, webpage_tool]
40
  llm=llm,
41
  verbose=True
42
  )