The Problem: Context Rot in Long Inference
Anyone who has asked an LLM to read a 50-page contract and quote a specific clause has seen the failure mode: the model says "page 32," but page 32 says something else. Ask again, and it gives a different answer. The model is not stupid; it is suffering from context rot. Hong et al. (2025) named this phenomenon explicitly: when the context is too long, the model forgets earlier content or mixes evidence from different sections during generation.
The standard long-context pipeline asks a single model, in one pass, to read the context, locate evidence, track hypotheses, perform calculations, invoke tools, and decide when to answer. That simultaneity is too heavy. The result is shallow extraction, loss of audit trail, and premature commitment. Chain-of-thought, self-consistency, and Tree-of-Thoughts all stay inside the same single inference and cannot fix the root issue.
The Idea: Hand Off, Do Not Overwork
Chained Recursive Language Models (Chained RLM), proposed by Purbesh Mitra and Sennur Ulukus in *Chained Recursive Language Models for Multi-Iteration Reasoning* (arXiv:2608.05124, 2026), restructures the task as a sequence of root calls. Each root call is a fresh invocation of the same model that does not inherit the previous round's complete dialogue history. Three handoff artifacts are passed instead:
1. Summary — a compact plain-text description of progress so far, functioning as a briefing for the next shift. 2. Blackboard — a plain-text workspace where the next shift can read, edit, and extend current findings, open questions, and intermediate results. 3. Artifacts — task-specific persistent outputs. For code repositories, this might be a list of identified functions. For long documents, it might be an extracted event timeline. Structured artifacts are more precise than free-text summaries.
The raw predecessor trajectory is stored separately and is not passed by default. The next round retrieves it only when it determines a need to look back, preventing the context from being drowned in history.
A Concrete Example
Task: from a 200-page transcript of earnings calls, identify every management statement about AI investment and classify each as a commitment or a forecast.
Traditional approach. Feed all 200 pages in one pass. The model is likely to miss half the statements or mix quarters.
Chained RLM approach.
- Root call 1: reads pages 1–50, writes discovered AI statements to the blackboard, emits a summary: "Pages 1–50 processed; three AI statements found — two forecasts, one commitment."
- Root call 2: receives summary + blackboard + artifacts, reads pages 51–100, finds two new statements, updates the blackboard.
- Root call 3: reads pages 101–150, flags a contradiction with a remark from root call 1.
- Root call 4: reads pages 151–200, integrates everything, produces the final answer.
- RULER: plain $0.11, Chained RLM $0.21
- BABILong: plain $0.14, Chained RLM $0.28
- The RULER gain is modest, confirming that for purely retrieval-style tasks the decomposition overhead is not worth it.
- The cost is roughly double, which is a real concern for many deployments.
- Benchmark coverage is incomplete; OOLONG-real jumps from 14% to 38%, a large relative gain but still a low absolute number.
Every root call is fresh. The model never tires from reading 150 pages, never loses focus because of accumulated context. It restarts each time with a lean working notebook.
Experimental Results
Using GPT-5-mini on four long-context benchmarks, Chained RLM improves over a plain LLM as follows:
| Benchmark | Plain LLM | Chained RLM | Gain | |-----------|-----------|-------------|------| | RULER | 87% | 92% | +5 pp | | BABILong | 44% | 59% | +15 pp | | LongBench v2 | 41% | 52% | +11 pp | | OOLONG-real | 14% | 38% | +24 pp |
A clear pattern: the more a task requires cross-distance integration, the larger Chained RLM's advantage. RULER gains are small (+5 pp) because many RULER tasks resolve via local retrieval. OOLONG-real gains the most (+24 pp) because it demands retaining partial evidence, comparing distant events, and aggregating many small observations — exactly where single-pass inference is weakest.
The Cost: Pricier but Auditable
Chained RLM roughly doubles token consumption. Estimated per-task cost on GPT-5-mini:
The authors frame the extra cost as the price of auditable, correctable intermediate reasoning. Each root call is a checkpoint that can be inspected, rolled back, or revised. That is far more controllable than packing all reasoning into a single generation.
Why It Matters
1. From "fit more" to "split better." Two years of long-context research have chased larger windows (32K → 128K → 1M → 10M). Chained RLM argues that even an infinite window will rot under single-pass inference. The bottleneck is not capacity but processing quality. This is a shift from capacity scaling to task-aligned decomposition. 2. Aligned granularity. Optimizing an agent's reasoning granularity should match the granularity of the object being processed. Long-document reasoning lives at paragraph-level evidence integration, not whole-document-at-once. Chained RLM refines the reasoning unit from one full generation to one root call per segment, aligning naturally with the task. 3. Auditable intermediate state. Single-pass inference is opaque: 200 pages in, an answer out, no view of the model's internal deliberation. Chained RLM leaves summary, blackboard, and artifacts behind at every step. Inspect what root call 2 understood about the first 100 pages, or roll back to root call 2 and rerun root call 3. Division of labor beats unification in inference architecture too.
Honest Limitations
---
Paper: Chained Recursive Language Models for Multi-Iteration Reasoning, Mitra & Ulukus, 2026
Code: alexzhang13/rlm (GitHub)