Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,8 @@ def sum_of_two_numbers(arg1:int, arg2:int)-> int: #it's import to specify the re
|
|
| 16 |
arg1: the first number
|
| 17 |
arg2: the second number
|
| 18 |
"""
|
| 19 |
-
|
|
|
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def difference_of_two_numbers(arg1:int, arg2:int)-> int:
|
|
@@ -26,7 +27,8 @@ def difference_of_two_numbers(arg1:int, arg2:int)-> int:
|
|
| 26 |
arg1: the first number
|
| 27 |
arg2: the second number
|
| 28 |
"""
|
| 29 |
-
|
|
|
|
| 30 |
|
| 31 |
@tool
|
| 32 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 16 |
arg1: the first number
|
| 17 |
arg2: the second number
|
| 18 |
"""
|
| 19 |
+
sum = arg1+arg2
|
| 20 |
+
return sum
|
| 21 |
|
| 22 |
@tool
|
| 23 |
def difference_of_two_numbers(arg1:int, arg2:int)-> int:
|
|
|
|
| 27 |
arg1: the first number
|
| 28 |
arg2: the second number
|
| 29 |
"""
|
| 30 |
+
diff = arg1 - arg2
|
| 31 |
+
return diff
|
| 32 |
|
| 33 |
@tool
|
| 34 |
def get_current_time_in_timezone(timezone: str) -> str:
|