Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -18,7 +18,7 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
| 18 |
return "What magic will you build ?"
|
| 19 |
|
| 20 |
@tool
|
| 21 |
-
def
|
| 22 |
"""A tool that creates a joke about a specific topic
|
| 23 |
Args:
|
| 24 |
arg1: the topic
|
|
|
|
| 18 |
return "What magic will you build ?"
|
| 19 |
|
| 20 |
@tool
|
| 21 |
+
def tell_a_joke(arg1:str)-> str: #it's import to specify the return type
|
| 22 |
"""A tool that creates a joke about a specific topic
|
| 23 |
Args:
|
| 24 |
arg1: the topic
|