eli-the-pooh commited on
Commit
8122d15
·
verified ·
1 Parent(s): 9d986eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -66,8 +66,8 @@ with open("prompts.yaml", 'r') as stream:
66
 
67
  agent = CodeAgent(
68
  model=model,
69
- #tools=[final_answer, image_generation_tool, get_current_time_in_timezone, my_custom_tool], ## add your tools here (don't remove final answer)
70
- tools=[final_answer, image_generation_tool, my_custom_tool, DuckDuckGoSearchTool()], ## add your tools here (don't remove final answer)
71
  max_steps=6,
72
  verbosity_level=1,
73
  grammar=None,
 
66
 
67
  agent = CodeAgent(
68
  model=model,
69
+ tools=[final_answer, image_generation_tool, get_current_time_in_timezone, my_custom_tool], ## add your tools here (don't remove final answer)
70
+ #tools=[final_answer, image_generation_tool, my_custom_tool, DuckDuckGoSearchTool()], ## add your tools here (don't remove final answer)
71
  max_steps=6,
72
  verbosity_level=1,
73
  grammar=None,