yangminded commited on
Commit
55d6647
·
verified ·
1 Parent(s): aa8f609

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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]