yinde commited on
Commit
1c66c1a
·
verified ·
1 Parent(s): 1d5ed0b

Update app.py

Browse files

testing without object_detection in tools, because of an error.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -127,7 +127,7 @@ with open("prompts.yaml", 'r') as stream:
127
 
128
  agent = CodeAgent(
129
  model=model,
130
- tools=[object_detection, DuckDuckGoSearchTool(), final_answer], ## add your tools here (don't remove final answer)
131
  max_steps=6,
132
  verbosity_level=1,
133
  grammar=None,
 
127
 
128
  agent = CodeAgent(
129
  model=model,
130
+ tools=[DuckDuckGoSearchTool(), final_answer], ## add your tools here (don't remove final answer)
131
  max_steps=6,
132
  verbosity_level=1,
133
  grammar=None,