MLooten commited on
Commit
a2c171a
·
verified ·
1 Parent(s): ace7ead

Add get_current_time_in_timezone tool support

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -85,7 +85,7 @@ with open("prompts.yaml", 'r') as stream:
85
 
86
  agent = CodeAgent(
87
  model=model,
88
- tools=[final_answer, get_weather_prediction, get_current_weather], ## add your tools here (don't remove final answer)
89
  max_steps=6,
90
  verbosity_level=1,
91
  grammar=None,
 
85
 
86
  agent = CodeAgent(
87
  model=model,
88
+ tools=[final_answer, get_current_time_in_timezone, get_weather_prediction, get_current_weather], ## add your tools here (don't remove final answer)
89
  max_steps=6,
90
  verbosity_level=1,
91
  grammar=None,