Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ def my_cutom_tool(arg1:str, arg2:int)-> str: #it's important to specify the retu
|
|
19 |
return "What magic will you build ?"
|
20 |
|
21 |
@tool
|
22 |
-
def string_concatinator(string1: str, string2: str)
|
23 |
""" A tool that concats given 2 strings
|
24 |
Args:
|
25 |
string1: First string
|
|
|
19 |
return "What magic will you build ?"
|
20 |
|
21 |
@tool
|
22 |
+
def string_concatinator(string1: str, string2: str) -> str:
|
23 |
""" A tool that concats given 2 strings
|
24 |
Args:
|
25 |
string1: First string
|