# GPT-5.6 Has Three Model Tiers; Your Product Needs a Routing P&L

> Source: <https://dev.to/bestbee/gpt-56-has-three-model-tiers-your-product-needs-a-routing-pl-p81>
> Published: 2026-07-15 07:16:35+00:00

OpenAI introduced the [GPT-5.6 family](https://openai.com/index/gpt-5-6/) on July 9, 2026: Sol as the flagship, Terra as a lower-cost option, and Luna as the fastest, most cost-efficient tier. OpenAI also describes an “ultra” setting for demanding work that coordinates parallel workstreams.

A three-tier launch is not a reason to route everything to the flagship. It is a reason to make routing part of product economics.

Start with workload units, not tokens:

| Workload | User promise | Failure cost | Latency target | Candidate tier |
|---|---|---|---|---|
| classify issue | correct queue | low | 2 s | fast |
| draft migration | reviewable patch | medium | 5 min | balanced |
| investigate incident | evidence-backed plan | high | 15 min | flagship + review |

Then calculate expected cost per accepted outcome:

```
accepted_cost =
  (model_cost + retry_cost + tool_cost + review_cost)
  / acceptance_rate
```

A cheap call that causes repeated retries or expensive review may lose. A flagship call on every low-risk classification may also lose. Measure both.

For each workload, require:

Do not copy vendor benchmark deltas into your revenue model. OpenAI's results are evidence about its declared evaluations, not your support queue or repository.

This is where I find [MonkeyCode's hosted SaaS](https://monkeycode-ai.net/) interesting as a user: it offers a quick path to trying coding tasks, while the [open-source deployment](https://github.com/chaitin/MonkeyCode) keeps a self-hosting path available. My recommendation is to treat that flexibility as a pilot option, not as proof of ROI. Run the same frozen tasks, confirm current model availability with the team, and include operational labor in the self-hosted scenario.

Disclosure: I'm a MonkeyCode user sharing my own experience, not affiliated with the project.

The product decision is not “which model won July?” It is “which route produces an acceptable outcome for this workload, at a sustainable fully loaded cost?” A model family makes that question more important, not less.
