By Sagar Shankaran, Founder of CallSphere
Conversation Orchestrator + Memory + Intelligence (GA at SIGNAL 2026) close the channel-switch gap. We design CallSphere's omnichannel pattern: voice + SMS + WhatsApp on one Conversation, with persistent memory.
Key takeaways
TL;DR — Twilio Conversations + Conversation Orchestrator + Conversation Memory (GA May 2026) let one AI agent track a customer across Voice, SMS, WhatsApp, RCS, and Chat. Use
ConversationSidas your AI's session key and stop building bespoke channel glue.
At SIGNAL 2026 Twilio made Conversation Memory, Conversation Orchestrator, Conversation Intelligence, and Agent Connect generally available. Together they solve the "every channel feels like a cold start" problem. Conversation Orchestrator becomes the single routing brain across Voice, SMS, WA, RCS, Chat.
flowchart TD
V[Voice] --> ORC[Conversation Orchestrator]
S[SMS] --> ORC
W[WhatsApp] --> ORC
R[RCS] --> ORC
C[Chat] --> ORC
ORC --> MEM[Conversation Memory]
ORC --> AI[Your AI runtime via Agent Connect]
AI --> ORC
ORC -->|escalate| FLEX[Flex / human queue]
CallSphere uses Twilio across all products to power omnichannel for Healthcare, Salon, Sales, Hospitality, Real Estate, and After-hours:
<Connect><Stream/></Connect> → FastAPI :8084 → OpenAI Realtime.send_followup_sms posts a Message into the same Conversation; Memory carries the transcript.ConversationSid.37 agents · 90+ tools · 115+ DB tables · 6 verticals · HIPAA + SOC 2 · $149 / $499 / $1499 · 14-day trial · 22% affiliate.
// Find or create a Conversation keyed on customer phone
const conv = await twilio.conversations.v1.conversations.create({
friendlyName: `cust:${phone}`,
uniqueName: `cust:${phone}`,
});
// Add channel-specific addresses as participants
await twilio.conversations.v1.conversations(conv.sid).participants.create({
"messagingBinding.address": phone,
"messagingBinding.proxyAddress": twilioNumber,
});
// On voice answer, attach a custom attribute so memory knows the leg
await twilio.conversations.v1.conversations(conv.sid).update({
attributes: JSON.stringify({ active_voice_call: callSid }),
});
// AI tool — send omnichannel follow-up
async function sendFollowup({ conversationSid, body, channel }) {
return twilio.conversations.v1.conversations(conversationSid).messages.create({
body,
author: "ai-agent",
attributes: JSON.stringify({ channel })
});
}
customer_id linked to phone + WhatsApp ID + chat user, or Memory creates duplicates.Q: Does Memory persist across Twilio accounts? No — scoped to one account. Use Segment as the cross-account identity layer.
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
Q: How do I expose Memory to my LLM?
Pull last N turns from Conversations.Messages and inject into system prompt; or use Conversation Intelligence custom operators.
Q: Pricing? Memory + Orchestrator are usage-billed (per active session). Add to per-channel cost.
Q: Can I run a non-Twilio AI? Yes — Agent Connect is model-agnostic; we use OpenAI in CallSphere.
Q: Best channel mix for Healthcare? Voice + SMS for confirmations + WhatsApp for international patients.
Twilio Conversations for Omnichannel AI: Voice, SMS, WhatsApp, RCS (2026) sounds like a single decision, but in production it splits into eval design, prompt cost, and observability. The deeper you push toward live traffic, the more those three pull against each other — better evals catch silent failures, prompt cost limits how often you can re-run them, and weak observability hides which retries are actually saving conversations versus burning latency budget.
The big fork is managed (OpenAI Realtime, ElevenLabs Conversational AI) versus self-hosted on GPUs you operate. Managed wins on cold-start, model freshness, and zero-ops; self-hosted wins on unit economics past a certain conversation volume and on data residency for regulated verticals. CallSphere runs hybrid: Realtime for live calls, self-hosted Whisper + a hosted LLM for async, both routed through a Go gateway that enforces per-tenant rate limits.
Still reading? Stop comparing — try CallSphere live.
CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.
Latency budgets are non-negotiable on voice. End-to-end target is sub-800ms ASR-to-first-token and sub-1.4s first-audio-out; anything beyond that and turn-taking feels stilted. GPU residency in the same region as your TURN servers matters more than choosing a slightly bigger model.
Observability is the unglamorous backbone — every conversation produces logs, traces, sentiment scoring, and cost attribution piped to a per-tenant dashboard. HIPAA + SOC 2 aligned isolation keeps healthcare traffic separated from salon traffic at the storage layer, not just the API.
What's the right way to scope the proof-of-concept? CallSphere runs 37 production agents and 90+ function tools across 115+ database tables in 6 verticals, so most workflows you'd want already have a template. For a topic like "Twilio Conversations for Omnichannel AI: Voice, SMS, WhatsApp, RCS (2026)", that means you're not starting from scratch — you're configuring an agent template that's already been hardened across thousands of conversations.
How do you handle compliance and data isolation? Day one is integration mapping (scheduler, CRM, messaging) and prompt tuning against your top 20 real call transcripts. Day two through five is shadow-mode running, where the agent transcribes and recommends but a human still answers, so you can compare side-by-side. Go-live is the moment your eval pass-rate clears your internal bar.
When does it make sense to switch from a managed model to a self-hosted one? The honest answer: it scales until your tool catalog gets stale. The agent is only as good as the integrations it can actually call, so the operational discipline is keeping schemas, webhooks, and fallback paths green. The platform handles the rest — observability, retries, multi-region routing — without your team owning the GPU layer.
Want to see how this maps to your stack? Book a live walkthrough at calendly.com/sagar-callsphere/new-meeting, or try the vertical-specific demo at healthcare.callsphere.tech. 14-day trial, no credit card, pilot live in 3–5 business days.
Written by
Sagar Shankaran· Founder, CallSphere
Sagar Shankaran is the founder of CallSphere, where he builds production AI voice and chat agents deployed across healthcare, hospitality, real estate, and home services. He writes about agentic AI, LLM engineering, and shipping voice agents that handle real calls in production.
See how AI voice agents work for your industry. Live demo available -- no signup required.
A customer starts on voice, drops, continues on chat, follows up by email — with full context preserved. Vapi forces manual handoffs. See the sequence.
WhatsApp lead chat increases lead generation 500%+ with 28% conversion. Lead qualification time drops 61%. Here is the chat-to-voice handoff pattern SMBs should ship.
How to design chat-to-voice escalation that preserves context, picks the right channel, and beats the warm-transfer baseline of human agents.
Meta's January and April 2026 pricing changes, the new AI Provider policy, and what they mean for an SMB AI receptionist on WhatsApp.
Buyers send voice notes on WhatsApp because typing is slow. Here is how to transcribe, understand, and reply to voice notes in a chat agent — with end-to-end encryption.
Customers hate repeating themselves when they move from chat to phone. Learn how unified AI chat and voice agents preserve context across channels.
© 2026 CallSphere LLC. All rights reserved.