Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,6 +4,7 @@ import requests
|
|
4 |
import pytz
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
|
|
7 |
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
@@ -18,6 +19,10 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
18 |
"""
|
19 |
return "What magic will you build ?"
|
20 |
|
|
|
|
|
|
|
|
|
21 |
@tool
|
22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
23 |
"""A tool that fetches the current local time in a specified timezone.
|
@@ -49,13 +54,15 @@ custom_role_conversions=None,
|
|
49 |
|
50 |
# Import tool from Hub
|
51 |
image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
|
|
|
|
|
52 |
|
53 |
with open("prompts.yaml", 'r') as stream:
|
54 |
prompt_templates = yaml.safe_load(stream)
|
55 |
|
56 |
agent = CodeAgent(
|
57 |
model=model,
|
58 |
-
tools=[final_answer], ## add your tools here (don't remove final answer)
|
59 |
max_steps=6,
|
60 |
verbosity_level=1,
|
61 |
grammar=None,
|
@@ -65,5 +72,4 @@ agent = CodeAgent(
|
|
65 |
prompt_templates=prompt_templates
|
66 |
)
|
67 |
|
68 |
-
|
69 |
GradioUI(agent).launch()
|
|
|
4 |
import pytz
|
5 |
import yaml
|
6 |
from tools.final_answer import FinalAnswerTool
|
7 |
+
from tools import visit_webpage
|
8 |
|
9 |
from Gradio_UI import GradioUI
|
10 |
|
|
|
19 |
"""
|
20 |
return "What magic will you build ?"
|
21 |
|
22 |
+
@tool
|
23 |
+
def visit_webpage(url: str) -> str
|
24 |
+
"""Visits a webpage at the given ur and returns its contents as markdown"""
|
25 |
+
|
26 |
@tool
|
27 |
def get_current_time_in_timezone(timezone: str) -> str:
|
28 |
"""A tool that fetches the current local time in a specified timezone.
|
|
|
54 |
|
55 |
# Import tool from Hub
|
56 |
image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
|
57 |
+
search_tool= DuckDuckGoSearchTool()
|
58 |
+
|
59 |
|
60 |
with open("prompts.yaml", 'r') as stream:
|
61 |
prompt_templates = yaml.safe_load(stream)
|
62 |
|
63 |
agent = CodeAgent(
|
64 |
model=model,
|
65 |
+
tools=[final_answer, get_current_time_in_timezone, search_tool, image_generation_tool ], ## add your tools here (don't remove final answer)
|
66 |
max_steps=6,
|
67 |
verbosity_level=1,
|
68 |
grammar=None,
|
|
|
72 |
prompt_templates=prompt_templates
|
73 |
)
|
74 |
|
|
|
75 |
GradioUI(agent).launch()
|