ThorstenWeiskopf commited on
Commit
40c8bd4
·
verified ·
1 Parent(s): c458c63

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -57,7 +57,8 @@ with open("prompts.yaml", 'r') as stream:
57
 
58
  agent = CodeAgent(
59
  model=model,
60
- tools=[final_answer, get_current_time_in_timezone, image_generation_tool, DuckDuckGoSearchTool()], ## add your tools here (don't remove final answer)
 
61
  max_steps=6,
62
  verbosity_level=1,
63
  grammar=None,
 
57
 
58
  agent = CodeAgent(
59
  model=model,
60
+ #tools=[final_answer, get_current_time_in_timezone, image_generation_tool, DuckDuckGoSearchTool()], ## add your tools here (don't remove final answer)
61
+ tools=[final_answer, get_current_time_in_timezone], ## add your tools here (don't remove final answer)
62
  max_steps=6,
63
  verbosity_level=1,
64
  grammar=None,