Spaces:
Running
Running
Update app.py
Browse filesCreate a weather tool
app.py
CHANGED
@@ -7,17 +7,27 @@ from tools.final_answer import FinalAnswerTool
|
|
7 |
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
10 |
-
|
11 |
@tool
|
12 |
-
def
|
13 |
-
|
14 |
-
"""A tool that does nothing yet
|
15 |
Args:
|
16 |
-
|
17 |
-
|
|
|
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.
|
@@ -55,7 +65,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
55 |
|
56 |
agent = CodeAgent(
|
57 |
model=model,
|
58 |
-
tools=[final_answer, get_current_time_in_timezone, DuckDuckGoSearchTool(), image_generation_tool],
|
59 |
max_steps=6,
|
60 |
verbosity_level=1,
|
61 |
grammar=None,
|
|
|
7 |
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
10 |
+
|
11 |
@tool
|
12 |
+
def get_weather(city:str)-> str:
|
13 |
+
""" A tool that fetches the current weather for a given city.
|
|
|
14 |
Args:
|
15 |
+
city (str): The name of the city (e.g., "Paris").
|
16 |
+
Returns:
|
17 |
+
str: A description of the weather.
|
18 |
"""
|
|
|
19 |
|
20 |
+
try:
|
21 |
+
url = f"https://wttr.in/{city}?format=3"
|
22 |
+
response = requests.get(url)
|
23 |
+
if response.status.code == 200:
|
24 |
+
return response.text.strip()
|
25 |
+
else:
|
26 |
+
return f"Error fetching weather for {city} (status: {response.status.code})"
|
27 |
+
except Exception as e:
|
28 |
+
return f"Error: {str(e)}"
|
29 |
+
|
30 |
+
|
31 |
@tool
|
32 |
def get_current_time_in_timezone(timezone: str) -> str:
|
33 |
"""A tool that fetches the current local time in a specified timezone.
|
|
|
65 |
|
66 |
agent = CodeAgent(
|
67 |
model=model,
|
68 |
+
tools=[final_answer, get_current_time_in_timezone, DuckDuckGoSearchTool(), image_generation_tool, get_weather],
|
69 |
max_steps=6,
|
70 |
verbosity_level=1,
|
71 |
grammar=None,
|