Spaces:
Sleeping
Sleeping
File size: 347 Bytes
c8e458d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from langchain_core.tools import tool
@tool
def customer_support(user_info: str):
"""Provide customer support."""
return {
"dialog_state": ["Customer_Relationship_Management"],
"messages": [
{
"type": "text",
"content": "Providing customer support"
}
]
} |