adilos1 commited on
Commit
013593a
·
verified ·
1 Parent(s): 32b480c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -51,7 +51,7 @@ class MyAgent:
51
 
52
  self.agent = CodeAgent(
53
  tools=[
54
- # DuckDuckGoSearchTool(),
55
  ReverseTextTool,
56
  RunPythonFileTool,
57
  download_server
@@ -59,6 +59,7 @@ class MyAgent:
59
  model=self.model,
60
  add_base_tools=True,
61
  max_steps=10,
 
62
  # additional_authorized_imports=['*'],
63
  # planning_interval=5,
64
  step_callbacks=[delay_execution_10],
 
51
 
52
  self.agent = CodeAgent(
53
  tools=[
54
+ DuckDuckGoSearchTool(),
55
  ReverseTextTool,
56
  RunPythonFileTool,
57
  download_server
 
59
  model=self.model,
60
  add_base_tools=True,
61
  max_steps=10,
62
+ # verbosity_level=LogLevel.ERROR,
63
  # additional_authorized_imports=['*'],
64
  # planning_interval=5,
65
  step_callbacks=[delay_execution_10],