Back to blog
Engineering12 min read

Agents vs. workflows: when to use which

A decision framework borrowed from production deployments at scale.

SL
Sasha Liu
Apr 28, 2026

We've spent the last 11 months shipping voice agent deployments — for coaches, consultants, fintech, real estate, and a handful of edge cases. Ninety-six in production. Here's what we've learned about what actually works in 2026.

1. The model isn't the bottleneck anymore

GPT-4o-realtime, Claude 3.5 Sonnet voice, and the open-source equivalents are good enough for 92% of production scenarios. Telephony latency, audio processing pipelines, and prompt routing are now the failure modes — not LLM quality.

If your agent feels janky, audit your audio path before you audit your prompts. Eight times out of ten, that's where the friction lives.

"The agents that work feel like infrastructure. The agents that fail feel like party tricks."

2. Voice ≠ chatbot with audio

Every team that tries to port their chatbot prompt to voice fails the same way: too verbose, too formal, too explainer-y. Voice is improv. You need shorter turns, callback handles, and graceful interruption.

3. The handoff is the product

The best voice agent in the world is useless if the post-call sync is broken. Notes go to CRM. CRM triggers sequence. Sequence books follow-up. Calendar invites human. That is the system. The voice piece is one component.

AI CallingVAPIProductionPlaybook