Spaces:
Sleeping
Sleeping
Update API key for get_weather tool!
Browse files
app.py
CHANGED
|
@@ -27,7 +27,7 @@ def get_weather(city: str) -> str:
|
|
| 27 |
Args:
|
| 28 |
city: The name of the city (e.g., 'Paris', 'Tokyo').
|
| 29 |
"""
|
| 30 |
-
API_KEY = "
|
| 31 |
BASE_URL = "http://api.openweathermap.org/data/2.5/weather"
|
| 32 |
params = {
|
| 33 |
"q": city,
|
|
|
|
| 27 |
Args:
|
| 28 |
city: The name of the city (e.g., 'Paris', 'Tokyo').
|
| 29 |
"""
|
| 30 |
+
API_KEY = "eeac62ed496032584f632ff3777fc69c" # <-- IMPORTANT: Replace with your actual API key
|
| 31 |
BASE_URL = "http://api.openweathermap.org/data/2.5/weather"
|
| 32 |
params = {
|
| 33 |
"q": city,
|