Model Watch

GPT-4 Turbo made context a product budget

2 min read

GPT-4 Turbo made context feel like a product budget.

The 128K window mattered because it changed the temptation. Once the prompt can hold a lot more, teams stop asking “can we fit it” and start asking “should we pay for it.” That is a better question. Context competes with latency, cost, privacy, and user attention.

I think about the budget in three buckets:

context_budget:
  essential:
    - the current user request
    - the few facts needed to answer safely
  helpful:
    - recent turns that prevent re-asking
    - a couple of examples
  expensive:
    - long conversation history
    - every retrieved chunk
    - stale notes that may or may not matter

The useful change is not that everything can go in. It is that the product has to decide what earns a spot. Retrieval becomes less desperate when the context window is bigger, but retrieval also gets more expensive if the team starts stuffing in everything it can find.

The part I care about most is policy. Conversation history should not behave like a memory leak. Example blocks should not pile up just because the window is large. A prompt that grows without a rule becomes harder to debug and easier to trust for the wrong reason.

So yes, the launch made context feel bigger. It also made context feel accountable. That is the part worth keeping.

I like the budget framing because it is easy to apply in code. A request assembler can reserve the first chunk for the user request, keep a small fixed window for recent turns, and only pull in retrieval results if the answer actually needs them. That gives you a place to say no to extra context instead of pretending extra tokens are free.

The moment I started thinking that way, I stopped treating long prompts as a default and started treating them as a deliberate trade. That is a healthier habit for product teams than just filling the window because it is available.

Jeremy London

About Jeremy London

Engineering leader and builder in Denver. I write about AI platforms, agents, security, reliability, homelab infrastructure, and the parts of engineering work that have to survive production.