AI agents can now switch between models mid-task without losing their place or repeating work.
A new arXiv paper introduces Commitment-Frontier Residual Completion, or CFRC, a method for handing off tasks between AI models without discarding progress. Companies increasingly route tasks between a large, expensive model and smaller, cheaper ones to cut costs, but the handoff itself has been the weak point: the second model can redo finished steps, contradict choices already locked in, or drop obligations the first model made. CFRC treats the handoff as a contract: it freezes everything already decided and done, maps what remains into an evidence-linked graph, and only lets the new model proceed once every leftover obligation is covered and backed by a live receipt of completion. The researchers tested it across five environments and two pairs of same-provider models, plus additional cross-provider tests, and matched the accuracy of agents that ran an entire task on one high-end model while using only 22.0 to 34.6 percent of the inference cost.
That's the real bottleneck in agent routing and model cascades: the savings look great on paper until a sloppy handoff introduces silent errors or duplicated work. Most production agent frameworks handle this today by dumping a text summary into the next model's context and hoping for the best. CFRC's contribution is a formal correctness guarantee instead of a prompt and a prayer.
It's a preprint, not a shipped feature, so treat the cost numbers as a lab result until someone wires this into an actual agent framework.