Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 = "
|
| 19 |
if lastName.lower() == 'lupton':
|
| 20 |
-
result="
|
| 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
|