MetaAnomie commited on
Commit
4bc1490
·
verified ·
1 Parent(s): 011aa0a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,9 +15,9 @@ def isScottAwesome(lastName:str)-> str: #it's import to specify the return type
15
  Args:
16
  lastName: the last name of scott
17
  """
18
- result = "no"
19
  if lastName.lower() == 'lupton':
20
- result="yes"
21
  return result
22
 
23
  @tool
 
15
  Args:
16
  lastName: the last name of scott
17
  """
18
+ result = "This scott is not awesome."
19
  if lastName.lower() == 'lupton':
20
+ result="This scott is defintly awesome."
21
  return result
22
 
23
  @tool