Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -11,7 +11,7 @@ from Gradio_UI import GradioUI
|
|
| 11 |
@tool
|
| 12 |
def sum_of_two_numbers(number1:int, number2:int)-> int: #it's import to specify the return type
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
-
"""A tool that adds two numbers
|
| 15 |
Args:
|
| 16 |
number1: the first number
|
| 17 |
number2: the second number
|
|
@@ -22,7 +22,7 @@ def sum_of_two_numbers(number1:int, number2:int)-> int: #it's import to specify
|
|
| 22 |
@tool
|
| 23 |
def difference_of_two_numbers(arg1:int, arg2:int)-> int:
|
| 24 |
|
| 25 |
-
"""A tool that finds the difference of two numbers
|
| 26 |
Args:
|
| 27 |
arg1: the first number
|
| 28 |
arg2: the second number
|
|
|
|
| 11 |
@tool
|
| 12 |
def sum_of_two_numbers(number1:int, number2:int)-> int: #it's import to specify the return type
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
+
"""A tool that adds two numbers and returns sum of them
|
| 15 |
Args:
|
| 16 |
number1: the first number
|
| 17 |
number2: the second number
|
|
|
|
| 22 |
@tool
|
| 23 |
def difference_of_two_numbers(arg1:int, arg2:int)-> int:
|
| 24 |
|
| 25 |
+
"""A tool that finds the difference of two numbers and return them
|
| 26 |
Args:
|
| 27 |
arg1: the first number
|
| 28 |
arg2: the second number
|