ABVM commited on
Commit
64068ec
·
verified ·
1 Parent(s): e91af97

Update app.py

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