Better Prompt Caching for GPT-6
GPT-6 prompt caching now hits 90% token discounts with new diagnostics, breakpoints, and cache prewarming for long-running agents.
- 01OpenAI's GPT-6 caching overhaul targets persistent agents running multi-hour tasks.
- 02A new dashboard surfaces hit-rate trends and input composition; a diagnostics tool pinpoints why a miss occurred and estimates affected tokens.
- 03Developers gain explicit cache breakpoints, the ability to shift reasoning effort mid-session without invalidating context, and a prewarming API to load shared instructions before the first user request.
- 04The 30-minute reuse window applies automatically to eligible shared prefixes.
GPT-6 prompt caching now hits 90% token discounts with new diagnostics, breakpoints, and cache prewarming for long-running agents.
OpenAI's GPT-6 caching overhaul targets persistent agents running multi-hour tasks. A new dashboard surfaces hit-rate trends and input composition; a diagnostics tool pinpoints why a miss occurred and estimates affected tokens. Developers gain explicit cache breakpoints, the ability to shift reasoning effort mid-session without invalidating context, and a prewarming API to load shared instructions before the first user request. The 30-minute reuse window applies automatically to eligible shared prefixes. • **Action:** Instrument your agent's API calls via the Prompt Caching Dashboard, then run the diagnostics tool on any unexpected misses before optimizing tool-definition ordering.
Action: Audit tool-definition order and use `allowed_tools` instead of removing definitions to keep prefix context reusable across turns.
GPT‑6 enables persistent agents to work for hours on complex tasks, from refactoring codebases to producing well-researched documents and presentations. The applications behind these agents make a series of API requests that build on one another, often carrying forward the same instructions, tool definitions, and context from earlier turns. OpenAI caches that shared context to reuse computation across requests, reducing response times and giving developers discounts of up to 90% on cached input tokens.
Read the full article at openai.comShow the full text · 3 min readHide the full text
GPT‑6 enables persistent agents to work for hours on complex tasks, from refactoring codebases to producing well-researched documents and presentations. The applications behind these agents make a series of API requests that build on one another, often carrying forward the same instructions, tool definitions, and context from earlier turns. OpenAI caches that shared context to reuse computation across requests, reducing response times and giving developers discounts of up to 90% on cached input tokens. With the GPT‑6 family, we launched an improved prompt caching system that delivers higher cache hit rates by default. We now give cache discounts for eligible shared prefixes reused within a 30-minute window. We’re also introducing new tools to help developers monitor cache performance, diagnose misses, and choose how much of a prompt to cache. Monitor caching and diagnose cache misses The new Prompt Caching Dashboard(opens in a new window) shows how much of your application’s input is served from cache. Track hit rates over time and use the input composition chart to compare cached and uncached tokens. These views help you spot drops in cache hits and evaluate how changes to your application impact caching performance. When you see an unexpected cache miss, use the prompt caching diagnostics tool(opens in a new window) to understand what happened. Compare a request with a recent response to identify changes to the model, tools, settings, or input that prevented reuse. The estimated number of affected tokens helps you assess the size of the impact and decide how you can optimize your integration to maximize cache hit rates. { "prompt_cache_diagnostics": { "type": "cache_miss", "reason": "tools_changed", "comparison_reusable_tokens": 5629, "cache_missed_tokens": 5629 } } Optimize caching for your application Choose what to cache. Explicit cache breakpoints let you choose which prompt prefixes to reuse. The refreshed prompt caching guide(opens in a new window) explains how to use them, how long cached prefixes remain eligible, and how changes to tools and inputs affect reuse. Adjust reasoning effort without breaking cache. On GPT‑6 models, you can now change reasoning effort(opens in a new window) between responses without breaking cache. Raise effort for a harder task or lower it for a routine follow-up by appending a configuration_update while leaving request-level reasoning effort unchanged. This lets you adjust how much reasoning a task needs while preserving reusable context. Preserve cache as tools and instructions change. As your agent’s tool use needs change, keep tool definitions, schemas, and ordering stable so earlier context stays reusable. Use allowed_tools to make only the relevant tools callable, or set tool_choice to none when no tools are needed, instead of removing definitions. Use new developer messages to append new instructions towards the end of the context to override older ones. See our guidance on managing tool changes(opens in a new window). Prewarm the cache to reduce latency.Prewarming(opens in a new window) prepares known context ahead of time so the model can start responding sooner when a request arrives. For example, an application can prewarm shared instructions, tool definitions, or reference material during startup, before the user asks their first question. This moves processing out of the user’s wait time. These optional controls build on the engine’s default performance, helping you tailor caching to your workload. 1 of 3 Get started Monitor cache hit rates in the Prompt Caching Dashboard(opens in a new window). Investigate unexpected misses with the diagnostics tool(opens in a new window). Follow the prompt caching guide(opens in a new window) to improve your setup, or use Codex(opens in a new window) to review your code, apply improvements, and measure results.
Don't miss tomorrow's
The Daily Pulse in your inbox each morning — sourced and linked.
CFO peer benchmarks
Margins, FCF conversion, ROIC, and the working-capital cycle (DSO/DPO/DIO/CCC), percentile-ranked against sector peers.
CxO Command Center
The executive cockpit — KPIs, scenarios, and an agent operating model.
Ask KokoAI about AI
Cited answers across news, vendors & capabilities.