bstraehle commited on
Commit
c0abe67
·
verified ·
1 Parent(s): 04804d8

Update agents.py

Browse files
Files changed (1) hide show
  1. agents.py +2 -2
agents.py CHANGED
@@ -36,7 +36,7 @@ def run_gaia(question, file_name):
36
  description = "Runs web searches for you. Give it your query as an argument.",
37
  max_steps = 1,
38
  model = OpenAIServerModel(model_id = MODEL_ID),
39
- #name = "web_search",
40
  #tools = [search_tool],
41
  tools = [DuckDuckGoSearchTool()],
42
  verbosity_level = 1
@@ -46,7 +46,7 @@ def run_gaia(question, file_name):
46
  description = "Runs wikipedia searches for you. Give it your query as an argument.",
47
  max_steps = 1,
48
  model = OpenAIServerModel(model_id = MODEL_ID),
49
- #name = "wikipedia_search",
50
  #tools = [wikipedia_tool],
51
  tools = [WikipediaSearchTool()],
52
  verbosity_level = 1
 
36
  description = "Runs web searches for you. Give it your query as an argument.",
37
  max_steps = 1,
38
  model = OpenAIServerModel(model_id = MODEL_ID),
39
+ name = "web_search_agent",
40
  #tools = [search_tool],
41
  tools = [DuckDuckGoSearchTool()],
42
  verbosity_level = 1
 
46
  description = "Runs wikipedia searches for you. Give it your query as an argument.",
47
  max_steps = 1,
48
  model = OpenAIServerModel(model_id = MODEL_ID),
49
+ name = "wikipedia_search_agent",
50
  #tools = [wikipedia_tool],
51
  tools = [WikipediaSearchTool()],
52
  verbosity_level = 1