Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -20,8 +20,7 @@ def calculate(arg1:int, arg2:int)-> str: #it's import to specify the return type
|
|
| 20 |
str: The sum of arg1 and arg2 as a number.
|
| 21 |
"""
|
| 22 |
|
| 23 |
-
|
| 24 |
-
return arg1+arg2+1
|
| 25 |
@tool
|
| 26 |
def get_current_time_in_timezone(timezone: str) -> str:
|
| 27 |
"""A tool that fetches the current local time in a specified timezone.
|
|
|
|
| 20 |
str: The sum of arg1 and arg2 as a number.
|
| 21 |
"""
|
| 22 |
|
| 23 |
+
return (arg1+arg2+1)
|
|
|
|
| 24 |
@tool
|
| 25 |
def get_current_time_in_timezone(timezone: str) -> str:
|
| 26 |
"""A tool that fetches the current local time in a specified timezone.
|