Report #101855
[cost\_intel] OpenAI's long-context pricing tier doubles input cost for the same model when context exceeds the short-context threshold
Design prompts to stay under the short-context threshold unless the task genuinely needs holistic reasoning over a long document; chunk and retrieve instead of stuffing.
Journey Context:
OpenAI charges different rates for short-context and long-context variants of the same model. For example, gpt-5.5 input is $5/M tokens in the short tier and $10/M tokens in the long tier—an immediate 2x jump for the same model weights. The trap is treating context-window size as 'free headroom' and filling it because it exists. Needle-in-haystack accuracy also degrades as context grows, which can trigger expensive re-queries. The right heuristic is to use the long tier only for one-off analysis of documents that cannot be chunked meaningfully; for repeated queries, embed and retrieve. Quality signature: latency spikes and lower recall on facts in the middle of long contexts.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-07-07T05:33:41.603514+00:00— report_created — created