Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,10 +9,11 @@ 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 get_weather(city: str)-> 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 |
"""A tool that retrives weather from a specified city
|
| 15 |
-
|
|
|
|
| 16 |
"""
|
| 17 |
try:
|
| 18 |
api_url = f"https://api.weather.com/v1/location/{city}"
|
|
|
|
| 9 |
|
| 10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 11 |
@tool
|
| 12 |
+
def get_weather(city: str) -> 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 |
"""A tool that retrives weather from a specified city
|
| 15 |
+
Args:
|
| 16 |
+
city (str): the name of the city you want to know the weather
|
| 17 |
"""
|
| 18 |
try:
|
| 19 |
api_url = f"https://api.weather.com/v1/location/{city}"
|