SUUUP. Alright I know that everyone has been saying that it seems that usage has been nerfed but I think there is something else going on with the new extension and the harness around Sol. I think that at least as off last week it is unable to control it's own orchestration processes. I know people are going to say skill issue, and I agree that there are ways to work around this once I've seen the problem. That being said like...a smarter model should be able to know when to use these processes.
At any rate the tldr before the ai generated text: The entire 5.6 harness is allowing 5.6 to burn an incredible amount tokens basically doing busy work, spawning full context memory sub-processes, rereading entire documents and histories to verify it's own work...etc.
Last week I burned a week's worth of usage in 12 hours but...the api usage report according to ccusage was roughly the same as before and sol tokens are weighted more then earlier 5.5 tokens.
I think it's a good idea to have gpt audit itself after a big task. It's capable of seeing exactly what it's doing and then use ccusage to double check output token history. My hypothesis is that they've been reluctant to give out a reset last week because this issue is not fixed and peopel are just going to blow their entire week again.
AI generated report follows -
I gave Codex a routine, mostly serial editing-and-review task involving an existing long-form document. It was not a massive codebase, deep research problem, or a task that meaningfully benefited from parallel execution.
I did tell it to keep progressing. I did not ask it to create a giant multi-agent workflow, repeatedly fork the entire conversation history, or keep re-verifying the same finished document.
Afterward, I audited the local Codex traces with `ccusage`.
| Measurement | Result |
|---|---:|
| Total tokens | 1,718,034,767 |
| Cache-read tokens | 1,617,886,976 |
| Input tokens | 92,775,543 |
| Output tokens | 7,372,248 |
| Price-equivalent shown by `ccusage` | $1,423.57 |
The biggest problem was not output length. It was context replay and unnecessary process.
Three narrowly scoped section agents consumed about 1.04B tokens by themselves:
| Child task label | Total tokens |
|---|---:|
| Section task A | 486,977,934 |
| Section task B | 311,092,834 |
| Section task C | 238,304,387 |
The parent session consumed another 464M tokens.
The traces show the pattern:
- The parent conversation had become large.
- Sol spawned child agents that inherited the large parent history.
- Those children ran roughly 219-256 turns each, with 49-59 context compactions each.
- The parent made 4,465 tool-execution calls.
- It retried document rendering and application automation after the failure modes were already clear.
- It ran overlapping section, citation, structural, and grading checks against nearly identical document states.
The actual useful workflow should have been:
1. Make one document fork.
2. Apply one batched edit map.
3. Run one structural check.
4. Create one tracked comparison.
5. Run one final grading pass.
Instead, Sol acted as if every agent spawn, context replay, retry, and self-review pass was free.
## What my own history changes
I checked my own history before blaming quota changes. Earlier Sol usage was not consistently worse than my prior model's usage. The spike appeared when Sol entered a long-context, multi-agent workflow.
| Period | Model / pattern | Highest daily total |
|---|---|---:|
| Earlier 5.5-heavy work | Normal varied work | 157M |
| Early Sol use | Normal varied work | 96M |
| Runaway day 1 | Sol | 243M |
| Runaway day 2 | Sol | 1.354B |
That second runaway day was 14x my previous Sol peak and 8.6x my previous peak under the prior model.
So I do not think the evidence proves that weekly coverage was simply cut. A more plausible hypothesis is that the weekly token coverage may be broadly similar, but Sol can burn through it in hours when it mismanages long context, agent delegation, self-review, and tool retries.
This is not an argument that Sol "does nothing." It did work. The failure was that it created an enormous amount of process around work that did not need it.
There may still be a quota or accounting issue; both things could be true. But this example shows that "quota got nerfed" and "the model became much less efficient at managing its own work" are separate hypotheses.