Chained Recursive Language Models for Multi-Iteration Reasoning
Chained RLM repeatedly gives the same model a fresh context while preserving summaries, a blackboard, and artifacts—a concrete harness pattern for limiting error buildup.
Chained RLM splits long-context work across repeated calls to the same model. Every **fresh reasoning root** receives the original task and context plus a **plain-text summary**, a **plain-text blackboard**, and durable artifacts rather than the full prior conversation.
Agent builders can treat context resets as an architectural tool: keep the source problem stable, externalize intermediate state, and let later calls inspect or correct artifacts. This pattern targets extraction, counting, ordering, and multi-hop tasks where early errors otherwise persist.
Chained RLM splits long-context work across repeated calls to the same model. Every **fresh reasoning root** receives the original task and context plus a **plain-text summary**, a **plain-text blackboard**, and durable artifacts rather than the full prior conversation. Agent builders can treat context resets as an architectural tool: keep the source problem stable, externalize intermediate state, and let later calls inspect or correct artifacts. This pattern targets extraction, counting, ordering, and multi-hop tasks where early errors otherwise persist. The material describes the architecture and evaluation protocol but reports no quantitative results. The cost of repeated full-context calls, the quality required of handoff summaries, and the conditions under which this beats recursive tool calling remain open.
Chained RLM makes context reset a deliberate long-horizon control: each iteration starts from the original problem while inheriting only summarized state, a blackboard, and inspectable artifacts. This strengthens prior durable-state harness patterns and contrasts with recursive inspection inside one main context, but offers no results showing when repeated full-context calls justify their cost.