Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,14 +9,20 @@ from Gradio_UI import GradioUI
|
|
| 9 |
|
| 10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 11 |
@tool
|
| 12 |
-
def
|
| 13 |
-
|
| 14 |
-
"""A tool that
|
| 15 |
Args:
|
| 16 |
-
|
| 17 |
-
arg2: the second argument
|
| 18 |
"""
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 9 |
|
| 10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 11 |
@tool
|
| 12 |
+
def get_city_weather(city:str)-> str: #it's import to specify the return type
|
| 13 |
+
|
| 14 |
+
"""A tool that fetches the weather of an specific city
|
| 15 |
Args:
|
| 16 |
+
city: A string representing a valid city (e.g., 'Chicago')
|
|
|
|
| 17 |
"""
|
| 18 |
+
import requests
|
| 19 |
+
api_url = f"ttp://api.weatherapi.com/v1/current.json?key=21a4156f8e9e45299ab185723251203&q={city}&aqi=no"
|
| 20 |
+
response = requests.get(api_url)
|
| 21 |
+
if response.status_code == 200:
|
| 22 |
+
data = response.json()
|
| 23 |
+
return data.get("weather", "No weather information available")
|
| 24 |
+
else:
|
| 25 |
+
return "Error: Unable to fetch weather data."
|
| 26 |
|
| 27 |
@tool
|
| 28 |
def get_current_time_in_timezone(timezone: str) -> str:
|