mobrobro commited on
Commit
eddcd0e
·
verified ·
1 Parent(s): 6e67fed

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -79,8 +79,8 @@ agent = CodeAgent(
79
  tools=[
80
  final_answer, # Keep this
81
  image_generation_tool, # Image generation
82
- tool(get_current_time_in_timezone), # Timezone checker
83
- tool(animal_battle), # Your animal battle simulator
84
  ],
85
  max_steps=6,
86
  verbosity_level=1,
 
79
  tools=[
80
  final_answer, # Keep this
81
  image_generation_tool, # Image generation
82
+ get_current_time_in_timezone, # Already has @tool decorator
83
+ animal_battle, # Already has @tool decorator
84
  ],
85
  max_steps=6,
86
  verbosity_level=1,