Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ def say_hi(name: str) -> str:
|
|
14 |
Args:
|
15 |
name: one of pepole's name
|
16 |
"""
|
17 |
-
return "Hi {name}, Can I help you?"
|
18 |
|
19 |
@tool
|
20 |
def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
|
|
|
14 |
Args:
|
15 |
name: one of pepole's name
|
16 |
"""
|
17 |
+
return f"Hi '{name}', Can I help you?"
|
18 |
|
19 |
@tool
|
20 |
def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
|