GuillaumeProjects commited on
Commit
7798c1a
·
verified ·
1 Parent(s): 7580023

Update app.py

Browse files

Added search_web tool

Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -46,6 +46,7 @@ model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may
46
  custom_role_conversions=None,
47
  )
48
 
 
49
 
50
  # Import tool from Hub
51
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
@@ -55,7 +56,7 @@ with open("prompts.yaml", 'r') as stream:
55
 
56
  agent = CodeAgent(
57
  model=model,
58
- tools=[final_answer,image_generation_tool], ## add your tools here (don't remove final answer)
59
  max_steps=6,
60
  verbosity_level=1,
61
  grammar=None,
 
46
  custom_role_conversions=None,
47
  )
48
 
49
+ search_web = DuckDuckGoSearchTool()
50
 
51
  # Import tool from Hub
52
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
 
56
 
57
  agent = CodeAgent(
58
  model=model,
59
+ tools=[final_answer,image_generation_tool,search_web], ## add your tools here (don't remove final answer)
60
  max_steps=6,
61
  verbosity_level=1,
62
  grammar=None,