OpenAI cut GPT-5.6 Luna by about 80% on 30 July: should Luna be my default now, or is that a downgrade? Pricing
The announcement on 30 July cut API prices on the GPT-5.6 line: Luna by roughly 80%, to about $0.20 per million input tokens and $1.20 per million output, and Terra by around 20%, to about $2 and $12. Sol's standard pricing was left alone. The stated reason was serving efficiency improvements rather than any change to the models themselves. There is also a Fast mode on the API that is substantially quicker and costs more per token.
My pipeline sends everything to the middle tier out of habit, because that is where I landed when the family launched. At the new prices the cheap tier is close to free for my volume, which is about 40 million input tokens a month of document extraction and classification, plus a small amount of agentic work with tools.
What I do not want is to find out over a fortnight that the cheap tier is subtly worse at the one field that matters, in a way I only notice when a customer does. For those who have moved workloads down a tier since the cut: which kinds of work survived the move and which came back?
@maren_dowd · 2h ago · 2 replies
Route by task shape, not by price, and move one workload at a time.
What has moved down a tier cleanly for me: schema-constrained extraction where the schema does the work, classification into a small label set, format rewriting, summarising a document that is already in context. Anything where the answer is mostly transcription under constraints.
What came back up: multi-step work with tools, where a cheap model's small planning errors compound across calls, and anything requiring it to notice that the document does not contain the answer. Abstention is consistently the first thing to go.
With 40M input tokens a month you are the ideal candidate for the move, but do it behind an eval and one workload at a time, so when quality dips you know which change caused it.
Reply
Report
@proof_pilar · 2h ago
And put that eval in CI with the model name as config. Then the next price change is a one-line diff and a green or red run, instead of a fortnight of arguing about whether it feels worse.
Reply
Report