Update app.py
Browse files
app.py
CHANGED
@@ -23,8 +23,9 @@ def get_weather(city:str) -> str:
|
|
23 |
|
24 |
@tool
|
25 |
def weather_tool(city:str) -> str:
|
26 |
-
"""
|
27 |
-
|
|
|
28 |
"""
|
29 |
return getweather(city)
|
30 |
|
|
|
23 |
|
24 |
@tool
|
25 |
def weather_tool(city:str) -> str:
|
26 |
+
"""Returns the weather of city
|
27 |
+
Args:
|
28 |
+
city: the city we want to evaluate the weather in
|
29 |
"""
|
30 |
return getweather(city)
|
31 |
|