BirdOnFire commited on
Commit
f6e3648
·
verified ·
1 Parent(s): 0f216b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -37,6 +37,8 @@ def get_current_time_in_timezone(timezone: str) -> str:
37
 
38
 
39
  final_answer = FinalAnswerTool()
 
 
40
 
41
 
42
  # If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
@@ -58,7 +60,7 @@ with open("prompts.yaml", 'r') as stream:
58
 
59
  agent = CodeAgent(
60
  model=model,
61
- tools=[final_answer,DuckDuckGoSearchTool,VisitWebpageTool], ## add your tools here (don't remove final answer)
62
  max_steps=6,
63
  verbosity_level=1,
64
  grammar=None,
 
37
 
38
 
39
  final_answer = FinalAnswerTool()
40
+ visit_webpage = VisitWebpageTool()
41
+ web_search = DuckDuckGoSearchTool()
42
 
43
 
44
  # If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
 
60
 
61
  agent = CodeAgent(
62
  model=model,
63
+ tools=[final_answer,web_search,visit_webpage], ## add your tools here (don't remove final answer)
64
  max_steps=6,
65
  verbosity_level=1,
66
  grammar=None,