Update app.py
Browse files
app.py
CHANGED
|
@@ -15,7 +15,7 @@ def get_current_weather(city:str)-> str: #it's import to specify the return type
|
|
| 15 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 16 |
"""A tool that takes city names and return weather details as output
|
| 17 |
Args:
|
| 18 |
-
|
| 19 |
"""
|
| 20 |
return f"The weather now {datetime.datetime.now()} at {city} is hot"
|
| 21 |
|
|
|
|
| 15 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 16 |
"""A tool that takes city names and return weather details as output
|
| 17 |
Args:
|
| 18 |
+
city: City Name
|
| 19 |
"""
|
| 20 |
return f"The weather now {datetime.datetime.now()} at {city} is hot"
|
| 21 |
|