iQuentin commited on
Commit
dbfce84
·
verified ·
1 Parent(s): 6c91ac4

Correcting 2 last modifications

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -55,14 +55,14 @@ with open("prompts.yaml", 'r') as stream:
55
 
56
  agent = CodeAgent(
57
  model=model,
58
- tools=[DuckDuckGoSearchTool], [final_answer], ## add your tools here (don't remove final answer)
59
  max_steps=6,
60
  verbosity_level=1,
61
  grammar=None,
62
  planning_interval=None,
63
  name=None,
64
  description=None,
65
- prompt_templates=prompt_templates,
66
  )
67
 
68
 
 
55
 
56
  agent = CodeAgent(
57
  model=model,
58
+ tools=[final_answer,DuckDuckGoSearchTool()], ## add your tools here (don't remove final answer)
59
  max_steps=6,
60
  verbosity_level=1,
61
  grammar=None,
62
  planning_interval=None,
63
  name=None,
64
  description=None,
65
+ prompt_templates=prompt_templates
66
  )
67
 
68