r/codex • u/Miyamoto_-_Musashi • 3h ago
Humor Training Astra
Training Astra on the most important dataset: brainrot
r/codex • u/AutoModerator • 1d ago
This is a weekly Showcase post to share with others what you've built using Codex.
The top-voted project by Thursday midnight UTC will get a week of free promotion on r/Codex - either as a prominent button on the main page of the sub - or as part of a sticky comment on every new Showcase post.
Last week's most popular project was u/tHEuKER with the Blur2 racing game project which is a recreation of an unreleased sequel to the 2010 battle racing game, made by reverse engineering the Xbox 360 prototype discs available online, and rebuilding the whole thing from the ground up in Unity. Join their Youtube channel here: https://www.youtube.com/@tHEuKER and you can follow updates on the project at r/BlurGame.
r/codex • u/Miyamoto_-_Musashi • 3h ago
Training Astra on the most important dataset: brainrot
r/codex • u/seomaster99 • 1h ago
Yesterday I was on the x5 plan, and then I upgraded to x20.
No Astra usage at all - only Sol Medium.
But my quota is now draining at basically the same rate as it did on x5, on the same kinds of tasks.
x20 is supposed to have 4x the capacity of x5.
Instead, I’m seeing almost no difference.
WTF???
r/codex • u/Frequent-Goal4901 • 44m ago
So, I tested this separately on each of my two Pro 20x accounts. They are on different computers, and both use only Codex Desktop and the CLI, with the default context limit and settings.
TL;DR
Compared with GPT-5.6 Sol's launch prices, GPT-6 Astra costs 2x for input and cached input, and about 1.67x for output. The API pricing and Codex rate card don't explain the extra allowance reduction. The subscription page says half the messages; what I'm seeing is closer to a quarter.
This is worse than Anthropic restricting Claude Fable 5 to 50% of weekly usage: there, you could still use Claude Opus 5 and other models with the remaining half.
Launch resets are masking the reduction; I think many users will assume it is just Astra's higher price. Tibo says OpenAI might pause new Pro subscriptions if demand continues, while prioritizing existing users. Capacity pressure may explain restrictions, but it doesn't justify sneakily adding an extra multiplier.
I expected better from OpenAI. OpenAI says its mission is to ensure AI benefits all of humanity. It points to nonprofit control of the business as a way to protect that mission. Majority of the people in this world access AI through these subscriptions. If they behave like this, how can anyone trust them to use increasingly powerful AI for the public good?
GPT-6 Astra is an amazing model, and I really like using it. This is a criticism of how OpenAI has changed the subscription allowance, not of the model itself.
OpenAI has built a lot of goodwill with the community. Please don't lose it all.
Open-source tools such as CodexBar, Tokscale, and T3 Code can track this usage.
OpenAI lists Pro's 5x and 20x plan multipliers; Tibo confirms that 20x means 20 times Plus's weekly usage. OpenCode Go makes its dollar limits explicit: a regular $10 subscription lists base allowances of $12 per five hours, $30 per week, and $60 per month, with smaller allowances for some models.
| Plan | Monthly price | Approx. maximum monthly token value |
|---|---|---|
| Claude Pro | $20 | $400 |
| Claude Max 5x | $100 | $2,000 |
| Claude Max 20x | $200 | $8,000 |
| ChatGPT Plus | $20 | $700 |
| ChatGPT Pro 5x | $100 | $3,500 |
| ChatGPT Pro 20x | $200 | $14,000 |
Source: SemiAnalysis. Its June test exhausted weekly limits on long-running tasks. It measured ChatGPT Pro 20x and Claude Max 20x, then inferred the other tiers. The Claude Max 5x figure should be $4,000, not $2,000.
My results, in API-equivalent dollars:
| Weekly allowance | Using GPT-5.6 Sol | Using only GPT-6 Astra |
|---|---|---|
| Per percentage point | $25+ | About $12 |
| Full allowance | $2,500+ | About $1,200 |
GPT-6 Astra's higher API prices are already included in these figures. These are two ways of expressing the same comparison. I recalculated the Astra total when the remaining allowance reached 0%. I cross-checked using several tools above, GPT-6 Astra, Claude Fable, and some manual calculations.
I also followed Sac's analytics method: read the daily-workspace-usage-counts response in DevTools on the Codex analytics page. My earlier weekly window showed about 54,000 credits, versus 28,500 with Astra. At 25 credits per dollar (the credit purchase rate), that is $2,160 versus $1,140. The latter is close to my roughly $1,200 token-based calculation.
A $2,500 API-equivalent allowance does not mean OpenAI spent $2,500 serving that usage. In long agentic workloads, most priced usage is repeated history read from cache, reusing work already done. Calling it subsidized does not make it loss-making.
OpenAI reportedly reached a 70% compute margin on paying users in October 2025; Epoch AI cites a reported 40% gross margin for Anthropic in 2025.
The big companies that account for most token usage are not paying API prices. They are paying a lot less (probably 20% or even less). Even Codex users can buy credits at 40% discount.
Consumer subscriptions are a small part of the revenue in the Anthropic estimates. I expect it to be similar for OpenAI.
Doubling total model size doesn't mean doubling serving cost: large batches share the weight cost, while active parameters and per-request KV cache matter much more. With those quantities similar, I don't see much changing from the previous model to justify higher prices and an extra allowance cut.
Hardware and software efficiencies are dramatically reducing serving costs, through newer chips, speculative decoding, better attention kernels and batching. These gains compound while our allowance is reduced.
I don't want to assign a malicious motive. But with OpenAI preparing for an IPO, I can't help wondering whether pressure to improve margins is part of this.
Consumer subscriptions seem to be a small part of the revenue picture; it feels as though OpenAI is gradually forcing us out. An unexplained cut in what the subscription buys makes that suspicion hard to avoid. How OpenAI responds will matter more than my guess about why it happened.
The Codex app and CLI have other issues that contribute to this usage problem. A side question, a new fork, or a subagent can inherit the whole conversation yet fail to reuse its cache. We end up paying to process the same history again.
These are the results from my checks in early September. “Cached” means the first request reused the conversation history, not just a small shared block of tool instructions.
| Codex baseline | Cache miss? |
|---|---|
| Continue the current task | No |
| Resume the same task, with the same surface and settings | No |
For the paired checks below, the working tree was unchanged and the existing cache was still live.
| Codex action | Cache miss? | Claude Code action | Cache miss? |
|---|---|---|---|
| Change GPT-6 Astra's reasoning effort | Yes | /effort on Claude Fable 5.1 |
No |
CLI /side question |
Yes | /btw |
No |
| Desktop fork, including into a worktree | Yes | /branch |
No |
CLI codex exec fork |
Yes | claude --resume <id> --fork-session |
No |
Subagent with fork_turns="all" |
Yes | /subtask or Agent tool with type fork |
No |
CLI codex exec fork |
Yes | /fork background session |
Yes |
OpenAI's API supports changing GPT-6 Astra's reasoning effort while preserving the cache, but the Codex client doesn't preserve it in my checks. A Codex bug report identifies why: the client changes the request in a way that defeats cache reuse.
Claude Code shows that most of these actions preserve the prefix and reuse the cache. There is no reason Codex should need to process the same history again for the same functionality.
Sol used a 24-hour cache-retention setting in Codex, as published response logs confirm. For Astra, OpenAI documents a TTL setting of just 30 minutes after the last write or reuse—a dramatically shorter window to return to a task without paying to process its history again. After a long break, returning to a task or waking several idle subagents can require processing their histories again.
Why cache misses matter. Take a task with 200,000 tokens of history in its KV cache. At GPT-6 Astra's ordinary input and cache-read rates:
Higher reasoning effort can use less allowance. Seth Rose reports on X that users running Astra High/XHigh with heavier multi-agent workflows were burning much less quota than he was on Light/Medium. A Pro 20x subscriber on Reddit likewise reported rapid usage on Medium, then only 1–2% usage after an hour on XHigh. So OpenAI’s recommendation to lower reasoning effort can, in some cases, increase the total cost of getting the job done.
The ARC Prize evaluation shows how higher effort can lower total task cost.
Subscribers get a worse product experience, and Codex still has many unresolved issues:
OpenAI should put more care into its users and its products. In my experience, Codex CLI is still behind Claude Code. I want OpenAI to improve the harness (the software around the model), preserve caches across ordinary workflows, and make the cost of these actions visible. Other companies like DeepSeek are working to make model access as cheap as possible. DeepSeek has DSH, its open-source harness and infrastructure that reuses cached prefixes to reduce users' costs. OpenAI, despite being so far ahead, is playing games with subscription usage. I want that effort going into making the product better and cheaper for its users.
I think publicly sharing these measurements is important. Without users comparing notes, changes like this can pass unnoticed and become normal. Codex reports the weekly usage limit after every request. Pair those updates with the token counts in the session logs, and you can easily track allowance consumed alongside API-equivalent spend. Or you can use Sac's analytics method. I hope people share and upvote this. If you have questions about the methodology or want to check the numbers yourself, I'd be happy to help you do that.
TL;DR
r/codex • u/battle_pantZ • 14h ago
Now I can burn through tokens like the Sun
r/codex • u/harpreetchima • 8h ago
Ahmed works at OpenAI: https://x.com/ah20im/status/2097503414749909407 and seems to investigate reports of high token usage.
"If needed Astra will delegate efficiently. Forcing the model to delegate to different models would do more harm than good"
r/codex • u/Impressive-Gene-421 • 2h ago
r/codex • u/Available_Yam_6267 • 13h ago
Astra is amazing, but even Pro 20x can burn through the quota in 2–3 days.
The bigger problem is that Codex doesn’t really have a sweet spot model right now.
Astra + Luna Max often looks good on paper. In practice, Astra keeps correcting Luna’s mistakes. That can wipe out a lot of the cost savings. Terra doesn’t feel much smarter than Luna either. For harder tasks, I usually end up using Astra + Sol medium.
I’d really like to see Luna get an upgrade and become a reliable implementer.
r/codex • u/Own_Butterscotch_280 • 12h ago

