Update app.py
Browse files
app.py
CHANGED
@@ -266,7 +266,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
266 |
agent = CodeAgent(model=llm_model,
|
267 |
tools=[web_structure_analyzer_tool, wiki_tool, search_tool, python_tool, html_parse_tool],
|
268 |
prompt_templates=my_prompt_templates,
|
269 |
-
max_steps=
|
270 |
add_base_tools=True,
|
271 |
additional_authorized_imports=["dateparser", "bs4", "regex"])
|
272 |
except Exception as e:
|
|
|
266 |
agent = CodeAgent(model=llm_model,
|
267 |
tools=[web_structure_analyzer_tool, wiki_tool, search_tool, python_tool, html_parse_tool],
|
268 |
prompt_templates=my_prompt_templates,
|
269 |
+
max_steps=8,
|
270 |
add_base_tools=True,
|
271 |
additional_authorized_imports=["dateparser", "bs4", "regex"])
|
272 |
except Exception as e:
|