By Sagar Shankaran, Founder of CallSphere
Pod kills don't break voice agents — they break tool retries and barge-in. Real chaos for voice means corrupting tool results and cutting LLM streams mid-response. Here's how to do it safely.
Key takeaways
TL;DR — Classic chaos (kill pods, drop packets) finds infra bugs. Agent chaos (corrupt tool results, cut model streams) finds the bugs that hurt voice users. Run both.
flowchart LR
Browser["Browser / Phone"] -- "WebSocket /ws" --> LB["Load Balancer<br/>sticky session"]
LB --> Pod1["Node A · Socket.IO"]
LB --> Pod2["Node B · Socket.IO"]
Pod1 -- "pub/sub" --> Redis[("Redis cluster")]
Pod2 -- "pub/sub" --> Redis
Pod1 --> AI["AI Worker · OpenAI Realtime"]
Pod2 --> AIGremlin in 2026 added Reliability Intelligence and an MCP server, so an LLM can drive your chaos experiments. That's nice, but the bigger shift is what the experiments target. Killing a pod proves Kubernetes will reschedule it. It does not prove your voice agent recovers gracefully when its CRM tool returns null instead of a customer record, or when the model stream cuts at token 47.
Voice agents have three chaos surfaces:
Most teams test (1) and skip (2)–(3). The bugs that wake people up live in (2) and (3).
Run weekly chaos drills, scoped tightly:
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
Define hypotheses in advance: we expect FTL to stay below 1500ms even with 20% tool 500s. Measure and decide.
CallSphere runs chaos drills every Wednesday at 10am UTC on a staging cluster that mirrors prod (k3s, Cloudflare Tunnel, full vertical fleet). We use:
Real-world findings:
:8084 — when EHR tool returned malformed JSON the agent retried 5x then gave up, leaving the user in silence. Fix: timeout + graceful fallback message.We do not run chaos in prod. Staging only. Customers on $1499 enterprise get our chaos test report quarterly. Try the platform on the 14-day trial.
import random
def with_chaos(tool_fn, profile="normal"):
def inner(*a, **kw):
if profile == "5xx" and random.random() < 0.2:
raise RuntimeError("chaos: 500")
if profile == "slow" and random.random() < 0.2:
time.sleep(5)
if profile == "malformed" and random.random() < 0.2:
return "{not-json"
return tool_fn(*a, **kw)
return inner
if rand.Float32() < 0.1 {
// simulate mid-stream cut
conn.Close()
return
}
schedule:
- name: weekly-pod-shutdown
cron: "0 10 * * 3"
target: "namespace=staging,role=voice-agent"
impact: { type: shutdown, duration: 60s }
Hypothesis docs. Every drill has a one-pager: hypothesis, blast radius, abort criteria, observation plan.
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.
Runbook on every finding. A failed drill becomes a fix + a runbook + a test in CI.
Q: Can I run chaos in prod? A: For infra, with strict blast-radius limits, yes (Netflix-style). For tool/model chaos, never — you can't undo a hallucinated answer to a customer.
Q: Does Gremlin do agent-specific chaos? A: Their MCP server lets an LLM call experiments, but the experiments themselves are still infra-layer. You'll write the agent-specific stuff yourself.
Q: How do I measure improvement? A: Track the Mean Time To Recover during drills over time. Should drop quarter over quarter.
Q: Is chaos worth it for a 5-engineer team? A: Tool chaos is. It's 200 lines of Python and finds 80% of voice incidents in advance.
Q: Can chaos drills satisfy SOC 2? A: They support resilience controls but don't substitute for required testing. Document drills in your control matrix.
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 founder's guide to texto a voz (text-to-speech in Spanish): LATAM vs Castilian voices, free options, and how CallSphere ships Spanish agents.
A founder's guide to the female voice generator landscape: AI female voices, Japanese voices, robot voices, and how CallSphere ships 57+ voices live.
A founder's guide to the Siri voice generator landscape: how AI voice cloning works, what is legal, and how CallSphere uses 57+ voices in production.
A founder's guide to AI voice assistants for ecommerce: customer service, order lookup, and how CallSphere fits in versus virtual receptionists.
Robot text to speech in 2026: how I pick TTS APIs, when robotic voices help, and how CallSphere ships 57+ language voice agents. Hands-on guide.
The customer support specialist role in 2026 is half human, half AI. Here is what the job looks like, the AI tools that pair with it, and how we ship it.
© 2026 CallSphere LLC. All rights reserved.