breadg commited on
Commit
f8704f6
·
verified ·
1 Parent(s): 0702d9f

Update app.py

Browse files

Add chat_with_an_llm, get_current_time_in_timezone, image_generation_tool into tools.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ with open("prompts.yaml", 'r') as stream:
63
 
64
  agent = CodeAgent(
65
  model=model,
66
- tools=[final_answer], ## add your tools here (don't remove final answer)
67
  max_steps=6,
68
  verbosity_level=1,
69
  grammar=None,
 
63
 
64
  agent = CodeAgent(
65
  model=model,
66
+ tools=[final_answer, chat_with_an_llm, get_current_time_in_timezone, image_generation_tool], ## add your tools here (don't remove final answer)
67
  max_steps=6,
68
  verbosity_level=1,
69
  grammar=None,