By Sagar Shankaran, Founder of CallSphere
Practical architecture for multi-agent research with Claude -- orchestration, agent specialization, result synthesis, and production lessons.
Key takeaways
A single LLM context cannot simultaneously hold search results, source analysis, cross-source comparisons, and synthesis conclusions. Multi-agent systems break this into parallel specialized workstreams.
def decompose_question(main_question: str) -> list:
import json
response = client.messages.create(
model='claude-opus-4-6', max_tokens=1024,
messages=[{'role': 'user', 'content': f'Break into 3-5 focused sub-questions:\n{main_question}\n\nReturn as JSON list.'}]
)
return json.loads(response.content[0].text)There is a clean theory behind building a Multi-Agent Research System and there is a messier reality. The theory says agents reason, plan, and act. The reality is that agents stall on ambiguous tool outputs and double-spend tokens unless you put hard limits in place. What works in production looks unglamorous on paper — small specialized agents, explicit handoffs, deterministic retries, and dashboards that show you tool latency before they show you token spend.
Agentic AI in a real call center is a different beast than a single-LLM chatbot. Instead of one model answering one prompt, you orchestrate a small team: a router that decides intent, specialists that own a vertical (booking, intake, billing, escalation), and tools that read and write to the same Postgres your CRM trusts. Hand-offs are where most production bugs hide — when Agent A passes context to Agent B, anything that isn't explicit in the message gets lost, and the user feels it as the agent "forgetting." That's why the systems that hold up under load are the ones with typed tool schemas, deterministic state stored outside the conversation, and a hard ceiling on tool calls per session. The cost story is just as important: a multi-agent loop can quietly burn 10x the tokens of a single-LLM design if you let it think out loud at every step. The fix isn't a smarter model, it's smaller agents, shorter prompts, cached system messages, and evals that fail the build when p95 latency or per-session cost regresses. CallSphere runs this pattern across 6 verticals in production, and the rule has held every time: the agent you can debug in five minutes will out-survive the agent that's "smarter" on a benchmark.
Q: How do you scale building a Multi-Agent Research System without blowing up token cost?
A: Scaling comes from constraint, not capability. The deployments that hold up keep each agent narrow, cap tool calls per turn, cache the system prompt, and pin a smaller model for routing while reserving the larger model for synthesis. CallSphere's stack — 37 agents · 90+ tools · 115+ DB tables · 6 verticals live — is sized that way on purpose.
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
Q: What stops building a Multi-Agent Research System from looping forever on edge cases?
A: Hard ceilings beat heuristics. A maximum step count, an idempotency key on every tool call, and a fallback to a deterministic script when confidence drops below a threshold are what keep the loop bounded. Evals that simulate noisy inputs catch the rest before they reach a real caller.
Q: Where does CallSphere use building a Multi-Agent Research System in production today?
A: It's already in production. Today CallSphere runs this pattern in Real Estate and Sales, alongside the other live verticals (Healthcare, Real Estate, Salon, Sales, After-Hours Escalation, IT Helpdesk). The same orchestrator code path serves voice and chat — the difference is the tool set the router exposes.
Want to see it helpdesk agents handle real traffic? Spin up a walkthrough at https://urackit.callsphere.tech or grab 20 minutes on the calendar: https://calendly.com/sagar-callsphere/new-meeting.
Pin model versions in production. "Latest" is fine in a notebook and dangerous in a phone tree. Lock the version, gate upgrades behind an eval suite, and ship rollouts the same way you ship database migrations.
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.
Make handoffs explicit, never implicit. The receiving agent should get a structured payload (intent, entities, prior tool results), not a transcript. Transcripts grow without bound; structured payloads stay debuggable.
Budget for the long tail. p50 latency is what users feel on a good day; p95 and p99 are what they remember. Track tool-call latency separately from model latency — they fail differently and need different mitigations.
Don't share state through the conversation. Use a side store (Postgres, Redis) keyed by session id. Conversations get truncated; databases don't, and you'll need that audit trail when a customer disputes a booking.
Write evals before features. The teams that ship agentic AI without firefighting are the ones who add a regression case the moment a bug is reported, then refuse to merge anything that fails the suite.
Prefer determinism at the edges. The agent can be probabilistic in the middle, but the first turn (intent classification) and the last turn (tool execution) should be as deterministic as you can make them.
Watch token spend per session, not per request. A single agent session can fan out into dozens of model calls; only per-session metrics tell you whether the architecture is actually paying for itself.
Keep one agent per concern. The temptation to build a "do-everything" agent dies the first time you have to debug it. Small, well-named specialists with clean handoffs win on every metric that matters in production.
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.
How we built a fault-tolerant HVAC emergency triage and tech-dispatch platform on Kubernetes — three-tier CQRS, 11 micro-agents on the OpenAI Agents SDK + LangGraph, NATS JetStream, DTMF/SMS/WebSocket acceptance, circuit breakers, and an evaluation pipeline that catches regressions before they wake a tech at 3 AM.
The 2026 desktop AI agent landscape — ServiceNow Project Arc, Anthropic Claude offerings, OpenAI agents, and Google Mariner. A buyer's map.
Five proven multi-agent architecture patterns built on A2A — orchestrator, peer mesh, hub-and-spoke, marketplace, and tiered specialist.
Handoffs done right — when one agent should hand control to another, how to preserve context, and how to evaluate the handoff decision itself.
Langgraph multi-agent supervisor handoffs docs: the supervisor pattern in LangGraph for coordinating specialist agents, with full code, an eval pipeline that scores routing accuracy, and the failure modes to watch for.
An agentic-AI perspective on Anthropic Skills system, covering orchestration patterns, tool use, and how agent tooling fits production agent stacks.
© 2026 CallSphere LLC. All rights reserved.