2stacks commited on
Commit
b77d916
·
verified ·
1 Parent(s): f982b9e

Removed DuckDuckGoSearchTool from tools list

Browse files

DuckDuckGoSearchTool has not been implemented. Re-added get_time_difference to tools list.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -151,7 +151,7 @@ with open("prompts.yaml", 'r') as stream:
151
 
152
  agent = CodeAgent(
153
  model=model,
154
- tools=[final_answer, DuckDuckGoSearchTool, image_generation_tool], ## add your tools here (don't remove final answer)
155
  max_steps=6,
156
  verbosity_level=1,
157
  grammar=None,
 
151
 
152
  agent = CodeAgent(
153
  model=model,
154
+ tools=[final_answer, image_generation_tool, get_time_difference], ## add your tools here (don't remove final answer)
155
  max_steps=6,
156
  verbosity_level=1,
157
  grammar=None,