GlossaryFloor 3 · The Agentthe block caught in a loop: it starts again until it gets thereFloor 3 · The Agent
orchestration
No. 028 · v2026-08FR: orchestrationOrchestration is the organisation of work between several pieces that do not act at the same time: who calls whom, in what order, and what to do when one of them fails. Like a department head who hands out the case files and picks up the ones that get stuck.
What it is not
Orchestration is not the agent. An agent chooses its next step; orchestration decides who works, when, and what happens in case of failure, including in systems where nothing is probabilistic. Nor is it a tool: a tool performs an action, orchestration coordinates executions. It is the most ordinary layer of the system, and often the one that decides whether it holds up in production.
In depth
The questions to settle
As soon as a system puts more than one piece to work, someone has to answer questions that have nothing to do with the model: in what order to call, what to do when a call fails or drags, how many times to retry, how to avoid doing the same thing twice, and where to resume if everything stops in the middle. These are the questions of any distributed system, and they arise identically whether the coordinated piece is a model or a database. This is why orchestration is a matter of ordinary engineering, and not of anything specific to AI.
What the model changes
What changes with a model is that the calls are slow, expensive and non-deterministic. A badly designed retry does not only cost time: it pays for the whole context again, and it can produce a different answer from the first attempt. Orchestration must therefore know what has already been done, what can be replayed without harm, and what must on no account be replayed, such as a payment or a message sent. This distinction is worked out before the incident, not during it.
The common confusion
The frequent confusion consists in believing that adding a layer of orchestration makes a system agentic, or the reverse, that an agentic system does without orchestration. Both are false. A sequence written in advance and perfectly orchestrated remains a workflow, since nobody chooses the next step at execution time. And an agent needs orchestration all the more because it chains unpredictable turns: it is orchestration that sets the limits on time, on spending and on the number of attempts.
Relations where the neighbours live
Check 3 questions · click your answer
Level 1 · Recognise
What is orchestration for in a system that calls a model?
Level 2 · Distinguish
A processing chain calls a model at three fixed steps, with automatic retry on failure. Is that an agent?
Level 2 · Distinguish
An agent is interrupted in the middle of a task, after having already sent an email. What must orchestration provide for on resumption?
Lexigraph, "Orchestration", v2026-08, https://www.lexigraph.org/en/orchestration/, CC BY 4.0.