Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ from tools.final_answer import FinalAnswerTool
|
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
10 |
@tool
|
11 |
-
def adder(num1:
|
12 |
"""A tool that add two numbers
|
13 |
Args:
|
14 |
num1: the first number to add
|
|
|
8 |
from Gradio_UI import GradioUI
|
9 |
|
10 |
@tool
|
11 |
+
def adder(num1: int, num2: int)-> int:
|
12 |
"""A tool that add two numbers
|
13 |
Args:
|
14 |
num1: the first number to add
|