State re-sent between steps$780 → $60
Every stage receives the whole accumulated state — the document, plus everything the previous stages said about it. By the last stage you are paying to re-send the same document for the fourth time.
◆Each stage receives its own inputs and nothing else. The fourth stage does not pay to re-read the first three.
Tool output through context$900 → $40
Every tool result is returned into the model’s context in full, then carried forward for the rest of the run — whether or not anything downstream needs it.
◆The model writes a plan; the runtime executes it and moves data between tools directly. Only summaries and exceptions reach the model.
A capable model on mechanical work$700 → $150
One model is chosen for the whole pipeline, so field extraction and format conversion run on the same expensive model as the judgement calls.
◆Each stage runs on the model built for it. The judgement stage keeps its capable model; the mechanical stages stop paying for depth they never use.
Bulk work run one at a time$370 → $50
Five thousand near-identical extractions are issued as five thousand separate calls, at full interactive rates, because the pipeline was written as a chain.
◆Uniform bulk work is grouped into batches while a small agentic process prepares the next one. Batching is not a discount here — it changes the shape of the pipeline.
The actual answerspreserved
The output you actually wanted: extracted fields, validations, exceptions flagged.
◆Untouched. This is the part you meant to buy.
Every segment above is money the pipeline did not have to spend.