Damian96 commited on
Commit
fe495bc
·
verified ·
1 Parent(s): f880d3c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,7 +50,7 @@ with open("prompts.yaml", 'r') as stream:
50
 
51
  agent = CodeAgent(
52
  model=model,
53
- tools=[final_answer, get_current_time_in_timezone, count_letters_in_name], ## add your tools here (don't remove final answer)
54
  max_steps=6,
55
  verbosity_level=1,
56
  grammar=None,
 
50
 
51
  agent = CodeAgent(
52
  model=model,
53
+ tools=[final_answer, get_current_time_in_timezone, count_letters_in_name, DuckDuckGoSearchTool()], ## add your tools here (don't remove final answer)
54
  max_steps=6,
55
  verbosity_level=1,
56
  grammar=None,