ABVM commited on
Commit
e91af97
·
verified ·
1 Parent(s): 40c9036

Update app.py

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