The flow
- A message arrives on one of your channels — widget, phone, WhatsApp, email, or SMS.
- Autopilot decides whether the AI replies or the message goes straight to your team.
- If the AI replies, it reads from your Knowledge, optionally calls Actions (your APIs), and sends a reply back on the same channel.
- Anything the AI cannot confidently handle (low confidence, prohibited topic, frustrated user) hands off to a human.
The five pieces
Channels — where messages come from
Channels — where messages come from
Each channel (widget, phone, email, SMS, WhatsApp) captures messages from your customers and normalizes them into sessions. A session is the OpenCX-wide unit of a single conversation regardless of channel. See Build Agents.
Knowledge — what the AI reads from
Knowledge — what the AI reads from
The AI answers from two sources: Help Center content (articles you write) and Knowledge Sources (connected systems like Zendesk, Notion, Google Drive, your website). It also uses Training Scenarios you write by hand for exact answers. See Agent Knowledge.
Autopilot — when the AI replies
Autopilot — when the AI replies
Autopilot is the on/off switch per channel. When on, the AI responds automatically. When off, every message routes to your team’s inbox. You can also gate autopilot by topic — reply to billing questions, hand off login issues. See Autopilot topics.
Actions — what the AI can do
Actions — what the AI can do
Actions let the AI call your APIs at conversation time — look up an order, cancel a subscription, update a field. You define them with an OpenAPI-style spec and the AI picks the right one based on the customer’s intent. See AI Actions.
Handoff — how humans take over
Handoff — how humans take over
When the AI hits its limits, the session hands off to a human. OpenCX syncs the full conversation to your helpdesk (Zendesk, Hubspot, Intercom, etc.) so your team sees the context. See Handoff.
Why this shape
Most customer support tools either automate everything (and answer the easy questions but fail on the hard ones) or route everything to humans (and burn payroll on FAQs). OpenCX separates the decision from the answer. Autopilot decides, Knowledge + Actions answer, Handoff catches the rest. You tune any piece without rebuilding the others — swap the helpdesk without retraining, add a channel without redoing autopilot rules.Related Documentation
Core Concepts
The vocabulary: session, ticket, autopilot, handoff, action, insight.
Quickstart
Skip the theory — stand up your first agent in 10 minutes.
Build Agents
Pick a channel and go live.
AI Safety
What the AI won’t do — PII redaction, prohibited topics, inspect mode.