saretta00 commited on
Commit
0c7f555
·
verified ·
1 Parent(s): 212957b

add image gen tool

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ with open("prompts.yaml", 'r') as stream:
49
 
50
  agent = CodeAgent(
51
  model=model,
52
- tools=[final_answer, add_numbers, DuckDuckGoSearchTool(), get_current_time_in_timezone], ## add your tools here (don't remove final answer)
53
  max_steps=6,
54
  verbosity_level=1,
55
  grammar=None,
 
49
 
50
  agent = CodeAgent(
51
  model=model,
52
+ tools=[final_answer, image_generation_tool, add_numbers, DuckDuckGoSearchTool(), get_current_time_in_timezone], ## add your tools here (don't remove final answer)
53
  max_steps=6,
54
  verbosity_level=1,
55
  grammar=None,