debisoft commited on
Commit
19d36df
·
1 Parent(s): 0c91cb7

Increase to max_step 10

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -124,7 +124,7 @@ with open("prompts.yaml", 'r') as stream:
124
  agent = CodeAgent(
125
  model=model,
126
  tools=[final_answer, say_hello, image_generation_tool, search_tool, VisitWebpageTool()], ## add your tools here (don't remove final answer)
127
- max_steps=6,
128
  verbosity_level=1,
129
  grammar=None,
130
  planning_interval=None,
 
124
  agent = CodeAgent(
125
  model=model,
126
  tools=[final_answer, say_hello, image_generation_tool, search_tool, VisitWebpageTool()], ## add your tools here (don't remove final answer)
127
+ max_steps=10,
128
  verbosity_level=1,
129
  grammar=None,
130
  planning_interval=None,