Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,11 @@ from Gradio_UI import GradioUI
|
|
9 |
|
10 |
@tool
|
11 |
def calculator(a: int, b: int) -> int:
|
12 |
-
"""Multiply two integers.
|
|
|
|
|
|
|
|
|
13 |
return a * b
|
14 |
|
15 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
|
|
9 |
|
10 |
@tool
|
11 |
def calculator(a: int, b: int) -> int:
|
12 |
+
"""Multiply two integers.
|
13 |
+
Args:
|
14 |
+
a: the first argument
|
15 |
+
b: the second argument
|
16 |
+
"""
|
17 |
return a * b
|
18 |
|
19 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|