Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -26,7 +26,7 @@ def concat_tool(arg1:str, arg2:str)-> str: #it's import to specify the return ty
|
|
| 26 |
arg1: the first argument given by user
|
| 27 |
arg2: the second argument given by user
|
| 28 |
"""
|
| 29 |
-
result =
|
| 30 |
return result
|
| 31 |
|
| 32 |
@tool
|
|
|
|
| 26 |
arg1: the first argument given by user
|
| 27 |
arg2: the second argument given by user
|
| 28 |
"""
|
| 29 |
+
result = arg1 + " " + arg2
|
| 30 |
return result
|
| 31 |
|
| 32 |
@tool
|