Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
23 |
def my_name(firstName:str)-> str: #it's import to specify the return type
|
24 |
"""A tool that gives returns the full name of the user when the first name is given
|
25 |
Args:
|
26 |
-
|
27 |
"""
|
28 |
return f"Your name is {firstName} Hodgson"
|
29 |
|
|
|
23 |
def my_name(firstName:str)-> str: #it's import to specify the return type
|
24 |
"""A tool that gives returns the full name of the user when the first name is given
|
25 |
Args:
|
26 |
+
firstName: first name of the user (e.g 'Sean')
|
27 |
"""
|
28 |
return f"Your name is {firstName} Hodgson"
|
29 |
|