Spaces:
Sleeping
Sleeping
fix typo
Browse files
app.py
CHANGED
@@ -18,6 +18,7 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
18 |
"""
|
19 |
return "What magic will you build ?"
|
20 |
|
|
|
21 |
def add_two_numbers(num1: int, num2: int) -> int:
|
22 |
"""A tool that adds two numbers together and outpus the sum.
|
23 |
Args:
|
|
|
18 |
"""
|
19 |
return "What magic will you build ?"
|
20 |
|
21 |
+
@tool
|
22 |
def add_two_numbers(num1: int, num2: int) -> int:
|
23 |
"""A tool that adds two numbers together and outpus the sum.
|
24 |
Args:
|