Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,11 +9,11 @@ from Gradio_UI import GradioUI
|
|
9 |
|
10 |
@tool
|
11 |
def add_numbers(a:int, b:int)-> int:
|
12 |
-
|
13 |
Args:
|
14 |
a: the first integer
|
15 |
b: the second integer
|
16 |
-
|
17 |
return a+b
|
18 |
|
19 |
@tool
|
|
|
9 |
|
10 |
@tool
|
11 |
def add_numbers(a:int, b:int)-> int:
|
12 |
+
"""A tool that adds two integers.
|
13 |
Args:
|
14 |
a: the first integer
|
15 |
b: the second integer
|
16 |
+
"""
|
17 |
return a+b
|
18 |
|
19 |
@tool
|