§ 03 — Dispatch003
Cluster 02 Agent orchestration & harnesses 5 MIN READ

How do you run multiple AI models in one pipeline without losing control?

Assign models jobs, not vibes: planner and reviewer at the top, executors underneath, checks between every handoff. The org-chart approach to multi-model systems.

You keep control the same way you'd keep it with people: give each model a defined job, put a reviewer between every handoff, and never let the one doing the work also be the one approving it. I run multi-model pipelines in production every day — the NewsroomAIOS newsroom runs across Claude, Gemini, and Perplexity — and every control problem I've hit traces back to violating one of those three rules.

The mistake people make is treating "multi-model" as a shopping question — which model is best? The real question is organizational: who does what, and who checks it? Once you frame it that way, most of the answers write themselves.

Why multiple models at all

Three reasons, in descending order of importance.

Different strengths. In my newsroom pipeline, retrieval-focused models do source gathering, and generation models do the writing and the editing passes. Using one model for everything means accepting its weakest skill somewhere in your chain.

Independent review. A model reviewing its own output shares its own blind spots. A different model reviewing the output doesn't — it makes different errors, which is exactly what you want in a reviewer. Same reason a writer doesn't proof their own copy.

Cost structure. This is the one solo operators can't skip. Frontier models are expensive per token; workhorse models are cheap. If your top model is doing mechanical work — reformatting, extraction, boilerplate — you're paying senior rates for data entry, and at pipeline volume that compounds brutally.

The org chart that works

The design I've settled on after two years of running models in production looks like a small company:

The planner-reviewer sits at the top. Your strongest model. It sees the task, writes the plan and the specs, and reviews what comes back — and that is all it does. It never executes. Its output per task is small in tokens and huge in consequence, which is exactly where premium capability belongs.

Executors do the work. Cheaper, faster models take one scoped work order at a time — a defined deliverable with explicit constraints, not a vague goal. The scoping matters more than the model: a mediocre model with a precise spec beats a great model with a loose one.

The review loop closes the circle. Executor output goes back to the reviewer, which sends corrections until it passes. In the newsroom this is structural: every draft passes a second-pass lint — claims checked against sources, AI-tell phrasing flagged, attribution verified — before a human ever sees it, and a human still owns the final gate on anything public. Plan-gating covers why that last gate is non-negotiable.

Handoffs are written artifacts. Between every stage: a file, a spec, a structured payload — never a vibe. Written handoffs make every stage inspectable, replayable, and debuggable. When something goes wrong at 2 a.m., "read the handoff file" beats "reconstruct what one model meant when it talked to another."

Where control actually gets lost

Watch for four failure smells. Role bleed — the executor starts making planning decisions because the spec left room, and now judgment lives in the cheap seats. Silent handoffs — stage B consumed stage A's output with no check between them, and an early hallucination is now load-bearing three stages later. Reviewer fatigue by design — pipelines that surface so much for review that the human (or the reviewing model's context) drowns; review budgets are real and must be spent where stakes are. Provider monoculture — everything on one vendor, so one outage, price change, or capability regression takes down your whole operation. Spreading roles across providers isn't just performance tuning; it's continuity planning.

Start smaller than you think

You don't need custom infrastructure to apply this. The minimum viable version is two models and a rule: the strong one plans and reviews and never executes; the cheap one executes and never decides scope; everything between them is written down. That one separation — thinking versus doing, with a check at the boundary — is most of the control. It's also, not coincidentally, how every functional human organization already works. The models are new. The management theory isn't.