Increase to max_step 10
Browse files
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=
|
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,
|