ERP-system / erp_core /Tools /customer_relationship_management.py
sarwarshafee8709809365's picture
deployment-1
c8e458d
raw
history blame contribute delete
347 Bytes
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"
}
]
}