Spaces:
Sleeping
Sleeping
Update app.py
Browse filesadd the addition tool
app.py
CHANGED
|
@@ -13,8 +13,8 @@ def addition_tool(num1:int, num2:int)-> int: #it's import to specify the return
|
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
"""A tool that sum up 2 number
|
| 15 |
Args:
|
| 16 |
-
|
| 17 |
-
|
| 18 |
"""
|
| 19 |
return num1 + num2
|
| 20 |
|
|
|
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
"""A tool that sum up 2 number
|
| 15 |
Args:
|
| 16 |
+
num1: the first number
|
| 17 |
+
num2: the second number
|
| 18 |
"""
|
| 19 |
return num1 + num2
|
| 20 |
|