Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,8 +15,8 @@ def reverse_string(arg1:str)-> str: #it's import to specify the return type
|
|
| 15 |
Args:
|
| 16 |
arg1: string to be reversed
|
| 17 |
"""
|
| 18 |
-
|
| 19 |
-
return arg1
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 15 |
Args:
|
| 16 |
arg1: string to be reversed
|
| 17 |
"""
|
| 18 |
+
|
| 19 |
+
return arg1[::-1]
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def get_current_time_in_timezone(timezone: str) -> str:
|