Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,7 @@ def my_cutom_tool(arg1:int, arg2:int)-> int: #it's import to specify the return
|
|
| 16 |
arg1: the first number
|
| 17 |
arg2: the second number
|
| 18 |
"""
|
| 19 |
-
|
| 20 |
return f"the result is {result}"
|
| 21 |
|
| 22 |
@tool
|
|
|
|
| 16 |
arg1: the first number
|
| 17 |
arg2: the second number
|
| 18 |
"""
|
| 19 |
+
result = arg1 * arg2
|
| 20 |
return f"the result is {result}"
|
| 21 |
|
| 22 |
@tool
|