aubrigene949 commited on
Commit
84f5308
·
verified ·
1 Parent(s): a659c96

Update app.py

Browse files

Removed all but final_answer from tools list

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ class BasicAgent:
27
  final_answer = FinalAnswerTool()
28
  agent = CodeAgent(
29
  model=model,
30
- tools=[final_answer, get_current_time_in_timezone, add_ints_to_str, image_generation_tool], ## add your tools here (don't remove final answer)
31
  max_steps=6,
32
  verbosity_level=1,
33
  grammar=None,
 
27
  final_answer = FinalAnswerTool()
28
  agent = CodeAgent(
29
  model=model,
30
+ tools=[final_answer], ## add your tools here (don't remove final answer)
31
  max_steps=6,
32
  verbosity_level=1,
33
  grammar=None,