david-clifford commited on
Commit
a5625a5
·
verified ·
1 Parent(s): e71ad37

Add toss_a_die to list of tools in CodeAgent

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