Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -26,7 +26,8 @@ def concat_tool(arg1:str, arg2:str)-> str: #it's import to specify the return ty
|
|
| 26 |
arg1: the first argument given by user
|
| 27 |
arg2: the second argument given by user
|
| 28 |
"""
|
| 29 |
-
|
|
|
|
| 30 |
|
| 31 |
@tool
|
| 32 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 26 |
arg1: the first argument given by user
|
| 27 |
arg2: the second argument given by user
|
| 28 |
"""
|
| 29 |
+
result = "arg1 + arg2"
|
| 30 |
+
return result
|
| 31 |
|
| 32 |
@tool
|
| 33 |
def get_current_time_in_timezone(timezone: str) -> str:
|