debisoft commited on
Commit
aaf4ca3
·
1 Parent(s): 48cdd74

Increased max_steps=20

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -135,7 +135,7 @@ with open("prompts.yaml", 'r') as stream:
135
  agent = CodeAgent(
136
  model=model,
137
  tools=[fetch_wikipedia_page_content, final_answer, say_hello, image_generation_tool, search_tool, VisitWebpageTool()], ## add your tools here (don't remove final answer)
138
- max_steps=10,
139
  verbosity_level=1,
140
  grammar=None,
141
  planning_interval=None,
 
135
  agent = CodeAgent(
136
  model=model,
137
  tools=[fetch_wikipedia_page_content, final_answer, say_hello, image_generation_tool, search_tool, VisitWebpageTool()], ## add your tools here (don't remove final answer)
138
+ max_steps=20,
139
  verbosity_level=1,
140
  grammar=None,
141
  planning_interval=None,