Sign InOpen Brain
AI EngineerVideoSource Linked

Scaling to Long Horizons — Ross Taylor & Chengxi Taylor, General Reasoning

Long-running agents strain context, reward design, and GPU scheduling at once. Compaction and value models can help, but each introduces another optimization trade-off.

AI Engineer · Jul 31, 2026
Open Source Open MarkdownOpen JSON
Source Summary

Long-horizon RL faces gradient variance that grows with trajectory length, sparse terminal rewards, credit assignment, and variable episode lengths. A **1 million-token context window** is still small relative to the horizons the speakers target.

Practical Implication

Plan agent state beyond the prompt: use compaction, file-based scratch space, trajectory search, or archives as the task permits. For training, critics can provide earlier signals, while pipeline RL trades fresher policy data for better GPU use.

Agent-Ready Context
Long-horizon RL faces gradient variance that grows with trajectory length, sparse terminal rewards, credit assignment, and variable episode lengths. A **1 million-token context window** is still small relative to the horizons the speakers target.

Plan agent state beyond the prompt: use compaction, file-based scratch space, trajectory search, or archives as the task permits. For training, critics can provide earlier signals, while pipeline RL trades fresher policy data for better GPU use.

The team reports pipeline training tolerating about **eight off-policy steps**, but week-long inference can exceed that window. Bootstrapping with a value model keeps hardware occupied at the cost of bias, and its platform’s **350 environments** do not remove that trade-off.
Connected Context · Feed7 Judgment

This establishes long-horizon agency as both an external-state and training-systems problem: even very large contexts cannot hold the targeted work, while longer trajectories worsen sparse rewards, credit assignment, and policy freshness. Compaction, files, archives, critics, and pipelining are therefore explicit trade-offs rather than complete solutions, and the reported off-policy tolerance does not extend cleanly to week-long runs.

Do AI Agents Know When a Task Is Simple? Toward Complexity-Aware Reasoning and ExecutionComplexity-aware minimum-path execution can avoid unnecessarily long trajectories, reducing exposure to the state and training problems described here without claiming to solve genuinely long tasks.Data and Environment Curation for Post-Training LLMs — Mahesh Sathiamoorthy, Bespoke LabsIts recommendation to begin with curated SFT and justify RL gains becomes more consequential when long-horizon RL adds sparse rewards, critic bias, and policy-staleness trade-offs.Let's integrate AI Agents in Event-Sourced Systems — Divakar Kumar, FlyersSoftEvent-sourced semantic projections provide one form of durable state outside the prompt, but a fixed multi-agent chain may lengthen trajectories and compound the coherence risks highlighted here.AI tools for Forward Deployed Engineering — Vasuman Moza, Varick AgentsMapping real ownership, exceptions, and handoffs is a prerequisite for deciding what long-running state must persist and where human authority should interrupt an extended trajectory.
Context Map
agentcodingdata#harness-engineering#agent-reliability#context-engineering
Uncertainty
The team reports pipeline training tolerating about **eight off-policy steps**, but week-long inference can exceed that window. Bootstrapping with a value model keeps hardware occupied at the cost of bias, and its platform’s **350 environments** do not remove that trade-off.