Spaces:
Sleeping
Sleeping
Added a weather checking tool
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ def get_weather_in_timezone(timezone: str) -> str:
|
|
18 |
city = timezone.split('/')[-1].replace('_', ' ')
|
19 |
|
20 |
# OpenWeatherMap API setup
|
21 |
-
api_key = "
|
22 |
weather_url = f"http://api.openweathermap.org/data/2.5/weather?q={city}&appid={api_key}&units=metric"
|
23 |
|
24 |
# Fetch weather data
|
@@ -75,7 +75,10 @@ with open("prompts.yaml", 'r') as stream:
|
|
75 |
|
76 |
agent = CodeAgent(
|
77 |
model=model,
|
78 |
-
tools=[final_answer
|
|
|
|
|
|
|
79 |
max_steps=6,
|
80 |
verbosity_level=1,
|
81 |
grammar=None,
|
|
|
18 |
city = timezone.split('/')[-1].replace('_', ' ')
|
19 |
|
20 |
# OpenWeatherMap API setup
|
21 |
+
api_key = "2ba3fb8bce70bee1eb523ca09354c666" # Replace with your actual API key
|
22 |
weather_url = f"http://api.openweathermap.org/data/2.5/weather?q={city}&appid={api_key}&units=metric"
|
23 |
|
24 |
# Fetch weather data
|
|
|
75 |
|
76 |
agent = CodeAgent(
|
77 |
model=model,
|
78 |
+
tools=[final_answer,
|
79 |
+
get_weather_in_timezone,
|
80 |
+
get_current_time_in_timezone
|
81 |
+
], ## add your tools here (don't remove final answer)
|
82 |
max_steps=6,
|
83 |
verbosity_level=1,
|
84 |
grammar=None,
|