Spaces:
Runtime error
Runtime error
build debug
Browse files
app.py
CHANGED
|
@@ -16,7 +16,8 @@ def multiply_two_int_numbers(arg1:int, arg2:int)-> int: #it's import to specify
|
|
| 16 |
arg1: the first number
|
| 17 |
arg2: the second number
|
| 18 |
"""
|
| 19 |
-
|
|
|
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 16 |
arg1: the first number
|
| 17 |
arg2: the second number
|
| 18 |
"""
|
| 19 |
+
result = arg1 * arg2
|
| 20 |
+
return result
|
| 21 |
|
| 22 |
@tool
|
| 23 |
def get_current_time_in_timezone(timezone: str) -> str:
|