INQUIRING LINE

Why do linear research pipelines lose global context across planning and generation steps?

This explores why building research systems as a one-directional chain of steps — plan, then retrieve, then write — tends to leak the big picture, and what the corpus offers as alternatives that hold coherence together.


This explores why a straight-line pipeline (plan → generate, each stage handing off to the next) tends to lose the global picture, and what the corpus suggests instead. The clearest diagnosis comes from research writing: a linear pipeline commits to early decisions and then generates section-by-section, so nothing carries the whole draft's coherence forward. One note reframes report writing as a diffusion process instead — a persistent draft skeleton that gets iteratively denoised through targeted retrieval, so the global structure is always present and revised rather than assembled once and abandoned Can iterative revision cycles match how humans actually write?. The loss isn't a model weakness; it's the pipeline shape.

A second angle: the very thing that helps local steps — hiding irrelevant context — is what severs global awareness if you do it naively. LLM Programs deliberately present only step-specific context to each call to dodge context-window and capability limits Can algorithms control LLM reasoning better than LLMs alone?, and Atom of Thoughts goes further, making each reasoning state depend only on the current subproblem and not its history Can reasoning systems forget history without losing coherence?. These are deliberate forgetting — they trade global memory for tractability. The interesting tension is that this forgetting is sometimes a feature (it strips bloat) and sometimes the bug behind your question (it strips context the later step needed).

The corpus also splits planning from generation on purpose, which complicates the premise. Separating a decomposer from a solver actually *improves* accuracy by preventing planning and execution from interfering with each other — and decomposition skill even transfers across domains while solving skill doesn't Does separating planning from execution improve reasoning accuracy?. So the fix isn't to merge planning and generation back together; it's to keep them separate while giving them a shared, durable representation of the whole — a recursive subtask tree that holds working memory beyond the context window Can recursive subtask trees overcome context window limits?, or a context treated as an evolving playbook that's incrementally updated rather than rewritten, which directly prevents the 'context collapse' where detail erodes step by step Can context playbooks prevent knowledge loss during iteration?.

There's a failure-mode story underneath all this worth knowing. Reasoning models lose the thread not from lack of compute but from structural disorganization — they wander into invalid paths and abandon promising ones prematurely Why do reasoning models abandon promising solution paths?. And a system can hit every metric while its internal representation is quietly fractured, invisible to standard evaluation Can models be smart without organized internal structure?. Put together, the corpus suggests linear pipelines lose global context for the same reason: coherence is a structural property of how state is carried, not something the final output reveals. The alternatives that work — iterative denoising, durable skeletons, evolving playbooks, recursive trees — all share one move: they keep a single, revisable representation of the whole alive across every step instead of passing fragments down a chain.


Sources 8 notes

Can iterative revision cycles match how humans actually write?

Research writing follows a draft-and-revise pattern analogous to diffusion sampling, where a persistent draft skeleton is iteratively denoised through targeted retrieval steps. This architecture maintains global coherence better than linear pipelines while mirroring cognitive studies of actual human writing.

Can algorithms control LLM reasoning better than LLMs alone?

LLM Programs embed LLMs within explicit algorithms that manage control flow and state, presenting only step-specific context to each LLM call. This information hiding addresses capability and context window limits while treating complex reasoning as modular, debuggable sub-tasks.

Can reasoning systems forget history without losing coherence?

Atom of Thoughts decomposes problems into DAGs and contracts them iteratively, ensuring each state depends only on the current problem—not prior steps. This memoryless approach eliminates historical baggage that bloats reasoning while maintaining answer equivalence.

Does separating planning from execution improve reasoning accuracy?

Modular architectures with separate decomposer and solver models outperform monolithic LLMs, with decomposition ability transferring across domains while solving ability does not. The separation prevents planning-execution interference and produces more generalizable skills.

Can recursive subtask trees overcome context window limits?

The Thread Inference Model demonstrates that reasoning structured as recursive subtask trees with rule-based KV cache pruning sustains accurate reasoning beyond context limits, even when manipulating 90% of the cache. This enables single models to replace multi-agent systems by handling full recursive reasoning internally.

Can context playbooks prevent knowledge loss during iteration?

The ACE framework treats contexts as evolving playbooks using generation-reflection-curation loops rather than full rewrites. This prevents knowledge loss from compression and detail erosion, achieving +10.6% on agentic tasks and +8.6% on finance without labeled supervision.

Why do reasoning models abandon promising solution paths?

Reasoning LLMs exhibit two reinforcing failures: wandering (invalid exploration) and underthinking (premature path-switching). Decoding-level interventions like thought-switching penalties improve accuracy without fine-tuning, suggesting viable solutions exist but are abandoned prematurely.

Can models be smart without organized internal structure?

Models trained with SGD can contain all the linearly decodable features needed for a task while maintaining fundamentally broken internal organization. This makes them vulnerable to perturbation and distribution shift invisible to standard evaluation metrics.

Next inquiring lines