Satvikxbansal commited on
Commit
a557e70
·
verified ·
1 Parent(s): 1f96b1b

added tools array in agent. had missed it earlier

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -68,7 +68,10 @@ with open("prompts.yaml", 'r') as stream:
68
 
69
  agent = CodeAgent(
70
  model=model,
71
- tools=[final_answer], ## add your tools here (don't remove final answer)
 
 
 
72
  max_steps=6,
73
  verbosity_level=1,
74
  grammar=None,
 
68
 
69
  agent = CodeAgent(
70
  model=model,
71
+ tools=[final_answer,
72
+ local_celeb_search,
73
+ get_current_time_in_timezone,
74
+ image_generation_tool], ## add your tools here (don't remove final answer)
75
  max_steps=6,
76
  verbosity_level=1,
77
  grammar=None,