Update app.py
Browse files
app.py
CHANGED
@@ -59,7 +59,7 @@ class BasicAgent:
|
|
59 |
self.agent = CodeAgent(
|
60 |
model=model,
|
61 |
tools=[FinalAnswerTool(), DuckDuckGoSearchTool(), VisitWebpageTool()], ## add your tools here (don't remove final answer),
|
62 |
-
additional_authorized_imports=['pandas'],
|
63 |
max_steps=6,
|
64 |
verbosity_level=1
|
65 |
#step_callbacks=[delay_execution_10]
|
|
|
59 |
self.agent = CodeAgent(
|
60 |
model=model,
|
61 |
tools=[FinalAnswerTool(), DuckDuckGoSearchTool(), VisitWebpageTool()], ## add your tools here (don't remove final answer),
|
62 |
+
additional_authorized_imports=['pandas', 'requests', 'markdownify'],
|
63 |
max_steps=6,
|
64 |
verbosity_level=1
|
65 |
#step_callbacks=[delay_execution_10]
|