Capability

Long Context

1K to 1M tokens: position interpolation, YaRN, ring attention, and why claimed context and usable context still differ.

Context length grew a thousandfold in seven years, and the technique that carried most of it is unglamorous: stretch RoPE, then train briefly at the new length. The open problem moved from reaching a context length to being reliable across one.

The lineage

Figure 1. The context lineage. Exact attention with better kernels plus RoPE stretching won, and the million-token tier is now an architecture question again.

MilestoneYearStandard window
GPT-320202K
GPT-4 launch tiers20238K to 32K
GPT-4 Turbo / Claude 2.1 era2023128K to 200K
Gemini 1.520241M (10M in research)
Open-weight frontier (K2.5, K3)2026256K to 1M

Claimed vs usable

GapDetail
Needle tests saturate firstSingle-fact retrieval (“needle in a haystack”) passed long before multi-fact reasoning did; RULER-style aggregate evals and long-conversation tasks still show degradation well inside claimed windows
Lost in the middle (2023)Retrieval quality dips for mid-context positions; mitigated, not eliminated, in current models
Training length lags claimed lengthExtension methods extrapolate; reliability tracks the longest well-trained length, which labs rarely disclose
Cost gates usageQuadratic prefill and linear KV growth mean the harness layer still compacts context in practice (Agentic Patterns: Memory); K3’s launch benchmarks report a compaction-on variant scoring above the full-window run (K3 audit)
Beyond the windowCorpora larger than any window still belong to retrieval: RAG remains the production pattern at corpus scale, with retrieval-in-pretraining (RETRO, 2021) the dead branch
Eviction artifactsAttention-sink tokens (2023) explain why streaming eviction works; shipped as trained sink parameters in open weights

Ledger

VerdictTechniques
DeadFixed 2K horizons; the standalone sparse-attention zoo; retrieval as the only long-document strategy
CurrentRoPE scaling (YaRN lineage) + long-context midtraining, ring/context parallelism, hybrid linear serving, harness-level compaction, retrieval as the complement at corpus scale
Contested10M-class claims (thinly evidenced); whether full-window reliability is achievable or compaction remains permanent

Next: Post-Training & Alignment, where capability stops being about the base model.