Spaces:
Runtime error
Runtime error
error
Browse files
app.py
CHANGED
|
@@ -17,9 +17,9 @@ def my_city_selector(city1:int, city2:int)-> str: #it's import to specify the re
|
|
| 17 |
city2: the number of the museums in the second city
|
| 18 |
"""
|
| 19 |
if city1 > city2:
|
| 20 |
-
return f"First city has {city1} museums. Therefore I chose
|
| 21 |
else:
|
| 22 |
-
return f"First city has {city2} museums. Therefore I chose
|
| 23 |
|
| 24 |
@tool
|
| 25 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 17 |
city2: the number of the museums in the second city
|
| 18 |
"""
|
| 19 |
if city1 > city2:
|
| 20 |
+
return f"First city has {city1} museums. Therefore I chose the city with {city1} museums."
|
| 21 |
else:
|
| 22 |
+
return f"First city has {city2} museums. Therefore I chose the city with {city1} museums."
|
| 23 |
|
| 24 |
@tool
|
| 25 |
def get_current_time_in_timezone(timezone: str) -> str:
|