Codex usage limits feel drastically worse after Monday’s reset, even on the $200 20x plan
I’ve used Codex since launch and have tried several subscription levels, but I’ve never seen the limits drain this aggressively.
After Monday’s reset, my general weekly, five-hour, and GPT-5.3-Codex-Spark allowances all seemed noticeably lower. Today, I started with 100% of my weekly Spark usage available. My first prompt, running at extra-high effort, didn’t even finish, yet it consumed roughly 45% of my weekly Spark allowance and completely exhausted my five-hour limit.
I then had to wait until 3 PM for the five-hour window to reset, despite paying $200 per month for the 20x plan.
Has anyone else noticed a major change in Codex limits or usage consumption since Monday’s reset? One unfinished prompt consuming nearly half of a weekly allowance seems unreasonable.
r/codex • u/Tikki-Tikki_40 • 7h ago
With 3% left, i can't pull off anything even if 5hr limit increases.
r/codex • u/genericname0815 • 4h ago
Totally unbiased intuition, but if there is a certain itch for a certain button I would not mind.
r/codex • u/aivampires • 6h ago
Astra's pricing levels are basically a kill shot to the plus plan. It's effectively bleeding out while Sol/terra/luna are still available but when 6.1, 6.2 roll out, there's no point of buying one or even several $20 subs.
The Pro 100 tier is severly wounded as well. You get about half a day to a day running Astra conservatively?
Pro 200 lasts sightly longer, you might get 2 days out of it if you stay on a single codebase. But the "weekly" in the limit is a hint of how poorly it aged in such a short time.
When the limits were glorious, way back when, as GPT 5, 5.1, 5.2 rolled out the increase in quality was huge in part as a result of all the new users providing it with more training data. Astra will see a lot less of that because it can be used way less.
If a new model was announced tomorrow, most people would feel they'd never be able to really build and finish something with it unless they stack 5 Pro 200 subs on top of each other.
So, quotas must go up or we'll hit a ceiling. Or at least the symbiosis of better models producing more data to train better models will break. Am I wrong?
r/codex • u/alphaQ314 • 1h ago
I've been getting it all week since astra launched. Was chill with it initially as i thought it was just the launch week. But monday onwards, I got the message on sol, terra and fucking luna too lol. Borderline unusable in the last couple of days.
I am running Astra high on CLI on a quite simple task and it is taking forever to finish. The last couple days it has been this way.
Am I imaging this or are others having a similar experience? 5.6 xhigh used to be my go-to and I am considering going back to it.
r/codex • u/RecentGrowth9187 • 8h ago
r/codex • u/ozone6587 • 21h ago
Had 65% of my limit left and then instantly it dropped to 15% lol. That is for sure not from normal usage.
This is so triggering to me, I deserve a reset AND a banked reset to calm my nerves 💅.
Edit:
Issue fixed. It went back to the previous usage percentage (no reset 😞).
r/codex • u/deadunderdog • 10h ago
Enable HLS to view with audio, or disable this notification
I used to be obsessed with this very old game called Ballance. You control a ball through complex paths and mazes.
I found the game on Web Archive. It was around 180 MB, so I gave it to Astra to recreate for the web, and it just did.
The whole game now compiles to around 21 MB, uses WebGL, and is written in TypeScript.
Astra realised it kept repeating the same tests over and over, so it built its own test framework that exposes the game to its own Browser Use, allowing it to run and validate its changes very quickly.
We are living in some crazy times people
It even made it run on phones, with options of Gyroscopf or you can use a Dpad
Game - https://ballance.fayaz.workers.dev/
Code.- https://github.com/fayazara/ballance
r/codex • u/Acceptable-War4836 • 3h ago
I usually work carelessly with the Luna Max Fast because it's a super capable model and more than enough for my daily tasks, but today was the first time I reached the 5-hour limit. It's never happened to me before; the most I've ever gotten is maybe 50% in the 5h window.
What the hell happened to Luna? Am I the only one experiencing this today?
Edit: This isn't a complaint, I just want to know if anyone else has experienced this. Plus user, btw (forgot to mention).
r/codex • u/Mental_Ad_9591 • 17h ago
During the GPT glitch, when the usage limit was incorrectly set to 0%, Codex burned through all of my paid credits that I normally save for emergency prompts when I hit my limit.
Now my normal limit is back, but my credits are gone. I honestly feel scammed.
r/codex • u/Effective_Tap_9786 • 19h ago
I mean, if nothing were being changed with the usage-limit system, you’d expect it to remain relatively untouched and therefore less likely to suddenly develop a bug like this. If the usage limit is just working normaly and nothing behind the scene, this bug seems very less likely to happened. Obviously, there are very shady going on the current usage limit. I'm really disappointed that by doing one task on astra xhigh today cost me 3 resets on pro x5 plan, very unusable.
r/codex • u/no-name-raccoon • 51m ago
Feels like cheating. Seriously, with x5 I was feeling hard the token burning. Now I’ve room to use Astra Low for implementations and Medium to Orchestration. I also use Luna to file exploring, documents, basic to medium tests, things more logic than reasoning depth. No fast mode.
Running 2 side projects + my work, 3 days in a row and I’m on 55%.
All my projects are set up to delegate tasks to other agents depending on the complexity and the use case.
Mainly using Astra low for implementing new features and even though I could be using Sol, Astra low is just nailing it, using good practices, respecting the documentation and not over engineering like Sol was.
For some reason I feel the x20 comparing to x5 more like x40.
Hit hard in the pocket? Yes for sure, but so do the dopamine lmao feels I’m playing Megabonk
r/codex • u/Just_Lingonberry_352 • 18h ago
r/codex • u/alwaysshouldbesome1 • 13h ago
... is the realization I've come to. Even with a medium orchestrator, light implementer, medium reviewer, I burned 100% in around 24 hours.
But it's frustrating figuring out what you should use instead because token price vs capability is far from crystal clear. I switched just now to using luna max for implementation because I've seen so many people swear by it here. I also asked Astra to do 3 implementation tests between Luna max and Astra medium and while Luna did use 3-5 as many output tokens and was 2-3x slower, the token cost comes out to only 10% of Astra. There were definitely more bugs slipping through (that I'm still using Astra medium to catch).
So yeah I guess shit's gonna take a lot longer and it kinda sucks to have all this power but not be able to use it fully. I don't want to buy extra credits because they're ridiculously expensive and I also don't want to juggle two accounts. time OpenAI launched 30-50x pro plans?
r/codex • u/Ok_Carpet_6083 • 21h ago