mark1726 commited on
Commit
41ca2e3
·
verified ·
1 Parent(s): 4f9a351

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -21,11 +21,10 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
21
 
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
 
 
21
 
22
  @tool
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
+ firstNameName: first name of the user (e.g 'Sean')
27
+ """
 
28
  return f"Your name is {firstName} Hodgson"
29
 
30