A seven hundred and forty-four billion parameter model shows up on Hugging Face on September eleventh. No announcement. No paper at launch. No API. No independent evaluation. And the people who built it call it a new-generation agentic model.
That's the hook, right there. You can't get more concrete than that.
So Daniel sent us a prompt about it. He wants to know what it actually means for a model to be described as agentic, and he's using Atria Dawn Preview as the case. His framing is good, actually. He points out the developers say it targets continuous environmental understanding, tool use, multi-step task completion, execution, evaluation, and failure recovery. And then he asks the thing that matters. What makes a model itself agentic, as opposed to just taking a capable general-purpose model and dropping it inside an agentic framework with tools, memory, and an execution loop?
That's the whole ballgame.
He's got a second layer too. He wants to know what changes at the model and training level. Tool calling, planning, long-horizon reasoning, responding to environmental feedback, recovering from failed actions, maintaining state across many steps, deciding what to do next. And then the third question, which is really the episode. What does an agentic model actually give an agent framework that an ordinary instruct model does not? Is agentic modeling becoming a distinct category, like reasoning models or coding models, or is it primarily a description of models optimized and evaluated for a particular deployment pattern?
Three questions, and they're stacked in exactly the right order. Because you can't answer the third one until you've done the work on the first two, and most of the discourse skips straight to the branding question without doing the technical work underneath it.
So let's start with what Atria Dawn Preview actually is, and why its release pattern is itself part of the story.
Here's the concrete version. It's a seven hundred and forty-four billion parameter mixture-of-experts model built on a GLM-5.2 foundation. The architecture string is GlmMoeDsaForCausalLM. Eight of two hundred and fifty-six routed experts per token, across seventy-eight layers. The model card says two hundred and fifty-six K context. The config sets one million, forty-eight thousand, five hundred and seventy-six tokens. MIT license on the weights. About one and a half terabytes in BF16 across three hundred and fifty-three safetensors shards. An FP8 checkpoint followed on September twelfth, around seven hundred and fifty-six gigabytes.
And the release pattern.
No announcement. No paper at launch. No hosted API. No Artificial Analysis entry as of the OrcaRouter analysis on September fourteenth. No arena presence. No third-party reproduction of the benchmark table. All sixteen of the numbers on that card are vendor-reported. And there's a branding oddity. The domain is atria-asi.ai. The X handle exists. Nothing anywhere states what the initials ASI mean or what entity sits behind them. The technical report is titled "Atria Dawn: The Dawn of Agentic Superintelligence."
"The Dawn of Agentic Superintelligence." That's a lot of dawn.
It's a lot of title for a model with no independent evaluation. And I want to be fair here, because the release pattern isn't necessarily a red flag on its own. Plenty of legitimate labs drop weights quietly. But when you combine the quiet drop with the grand title and the absence of any third-party verification, you get a situation where the only evidence you have is the vendor's own claims.
Which is exactly the situation the field keeps finding itself in. The evaluation infrastructure lags the release cadence.
Every time. There's a whole ecosystem of independent evaluators now, Artificial Analysis, the arenas, the various leaderboards, and they're all perpetually three weeks behind whatever just dropped.
So here's the tension I want to set up. The developers describe four capability areas. Discovery, Creation, Delivery, Cybersecurity. And a training pipeline built on verifiable execution environments. That's the claim. But there's a harness ablation study from September that shows scaffold design swings coding-agent scores more than model choice does. So which is it? Is the agentic capability in the weights, or in the scaffolding around them?
To answer that, we need to separate what changes inside the weights from what lives in the harness around them.
Start inside the weights. What does Atria Dawn's training pipeline actually do?
The technical report describes something they call the Verifiable Experience Pipeline. Every training task is connected to a real execution environment. The model observes state, calls tools, produces artifacts, adapts to feedback. And the outcomes are verified through external signals. Tests, metrics, file state, geometric structure, source evidence, human criteria. Only experience that connects a task to its trajectory, its artifacts, and its verification evidence gets incorporated into the model's reusable capabilities.
So the unit of training isn't a text completion. It's a verified episode.
Right. And here's the part that's different. Failure analysis guides subsequent task construction. Recurring problems, ineffective tool selection, incomplete verification, missing evidence, unsuccessful recovery, those motivate new tasks. Failed runs become diagnostic cases.
That's the sharpest distinction from an instruct model in a loop. An instruct model can be told to retry. You can put it in a framework and say, if the test fails, run it again. But an agentic model is trained on failure trajectories. The failure isn't handled by the wrapper. It's in the weights.
And that's not just Atria Dawn. It's a pattern across the field. SENTINEL turns rollout failures into targeted training tasks through a Controller, Proposer, Solver loop. On Tau2-Bench Retail with Qwen3-4B, it lifts Pass^1 from sixty-six point four to seventy-four point nine. CurateEvo evolves its data-curation strategy using failed trajectories. Same idea, different mechanism.
So failure is the curriculum.
Failure is the curriculum. And there's a whole mid-training stage that's emerged around this. MidTool, from August, mid-trains Qwen3-4B and 8B on web, PDF, and code, plus synthesized supervision from real tool APIs and MCP skills. It explicitly teaches models to recognize tool affordances, ground arguments from context, compose tool call workflows, and recover from incomplete information. SPT argues skills should be pre-training data, not just inference-time context. Both report gains over post-training-only recipes.
So there's a stage between pre-training and post-training where the model learns to use tools at all. That's new. Two years ago you taught a model to use tools by putting the tool schemas in the prompt.
You did. And the results were exactly as fragile as you'd expect. Now you mid-train on it. And then you post-train with agentic RL. Salesforce Koa post-trains Nemotron-3-Super-120B with GRPO, using a simulation-to-reward pipeline that expands workflow specs into persona-conditioned multi-turn tasks. The reward is grounded in successful tool use. AgenticQwen uses dual data flywheels. One reasoning flywheel that increases difficulty by learning from errors, and one agentic flywheel that expands linear workflows into multi-branch behavior trees.
Behavior trees. So the model isn't just learning a sequence, it's learning to branch.
It's learning when to branch and when not to. Which brings us to the hard problem.
The credit assignment problem.
In multi-turn agentic tasks with sparse terminal rewards, actions within failed trajectories stay poorly differentiated. The effective actions get the same bad credit as the erroneous ones. You ran twenty steps, the task failed, and the training signal is just, "that was bad." But step four was fine. Step four was good. Step eleven is where it went wrong. PGPO, from September, derives step-level advantages from state-potential differences to propagate credit across trajectories. That's the technical core of why long-horizon agentic training is hard. You have to figure out which step to blame.
It's a blame allocation problem.
It's a blame allocation problem, and it's unsolved in the general case. There's a CANOPY paper from September that argues outcome-only RL can suffice for long-horizon interactive agents, which cuts against the dense-reward orthodoxy. So there's live disagreement about whether you even need step-level credit.
And scale doesn't save you here. That's the KAMI finding, right?
KAMI analyzed nine hundred execution traces across Granite 4 Small at thirty-two billion, Llama 4 Maverick at four hundred billion, and DeepSeek V3.1. Llama 4 Maverick performs only marginally better than the thirty-two billion model on some uncertainty-driven tasks. Meanwhile DeepSeek V3.1's reliability derives primarily from post-training reinforcement learning rather than architecture or size.
Four hundred billion parameters, barely beating thirty-two billion on uncertainty handling.
And they identified four recurring failure archetypes. Premature action without grounding. Over-helpfulness that substitutes missing entities. Vulnerability to distractor-induced context pollution. And fragile execution under load.
That third one is the one that gets me. Distractor-induced context pollution. The model fails because something irrelevant showed up in the context.
And the fourth. Fragile execution under load. The task is the same, the model is the same, but the context is longer or the tool responses are slower, and performance degrades.
So you can't just scale your way to agentic robustness. You have to train for it. Which is the argument for agentic modeling being a real thing at the model level. But here's where it gets complicated.
The harness ablation.
The harness ablation. One context-management setting swung a single model from six point four percent to fifty-eight point four percent on SWE-Bench Verified. That's a fifty-two point swing. The full model spread at one hundred and twenty-eight K was forty-three points. The scaffold moved the score more than the choice of model did.
And at thirty-two K unmanaged, seventy-eight point seven percent of SWE-Bench runs died of context overflow. They didn't fail the task. They ran out of room.
So if you'd run that bake-off without controlling for the harness, you'd have concluded that model A is dramatically better than model B, and you'd have been measuring the context manager.
There's a tool-surface version of the same finding. With full tools, Mistral-Medium-3.5 beat Nemotron-3 550B by two point eight points. Bash-only, the 550B beat Mistral by twenty-four points while costing thirty-five percent less.
Twenty-four points, just from changing which tools were exposed.
Just from changing the tool surface. Same models. Different interface.
So the harness isn't a detail. It's a first-class variable. Which brings in the framing that came out of the Berkeley Agentic AI Summit in August. Agent equals Model plus Harness.
And the harness is the runtime software infrastructure. It coordinates tool dispatch, manages context, enforces policy, verifies output, captures corrections. Practitioners split it into an inner harness and an outer harness. The inner harness is the native tool-calling, the safety layers, the context handling baked into the base model. The outer harness is the repo-resident control system a platform team builds.
And the inner harness is exactly where agentic model training lands. That's the claim. The training is folding part of the harness into the weights.
Microsoft Research gave a keynote on exactly this. Internalizing agent harnesses. The thesis is that harness behavior should be folded back into the model. That's the strongest statement that agentic modeling is a real model-level category.
But the CRANE paper points the other way.
CRANE merges Instruct and Thinking checkpoints. It gets tool discipline from one and reasoning from the other. Which implies those are separable, composable axes rather than one category. If you can merge them, they're not the same thing.
So you've got Microsoft Research saying fold the harness into the weights, and CRANE saying the capabilities are separable and composable. Those can't both be fully right.
They can both be partially right. The harness behavior that's most general might fold in. The parts that are deployment-specific might stay out. But nobody's drawn that line yet.
So what does an agentic model actually give a framework that an instruct model doesn't? Let's get concrete.
Huawei Cloud's AgentOmnia paper from August is the most useful taxonomy here. It names ten capability dimensions that agentic post-training targets. Task understanding. Information gathering. Planning and decision making. State management. Tool use. Code operations. Data analysis. Office and document handling. Interactive collaboration. And reliability and safety, which they define as detecting and recovering from failures and completing tasks robustly under uncertainty.
State management is the one that jumps out at me. That's not a capability an instruct model has at all. An instruct model has no state. It has a context window.
Right. And reliability and safety as a trained capability, not a filter. That's the other one. An instruct model gets a safety layer bolted on. An agentic model is trained to recover from its own failures.
What are the numbers on AgentOmnia?
Task pass rate on the OmniaBench challenging subset went from nine point one six percent to thirty-seven point one one percent. Macro-average over four benchmarks went from twenty-two point eight six to forty-one point six nine. They built five thousand and eighteen environments, two hundred and fifty-five thousand three hundred and seventy-five tools, and fifty-two thousand three hundred and sixty-one tasks.
Fifty-two thousand tasks. That's the scale of the data pipeline you need.
That's the scale. And that's why this is a model-level thing and not a prompt-level thing. You can't get there with a system prompt.
So here's the category question. Is agentic modeling becoming a distinct category, analogous to reasoning or coding models?
Let's do the evidence for. Dedicated mid-training corpora. MidTool, SPT. Dedicated RL recipes. Koa, AgenticQwen, SENTINEL. Dedicated benchmarks. BFCL v4, tau-cubed-Bench, AutomationBench, Workspace-Bench, OmniaBench. And named model families explicitly branded agentic. Atria Dawn. Kimi K2, which they branded Open Agentic Intelligence. AgenticQwen. Salesforce Koa.
Evidence against.
The harness ablation shows the scaffold moves scores more than the model. CRANE implies separability. And there's no standalone, universally-accepted definition of agentic model. The closest formalizations are the Agentic LLM survey from December, which defines agentic LLMs as those that reason, act, and interact, and the Agentic Reasoning survey, which frames it as a paradigm shift. Neither one establishes agentic as a benchmark-defined category the way reasoning is defined by chain-of-thought and thinking modes, or coding is defined by SWE-bench.
Reasoning has a mechanism. Chain-of-thought. And a benchmark. Coding has SWE-bench. Agentic has... a vibe?
It has a deployment pattern. That's the honest answer. Tools, memory, an execution loop. And a set of training techniques that make a model better at that pattern.
Then there's the self-undermining benchmark problem, which I love. Atria Dawn's own report admits that progress on general benchmarks does not reveal the research capabilities they care about. And that agents moved past a difficulty mainly because a researcher supplied the missing context.
The flagship agentic model's own developers saying benchmarks don't capture agentic capability.
If you're selling an agentic model and you tell me your benchmarks don't measure the thing you built, I have questions.
They're being honest about it, which is more than most. But it does cut against the category claim. If you can't benchmark it, you can't define it as a category the way coding models are defined.
There's the recursive self-improvement subplot underneath all of this.
Atria Dawn's report is as much about AI-assisted AI research and development as it is about the model. Agents proposed sixty-four point six percent of methods, but humans made eighty-five point five percent of the final choices.
The agents generate options and the humans pick.
The case study numbers are interesting. Seven hundred and sixty-nine task records from fifty-six participants. AI was used in ninety-six point five percent of seven hundred and thirty-nine tasks. Thirty-three point two percent of completed AI-assisted tasks were rated infeasible without AI. Humans made the final method or parameter choice in eighty-five point five percent of decisions. And agents recovered on their own in only twenty-three percent of difficulties. Seventy-six percent needed human intervention.
Twenty-three percent. The agentic model recovered from its own failures less than a quarter of the time.
In that research setting, yes. And the daily median agent actions per human prompt rose from eleven to twenty-eight point five over four weeks. So the agents are doing more, but the human is still the recovery layer.
That's a big number for the failure recovery story. You train on failure trajectories, you build the verifiable experience pipeline, and the agent still needs a human three-quarters of the time.
In that specific domain. Research tasks are adversarial in a way that a coding task isn't. But it's a real data point.
There's a line in the report I want to flag. They warn that human involvement may serve as a placebo rather than make a substantive contribution.
That's a remarkable thing for a lab to write about its own product. They're worried that the human in the loop looks like oversight but isn't doing anything.
Which is the opposite worry from the one you'd expect. Not "the AI will run away," but "the human thinks they're steering and they're not."
Which connects to the oversight question. If humans are making eighty-five percent of the final decisions but the agent is doing twenty-eight actions per prompt, the human is making a lot of decisions on a lot of agent output.
If the agent recovered on its own in twenty-three percent of difficulties, then in the other seventy-six percent, the human is doing the recovery. So the human isn't a check on the agent. The human is the error handler.
Which is a strange place for the oversight to live.
Let me pull this back to Daniel's question. What does an agentic model actually give a framework?
State management. Trained failure recovery. Tool affordance recognition. Multi-branch planning. Robustness under load. The ten dimensions AgentOmnia names. An instruct model leaves all of that to the harness. An agentic model has some of it in the weights.
And the category question.
There's no consensus. The training-level changes are real and they're documented across independent research groups. That's not marketing. But the harness ablation says the scaffold still dominates the scores, and nobody has a benchmark that defines agentic the way SWE-bench defines coding.
The honest answer is that agentic modeling is a real set of training techniques applied to a real deployment pattern, and whether it's a category depends on whether the field converges on a definition. Which it hasn't.
That's the answer. And Atria Dawn's own developers would probably agree with it, given what they wrote about their benchmarks.
There's a phone call I'm expecting, so I'll leave you two to it.
Wait, what?
I said I'm expecting a call. I won't take it in the studio.
Oh. Okay. So, to Daniel's point about the category question. The thing I keep coming back to is that the label is doing work the benchmarks aren't. If you can brand a model agentic without a test that defines agentic, the label proliferates. And we've seen that movie before.
We have. Every model was multimodal for a while, and half of them meant it.
Right. And the ones that meant it had a real training change behind them. Which is where the agentic question sits right now.
Here's where I land. If agentic modeling is a real category, we should expect dedicated agentic pre-training stages to become standard, the way reasoning models now have thinking modes. If it's a deployment pattern, we should expect the label to proliferate without the underlying training changes. And the harness ablation suggests the scaffold will keep dominating the scores either way.
Atria Dawn's own developers admit benchmarks don't capture what they care about. That's either a sign the category is real and the benchmarks are lagging, or a sign the category is a marketing wrapper on a deployment pattern.
The listener gets to decide. That's the honest place to leave it.
Thanks to Hilbert Flumingtop for producing. This has been My Weird Prompts.
If you want to support the show, leave us a review wherever you get your podcasts. It helps.
We'll be back soon.
See you then.