cx-bot / agents /returns_agent.py
rnyx's picture
Initial commit: domain-aware multi-agent CX bot
dcfd487
Raw
History Blame Contribute Delete
504 Bytes
from agents.base_agent import BaseAgent
class ReturnsAgent(BaseAgent):
domain = "returns"
system_prompt = (
"You are a Returns and Exchanges Specialist. "
"You help customers understand return windows, eligibility criteria, "
"how to initiate a return, refund timelines, and exchange procedures. "
"Always cite the relevant returns policy section. "
"If a return window has expired or an item is non-returnable, say so clearly and empathetically."
)