oedemis commited on
Commit
df5e96b
·
verified ·
1 Parent(s): d539ebf
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -36,9 +36,9 @@ def get_current_time_in_timezone(timezone: str) -> str:
36
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
37
 
38
 
39
- #final_answer = FinalAnswerTool()
40
  #visit_webpage = VisitWebpageTool()
41
- #web_search = DuckDuckGoSearchTool()
42
 
43
  # 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:
44
  # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
@@ -59,7 +59,7 @@ with open("prompts.yaml", 'r') as stream:
59
  # visit_webpage, web_search
60
  agent = CodeAgent(
61
  model=model,
62
- tools=[get_current_time_in_timezone, my_custom_tool], ## add your tools here (don't remove final answer)
63
  max_steps=6,
64
  verbosity_level=1,
65
  grammar=None,
 
36
  return f"Error fetching time for timezone '{timezone}': {str(e)}"
37
 
38
 
39
+ final_answer = FinalAnswerTool()
40
  #visit_webpage = VisitWebpageTool()
41
+ web_search = DuckDuckGoSearchTool()
42
 
43
  # 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:
44
  # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
 
59
  # visit_webpage, web_search
60
  agent = CodeAgent(
61
  model=model,
62
+ tools=[image_generation_tool,final_answer,web_search], ## add your tools here (don't remove final answer)
63
  max_steps=6,
64
  verbosity_level=1,
65
  grammar=None,