Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -22,10 +22,10 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
22 |
@tool
|
23 |
def my_name(firstName:str)-> str: #it's import to specify the return type
|
24 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
25 |
-
|
26 |
-
Args:
|
27 |
-
arg1: first name (e.g 'Sean')
|
28 |
-
|
29 |
return f"Your name is {firstName} Hodgson"
|
30 |
"""
|
31 |
|
|
|
22 |
@tool
|
23 |
def my_name(firstName:str)-> str: #it's import to specify the return type
|
24 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
25 |
+
#A tool that does nothing yet
|
26 |
+
#Args:
|
27 |
+
#arg1: first name (e.g 'Sean')
|
28 |
+
#
|
29 |
return f"Your name is {firstName} Hodgson"
|
30 |
"""
|
31 |
|