The context window arms race has crossed a threshold that feels meaningful: several frontier models now accept one million tokens or more in a single prompt. For enterprise teams, the pitch is seductive, drop in your whole codebase, your entire document corpus, your full customer history, and let the model figure it out. The reality is more complicated, and the bill can be brutal.

$10/1M tokens (blended)
Claude Opus 5 cost
$3/1M tokens (blended)
Grok 4.6 cost

What Happened

Long-context support has quietly become a standard checkbox for top-tier models. The models operators are actually evaluating right now span a wide cost range. Claude Opus 5 runs at $5 per million input tokens and $25 per million output tokens (blended: $10/1M). Grok 4.6 comes in cheaper at $2 input / $6 output (blended: $3/1M). Neither is open-weights, so there is no self-hosted escape hatch, you are paying cloud rates every time.

Now do the math on a 1M-token prompt. At Claude Opus 5 input pricing, one call costs $5. Run that in a loop across a team of 20 engineers making 50 calls a day each, and you are looking at $5,000 a day before a single output token is billed. Grok 4.6 cuts that to $2,000, still not trivial.

Why It Matters

The promise of long context is real for specific use cases: legal document review, large-codebase refactoring, multi-document synthesis where retrieval would lose relational context. Small, specialized models are also increasingly competitive for narrower tasks, which means the "just use a bigger context" instinct is not always the right one.

The problem is that long-context calls carry hidden costs most teams underestimate:

What To Do

Before you retire your RAG pipeline, run a structured comparison:

FAQ

Q: Is RAG dead now that context windows are so large? No. RAG is a cost and latency optimization as much as a capability one. For high-volume, low-latency applications, retrieving only relevant chunks remains far cheaper than sending a full corpus on every call.

Q: Which models actually support 1M+ token contexts reliably? A handful of frontier models advertise it, but reliable, high-quality attention across the full window varies. Always benchmark on your own data, marketing context lengths and production context lengths are not the same thing.

Q: How do I estimate my long-context costs before committing? Take your average prompt size in tokens, multiply by your daily call volume, then apply the model's input price per million tokens. Add output tokens separately. Most teams are surprised how fast the number grows.

Q: Should I switch models purely to save on long-context costs? Cost matters, but so does task fit. Grok 4.6 at $2/1M input is attractive, but if your use case demands the reasoning depth of Claude Opus 5, the cheaper model may cost more in downstream corrections. Benchmark both on your actual workload.

A million tokens in context is a feature. Paying for a million tokens every call is a choice — usually the wrong one.

Hiero editorial

Bottom Line

Long-context windows are a genuine capability unlock for specific enterprise workflows, not a universal replacement for retrieval architecture. Run the cost math before you rebuild anything, benchmark latency on your real use case, and treat hybrid RAG-plus-long-context as a first-class option rather than a fallback.