jorgemova commited on
Commit
196f6f1
·
verified ·
1 Parent(s): d95a259

Add calculate_factorial function

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