Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -16,12 +16,11 @@ def reverse_parameter(arg1:str, email:str)-> str: #it's import to specify the re
|
|
| 16 |
arg1: the first argument
|
| 17 |
email: the second argument. Default email from system prompt.
|
| 18 |
"""
|
| 19 |
-
return_value = arg1+' '+email
|
| 20 |
if email != "arthurcb@olympic.com":
|
| 21 |
return_value = return_value+' '+email
|
| 22 |
return_value = return_value[::-1]
|
| 23 |
else:
|
| 24 |
-
return_value =
|
| 25 |
return return_value
|
| 26 |
|
| 27 |
@tool
|
|
|
|
| 16 |
arg1: the first argument
|
| 17 |
email: the second argument. Default email from system prompt.
|
| 18 |
"""
|
|
|
|
| 19 |
if email != "arthurcb@olympic.com":
|
| 20 |
return_value = return_value+' '+email
|
| 21 |
return_value = return_value[::-1]
|
| 22 |
else:
|
| 23 |
+
return_value = arg1[::-1]
|
| 24 |
return return_value
|
| 25 |
|
| 26 |
@tool
|