At a glance
Three things happened inside about 48 hours, and AI Revolution walks all three in order. The Financial Times reported that ByteDance, TikTok's parent company, is currently training a model with as many as 10 trillion parameters, which would make it the largest model anyone has ever admitted to building. Meta shipped the beta of Muse Code, a terminal based AI coding agent powered by Muse Spark 1.2, aimed squarely at the same developers Claude Code serves. And OpenAI made GPT 5.6 Luna completely free with unlimited text conversations for roughly a billion people, while confirming almost by accident that a much larger model, codenamed Astra, is already sitting at release candidate.
The through line the narrator draws is scale. ByteDance is not building at the Chinese frontier, it is building at the global one: the industry estimates the FT relayed put Anthropic's Mythos 5 at roughly 8 trillion parameters and Fable 5 around 5 trillion, which means a 10 trillion parameter model would be larger than the biggest system Anthropic is known to have. Meta's entry means three of the largest labs on earth are now fighting over the same terminal window. And OpenAI's Astra, rumored at 7 to 10 trillion parameters, is described as the largest pre training run the company has done since GPT 4.5, pointed at one target.
What follows is the whole report rebuilt in the video's order, with every named model, every number, and every caveat the narrator attached to it.
10 trillion parameters, and a 48 hour weekend
The video opens on the number, not the story. Ten trillion parameters, out of the Financial Times that morning, and the narrator's framing is immediate: if it holds up, it is the biggest model anyone has ever admitted to building. ByteDance is in the middle of training it right now. Meta just dropped a coding agent aimed directly at Claude Code's throat. And OpenAI made its flagship free for a billion people while confirming almost by accident that something much larger is already sitting at release candidate. All of that inside roughly two days.
The order is deliberate. ByteDance goes first, in the narrator's words, "because this is the one with real weight behind it."
ByteDance: what the Financial Times actually reported
The FT reported on Friday, citing people with knowledge of the matter, that ByteDance is training a model with as many as 10 trillion parameters. Reuters picked it straight up.
The narrator is careful about what makes this different from the usual Chinese model release. This is not a marginal step over what China has been putting out. It is a different category entirely.
Where the Chinese frontier was before this
To make the jump legible, the report lays out the domestic leaderboard as it stood before the FT story.
Moonshot AI's Kimi K3, which was the headline number over there until basically five minutes ago, sits at 2.8 trillion parameters. ByteDance's model would be more than three times that. Before K3 shipped, the domestic leaders were Meituan's LongCat 2.0 and DeepSeek's V4 Pro, both at 1.6 trillion total parameters, with a handful of other Chinese labs having crossed the trillion mark.
The narrator's summary of the trajectory: the jump from where that ecosystem was six months ago to where ByteDance is aiming is close to an order of magnitude.
The honest caveat: parameters measure scale, not capability
The narrator stops the momentum here on purpose, "because parameter counts get waved around like they settle arguments."
Parameters are the numerical settings a model learns from data in order to recognize patterns, generate answers, and carry out tasks. They are a rough measure of scale, and scale tends to correlate with capability, but the two are not the same thing and never have been. Plenty of bloated models have lost to smaller, better trained ones. So a 10 trillion parameter number, on its own, is not proof of anything.
The comparison that makes it serious
What makes the story serious is not the number in isolation, it is the comparison the FT actually drew.
Direct benchmarking against leading US models is genuinely difficult, because Anthropic and OpenAI do not disclose parameter counts for Fable, Mythos, or GPT 5.5. Nobody publishes those numbers anymore. What the FT has instead are industry estimates, and those estimates put Anthropic's most advanced system, Mythos 5, at roughly 8 trillion parameters, with Fable 5 around 5 trillion.
Which means ByteDance is not building something in the neighborhood of the Chinese frontier. They are building something in the neighborhood of the global one, potentially larger than the biggest model Anthropic is known to have. The narrator flags this as the part worth sitting with.
From efficiency to frontier scale
Here is the reversal the report is really about. For the last couple of years, the framing on Chinese labs has been efficiency: smaller, cheaper, cleverer, squeezing more out of constrained compute. This is the opposite move. This is a lab deciding to go head on at frontier scale against a company that has never been outscaled by anyone in that market.
Unverified, and still in pre training
Two caveats close the segment, and the narrator gives both of them plainly rather than burying them.
First, verification. Reuters said directly that it could not immediately verify the report, and ByteDance did not respond to a request for comment. Keep that in your pocket.
Second, timing. The model is currently in pre training, which typically runs three to six months before it can even be fine tuned and released. Nothing ships tomorrow.
But the direction of travel is unmistakable. Chinese firms keep accelerating their release cycles to keep pace with the global race, and the balancing act they are running is building more powerful systems without making them prohibitively expensive to actually serve. Ten trillion parameters makes that second half a lot harder, which, as the narrator puts it, tells you how badly they want the first half.
The interlude: the gap is not access anymore
The video breaks for the creator's own pitch, and the framing is worth keeping because it is the argument, not just the ad. Everyone is using AI at this point. Almost nobody is getting paid for it. The gap is not access anymore, it is knowing where to point it.
Mark Cuban's version of this gets played as a clip: learn to build agents, go talk to small businesses, and find the boring stuff nobody has time for. Lead follow up, booking appointments, chasing invoices, answering the same five Customer questions 40 times a day. That work is worth real money to the person drowning in it, and businesses are paying thousands to hand it off. The creator's offer is an 11 page report on seven agents companies are paying $3,000 to $10,000 for right now, who buys each one, and how to spot a business that needs one, with no coding, free.
Meta ships Muse Code
Meanwhile, Meta finally decided to stop watching from the sidelines. The day before the video, Meta shipped the beta of Muse Code, an AI coding agent that runs in your terminal, powered by their latest model, Muse Spark 1.2. Reuters covered the launch.
Mark Zuckerberg posted about it personally, saying it can complete complex software engineering tasks in large code repositories, analyzing projects, planning modifications, writing code, running tools, and verifying results. The narrator's read: that is the whole loop. And it means Meta, OpenAI, and Anthropic are now standing on the exact same ground, competing for the exact same developers.
It is macOS and Linux for now, installed with a single terminal command. The pitch is that you hand it a full requirement rather than a snippet. Fix a bug spanning multiple modules, add a feature, refactor a large project. It reads the codebase first, builds a plan, modifies files, runs tests, and keeps adjusting based on what comes back.
The architecture: a simple loop plus persistent background agents
Architecturally, the core is a fairly simple agent loop. What Meta paired it with is the interesting part: a set of asynchronous background agents that boost the main one.
The distinction the narrator says actually matters is persistence. Those background agents run continuously across the entire session instead of being spun up fresh for each task. Because they persist, they are not recollecting the same context over and over. And they can independently carry out follow up steps and decide for themselves when results are worth feeding back to the main agent.
The payoff is lower latency, and a main agent that leans on you a lot less during complex multi step work.
The runtime: an event log as the only trusted source
Then there is the runtime design, which the narrator calls genuinely the smartest piece of this.
Muse Code keeps a local event log where model calls, tool runs, approval operations, and code modifications are all recorded in sequence. That log is the only trusted source of data, which means the entire run can be replayed accurately and safely restored after a restart. If the program crashes, the agent resumes from the exact point of interruption rather than starting over or drifting somewhere weird.
For long running tasks, that is the difference between a tool you trust overnight and one you have to babysit.
The built in skills: /plan, /grill, /goal
On top of the runtime sit three built in skills.
/plan decomposes a task into a plan that requires your approval before anything executes. /grill repeatedly stress tests that plan until the solution is reliable enough. And /goal just keeps pushing toward whatever target you specify until the task is actually complete.
Naturally, someone in the replies immediately asked whether Muse Code is getting open sourced, and Zuckerberg answered with "there will be more content to share on this topic soon," which the narrator reads as the kind of answer that usually means yes eventually, on their timeline.
Muse Spark 1.2, the model underneath
The model underneath, Muse Spark 1.2, is an upgrade on 1.1 focused specifically on code generation, debugging complex problems, repository understanding, and the end to end development process.
Meta significantly increased training compute for programming tasks and expanded the diversity of training environments, while claiming the model held on to its general agent performance.
Benchmarks: second everywhere, first nowhere
The narrator calls the benchmark picture consistent and frankly a little pointed.
| benchmark | what it measures | who finishes ahead of Muse Spark 1.2 |
|---|---|---|
| Terminal Bench 2.1 | How well agents complete tasks in a terminal environment. | Opus 5 Max, and nothing else. Beaten by exactly one model. |
| Deep Suite 1.1 | 113 tasks across 91 repositories in five languages: TypeScript, Go, Python, JavaScript, and Rust. Every task ships a manually written functional verification program plus regression tests. | Opus 5 Max and GPT 5.6 Terra Max. |
| Meta's internal coding benchmark | 440 tasks derived from real internal pull requests, covering bug fixing, feature development, refactoring, and cleanup. | Opus 5 Max again, and nothing else. |
Two things fall out of that table. The first is that the Deep Suite result is no joke: hand written functional verification plus regression tests on every one of 113 tasks is a much harder bar than pattern matching a diff. The second is the narrator's line about the shape of the whole picture. Second everywhere, first nowhere. Strong debut. And it also tells you precisely who Meta was benchmarking against in the mirror.
Where the gains came from
Meta attributes the improvement to three things, and the report walks all three.
First, co training. Muse Spark 1.2 and Muse Code were trained together, so the pair performs properly in tandem. Agent operation trajectories were introduced through rejection sampling training, optimized around target execution, context compression, and subagent links, with the actual Muse Code tool set folded into training to improve compatibility between model and framework.
Second, long horizon capability. Large scale training on full repository generation, big end to end projects, and automated research, where the model sequences work through planning, holds direction via goal conditions, and uses context compression to retain the information it needs to keep going.
Third, self improvement. Meta used Muse Spark 1.1 to generate highly difficult programming environments and instruction following templates, then had the model evaluate how well candidate solutions met the requirements. That builds scalable training data for 1.2 and pushed instruction following past the previous generation.
Pricing as a recruitment drive
Pricing is where the narrator says Meta gets aggressive, and the split is the story.
| per million tokens | standard | contributor version | gap |
|---|---|---|---|
| Input | $1.25 | $0.10 | 12.5x cheaper |
| Cached input | $0.15 | two tenths of a cent | 75x cheaper |
| Output | $4.25 | $0.20 | 21x cheaper |
GPT 5.6 Luna goes free and unlimited
Which leaves OpenAI, who spent the week doing the one thing nobody else can afford to.
GPT 5.6 Luna is now completely free, with unlimited text conversations, for roughly a billion users worldwide. The Verge covered it. Luna is the smallest model in the GPT 5.6 family, built for ultra fast response and low cost, sitting under Terra and Sol in the lineup. Starting that day it becomes the default for both the free and Go tiers, directly replacing GPT 5.5.
They also added a Think button to free ChatGPT, so when you hit something difficult you can make the model reason longer before answering. That is the first time free users have been able to actively turn up reasoning intensity themselves.
The fine print matters, though, and the narrator does not skip it. Unlimited applies to text conversation only. File uploads, image generation, voice, and everything else still run on the original quotas, and you will still hit caps.
Sol gets the slider, and stops rambling
Sol got upgraded alongside Luna, and the report argues this change is more meaningful than the headline suggests.
In previous ChatGPT versions, instant mode and thinking mode behaved almost like two separate personalities. Different tones, different formatting, and switching between them felt like swapping models entirely. Now Sol handles everything uniformly, with fully adjustable speed, where the only difference is how long it reasons. The disjointed feeling is gone. The five level reasoning slider that was previously exclusive to ChatGPT work is now in the standard chat interface for everyone.
The most immediately obvious change is that Sol stopped rambling, and OpenAI's own example is the best part of the segment. Someone asks whether biking from the Mission to the beach after work would leave them soaked. The old instant mode produced a wall covering rainfall, wind speed, temperature, sea fog, and beach hazard warnings, plus a note that a cotton t shirt might feel sticky. New Sol opens with the conclusion: you will not get soaked, the real issue is the headwind, west wind at 10 to 20 miles per hour, bring a thin windbreaker.
Then the user follows up to say they will be leaving at half past five. The old version repeated the entire forecast. The new one only updates the conclusion that changed.
The accuracy jump underneath
There is a bigger update underneath the personality fix. Factual accuracy across the whole GPT 5.6 family improved substantially, tested on finance, healthcare, and law, the three domains where factual errors are least acceptable.
The narrator emphasizes that the grading was strict: a single factual error anywhere in a response marks the entire response incorrect. Under that bar, Sol's error rate came in 68% lower than GPT 5.5 Instant, with Luna 62% lower.
Astra, and the Mu4 release candidate
The free tier, the report says, was the appetizer.
Industry insider Leo broke the news that OpenAI is preparing to launch its next generation flagship the following week, codenamed Astra. It is a completely new pre trained model, the largest OpenAI has trained since GPT 4.5, and the latest internal checkpoint, codenamed Mu4, has already reached release candidate status. That is the final version before official release.
And the trail, the narrator says, was there all along.
- Jul 30An OpenAI preview video gets deleted quickly, but users grab a screenshot showing the word Mu3 flashing on screen.
- Aug 1OpenAI publishes a mathematics blog post stating their model had solved 10 open mathematical problems unsolved for more than a decade. Buried in it is a line crediting an internal build of Astra, described as their next major model. Announced in the open, and nobody caught it.
- Aug 5Meta ships the beta of Muse Code, powered by Muse Spark 1.2, and Zuckerberg posts about it personally.
- this weekMore leaks confirm Mu4 is in internal testing and has reached release candidate. Counting from Mu to Mu2 on upward, the series has quietly reached its fourth form.
- Aug 6OpenAI makes GPT 5.6 Luna free with unlimited text conversations for roughly a billion users, and upgrades Sol with the five level reasoning slider.
- Aug 7The Financial Times reports that ByteDance is training a model with as many as 10 trillion parameters. Reuters picks it up and says directly that it could not immediately verify the report.
- next weekPer the leaks, Astra launches. "Whether it wins by a landslide or by a nose, we find out within a week."
What Astra is for, and the run at Fable 5
Current leaks position Astra for long duration multi agent collaboration, where multiple AI instances work together for hours or even days on one large complex problem.
Two rumored specs are circulating. Some media reports say twice the size of GPT 5.6 Sol, while developer Haider estimates GPT 4.5 at around 5 trillion parameters and puts Astra at 7 to 10 trillion. Massive either way. But with stronger infrastructure, optimizations, and a large amount of new compute coming online this year, OpenAI's service cost for running it may actually land below what it costs Anthropic to run Mythos 5.
Haider's read on why this is the moment is the sharpest strategic argument in the video. OpenAI has the strongest post training capability in the industry. That is how GPT 5.5 hit the performance it did. Its only real disadvantage against Mythos was the pre training foundation. Astra upgrades exactly that shortcoming into the largest pre training base in history.
Top tier fine tuning on the biggest base anyone has built, aimed at one target: taking Fable 5 off the top spot.
Key takeaways
- ByteDance is reportedly training a model with as many as 10 trillion parameters, per the Financial Times, citing people with knowledge of the matter. Reuters relayed the report and said directly it could not verify it. ByteDance did not comment.
- That figure is roughly 3.5x Moonshot's Kimi K3 at 2.8 trillion, the previous Chinese headline number, and more than 6x the 1.6 trillion of Meituan's LongCat 2.0 and DeepSeek's V4 Pro. It is close to an order of magnitude above where the Chinese ecosystem sat six months ago.
- Because Anthropic and OpenAI publish no parameter counts, the comparison runs on industry estimates: Mythos 5 at roughly 8 trillion, Fable 5 around 5 trillion. On those estimates, ByteDance is aiming above the largest model Anthropic is known to have.
- Parameters are scale, not capability. The report says so explicitly. Plenty of bloated models have lost to smaller, better trained ones.
- The strategic reversal matters as much as the number: Chinese labs have been the efficiency story for two years, and this is the opposite move, a direct run at frontier scale.
- Nothing ships soon. The model is in pre training, which typically runs three to six months before fine tuning and release.
- Meta's Muse Code puts Meta, OpenAI, and Anthropic on the same ground competing for the same developers. macOS and Linux, one terminal command, full requirements rather than snippets.
- Muse Code's two design choices worth stealing: persistent asynchronous background agents that hold context across a session instead of respawning per task, and a local event log as the only trusted source of data, which makes a run replayable and crash resumable.
- Muse Spark 1.2 finishes second everywhere and first nowhere, behind Opus 5 Max on Terminal Bench 2.1 and Meta's internal 440 task benchmark, and behind Opus 5 Max and GPT 5.6 Terra Max on Deep Suite 1.1.
- Meta's contributor pricing is 12.5x cheaper on input and 21x cheaper on output than standard. That is a recruitment drive, not a price point.
- GPT 5.6 Luna is now free and unlimited for text for roughly a billion users, replacing GPT 5.5 as the default on free and Go, with a Think button that lets free users raise reasoning intensity for the first time. Uploads, images, and voice still hit the old caps.
- Across the GPT 5.6 family, factual accuracy improved under a strict grader where one error fails the whole response: Sol 68% fewer errors than GPT 5.5 Instant, Luna 62% fewer.
- Astra is described as OpenAI's largest pre training run since GPT 4.5, at release candidate under the checkpoint name Mu4, rumored at 7 to 10 trillion parameters and built for multi agent work spanning hours or days. The stated target is Fable 5's top spot.
Where it stands: confirmed, reported, and rumored
The report itself flags most of this, but it is worth collecting in one place, because the three stories sit at very different levels of confirmation.
Announced and verifiable. Meta's Muse Code beta and Muse Spark 1.2 are a real product launch with Reuters coverage and a personal post from Zuckerberg. OpenAI making GPT 5.6 Luna free and unlimited for text is an announced product change covered by The Verge. Those two are not in question.
Reported but unverified. The 10 trillion parameter figure is a Financial Times report citing anonymous sources. Reuters explicitly said it could not immediately verify it, and ByteDance declined to comment. Treat it as a credible outlet's sourced claim, not as a confirmed spec, and note that a model in pre training can change shape or be abandoned before anyone sees it.
Estimates, not disclosures. The Mythos 5 and Fable 5 numbers are the softest load bearing figures in the video. No lab publishes parameter counts anymore, so 8 trillion and 5 trillion are third party industry estimates the FT relayed. The comparison between ByteDance and Anthropic is therefore an estimate against a report, not a spec against a spec.
Leaks. Astra, the Mu4 release candidate, the 7 to 10 trillion range, and the "next week" launch all come from an industry insider and a developer, not from OpenAI. The two pieces with independent footing are the deleted preview video screenshot showing Mu3 and the line in OpenAI's own mathematics blog post crediting an internal build of Astra. Those make the existence of the program hard to dispute. They do not confirm the size or the date.
And the caveat the video puts on itself. Parameter count correlates with capability, but does not determine it. A larger model that is worse trained, worse tuned, or too expensive to serve loses to a smaller one, and the serving cost problem is exactly the one the narrator says a 10 trillion parameter model makes harder.
One note on names: this is a fast news read and several proper nouns arrive in a rush. Where the transcript is ambiguous, this page uses the standard spellings for the labs and model lines involved.
Chapters
- 0:00 10 trillion parameters, and a 48 hour weekend
- 0:35 ByteDance: what the Financial Times reported
- 1:01 Where the Chinese frontier was before this
- 1:35 The honest caveat: parameters are not capability
- 2:06 The comparison that makes it serious
- 2:48 From efficiency to frontier scale
- 3:08 Unverified, and still in pre training
- 3:55 The gap is not access anymore
- 4:54 Meta ships Muse Code
- 5:51 The architecture: a loop plus persistent background agents
- 6:31 The runtime: an event log as the only trusted source
- 7:08 Built in skills: /plan, /grill, /goal
- 7:45 Muse Spark 1.2, the model underneath
- 8:05 Benchmarks: second everywhere, first nowhere
- 9:00 Where the gains came from
- 9:59 Pricing as a recruitment drive
- 10:24 GPT 5.6 Luna goes free and unlimited
- 11:15 Sol gets the slider and stops rambling
- 12:33 The accuracy jump underneath
- 13:02 Astra, and the Mu4 release candidate
- 14:06 What Astra is for, and the run at Fable 5
Notable quotes
10 trillion parameters. That's the number that came out of the Financial Times this morning. And if it holds up, it's the biggest model anyone has ever admitted to building. narrator, 0:00
Parameters are the numerical settings a model learns from data in order to recognize patterns, generate answers, and carry out tasks. They're a rough measure of scale and scale tends to correlate with capability, but the two are not the same thing and never have been. narrator, 1:40
They're building something in the neighborhood of the global one, potentially larger than the biggest model Anthropic is known to have. That's the part worth sitting with. narrator, 2:35
For the last couple of years, the framing on Chinese labs has been efficiency, smaller, cheaper, cleverer, squeezing more out of constrained compute. This is the opposite move. narrator, 2:48
10 trillion parameters makes that second half a lot harder, which tells you how badly they want the first half. narrator, 3:45
You know what I would do coming out of college? I would go to small medium sized businesses having learned how to do agents. Mark Cuban, 4:25
That's the difference between a tool you trust overnight and one you have to babysit. narrator, on the Muse Code event log, 7:00
Second everywhere, first nowhere. Strong debut. And it also tells you precisely who Meta was benchmarking against in the mirror. narrator, 8:55
That's not a price point. That's a recruitment drive. narrator, on Meta's contributor pricing, 10:15
You won't get soaked. The real issue is the headwind. West wind at 10 to 20 mph. Bring a thin windbreaker. OpenAI's example of the new Sol answering, 12:15
And the funniest part is that OpenAI announced it in the open and nobody caught it. narrator, on the Astra mention in the mathematics blog post, 13:40
Top tier fine tuning on the biggest base anyone's built, aimed at one target, taking Fable 5 off the top spot. Whether it wins by a landslide or by a nose, we find out within a week. narrator, 15:00
Resources mentioned
- Reuters, "ByteDance targets mega AI model nearing Anthropic's Mythos, FT reports", the pickup of the original Financial Times report that opens the video.
- Reuters, "Meta launches new AI coding tool powered by Muse Spark 1.2", the source on the Muse Code launch.
- The Verge, on OpenAI giving free and Go users unlimited text chats, the source on GPT 5.6 Luna going free.
- Labs and companies named: ByteDance, Moonshot AI (Kimi K3), Meituan (LongCat 2.0), DeepSeek (V4 Pro), Meta AI (Muse Code, Muse Spark 1.2), OpenAI (GPT 5.6 Luna, Terra, Sol, and Astra), and Anthropic (Fable 5, Mythos 5, Opus 5 Max).
- Claude Code, the incumbent terminal coding agent Muse Code is aimed at, and ChatGPT, where the free Luna default and the Think button land.
- Mark Zuckerberg, whose personal post announced Muse Code and left the open sourcing question at "there will be more content to share on this topic soon."
- Mark Cuban, whose clip on learning to build agents for small and medium businesses runs in the middle of the video.
- The creator's free 11 page report on seven agents businesses are paying for, linked in the video description.
- The AI Revolution channel itself, which publishes this kind of daily frontier model roundup.
The one idea to walk away with
The three stories look unrelated until you notice they are all bets on the same scarce thing. ByteDance is spending it on raw scale, betting that a 10 trillion parameter base buys a seat at the global frontier even though it makes serving the model far harder. Meta is spending it on distribution, pricing a frontier class coding agent at a tenth of the going rate to buy developers rather than margin. OpenAI is spending it on both ends at once, giving away the small model to a billion people while pouring its largest pre training run since GPT 4.5 into a single flagship. Compute is the currency, and what each lab chooses to buy with it tells you what it thinks the next year is actually a race about. Nobody in this video is competing on being clever with less anymore.


