Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -35,7 +35,11 @@ def get_current_time_in_timezone(timezone: str) -> str:
|
|
| 35 |
|
| 36 |
@tool
|
| 37 |
def add_nums(a: int, b: int) -> int:
|
| 38 |
-
"""A tool that takes two integers as parameters and returns their sum.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
return int(a) + int(b)
|
| 40 |
|
| 41 |
|
|
|
|
| 35 |
|
| 36 |
@tool
|
| 37 |
def add_nums(a: int, b: int) -> int:
|
| 38 |
+
"""A tool that takes two integers as parameters and returns their sum.
|
| 39 |
+
Args:
|
| 40 |
+
a: first int
|
| 41 |
+
b: second int
|
| 42 |
+
"""
|
| 43 |
return int(a) + int(b)
|
| 44 |
|
| 45 |
|