Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,14 +9,29 @@ 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 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
-
"""
|
| 15 |
Args:
|
| 16 |
-
arg1:
|
| 17 |
-
arg2:
|
| 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 compare_weather_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
+
"""Compares the weather in two cities using OpenWeather API. Returns temperature and description.
|
| 15 |
Args:
|
| 16 |
+
arg1: First city name (e.g., "London")
|
| 17 |
+
arg2: Second city name (e.g., "New York")
|
| 18 |
"""
|
| 19 |
+
try:
|
| 20 |
+
api_key = os.getenv("OPENWEATHER_API_KEY")
|
| 21 |
+
if not api_key:
|
| 22 |
+
return "Missing OpenWeather API key. Please set OPENWEATHER_API_KEY in your Space secrets."
|
| 23 |
+
|
| 24 |
+
def fetch(city):
|
| 25 |
+
url = f"https://api.openweathermap.org/data/2.5/weather?q={city}&appid={api_key}&units=metric"
|
| 26 |
+
res = requests.get(url)
|
| 27 |
+
if res.status_code != 200:
|
| 28 |
+
return f"{city.title()}: Error - {res.json().get('message', 'unknown error')}"
|
| 29 |
+
data = res.json()
|
| 30 |
+
return f"{city.title()}: {data['main']['temp']}°C, {data['weather'][0]['description']}"
|
| 31 |
+
|
| 32 |
+
return f"{fetch(city1)}\n\n{fetch(city2)}"
|
| 33 |
+
except Exception as e:
|
| 34 |
+
return f"Error occurred: {str(e)}"
|
| 35 |
|
| 36 |
@tool
|
| 37 |
def get_current_time_in_timezone(timezone: str) -> str:
|