/Signal
The most consequential AI result of the past year wasn't a bigger model. It was proof that the thing everyone treated as magic could be copied with the most boring technique available.
In a breakdown of DeepSeek's distillation work, The Sequence describes what actually happened in January 2025. DeepSeek took its large reasoning model, R1, and used it to generate roughly 800,000 worked solutions: long chains of thought, complete with false starts, self-corrections, and the occasional "wait, let me reconsider." They filtered those traces for correctness and readability. Then they did the least glamorous thing imaginable with them.
Plain supervised fine-tuning. On a handful of off-the-shelf open models: Qwen at 1.5B, 7B, 14B, 32B, and Llama at 8B and 70B. As the source puts it: no reinforcement learning, no reverse KL, no on-policy sampling, no teacher-as-critic. Just next-token prediction.
That detail matters more than any benchmark. The industry consensus held that reasoning models like o1 and R1 were special because of how they were trained: expensive RL loops, on-policy sampling, reward models acting as critics. The premium priced into "reasoning" as a capability rested on that assumption.
DeepSeek's result says the training method was never the point. The trace was the point. Once you have a corpus of correct reasoning traces, you can teach a small model to imitate them with the same technique used to teach a model to autocomplete email. Meanwhile, the market has spent a year pricing reasoning as a gated, high-end feature. That price is now under pressure, and the effects are landing squarely on the tools people run their agents with.
/Framework
Two frameworks explain why this matters, and they point in the same direction.
The first is Wardley Mapping: components evolve from genesis (novel, custom, expensive) toward commodity (standard, cheap, ubiquitous). Reasoning debuted at genesis. It was a research artifact, produced by one lab's proprietary training pipeline, available only through a small number of frontier endpoints. Distillation is the mechanic that drags a component rightward on that evolution axis. Once a capability can be reproduced by fine-tuning on a dataset, it stops being genesis and starts becoming a product. DeepSeek didn't just build a reasoning model. It published the recipe for turning reasoning into a commodity.
The second is Commoditize Your Complement. A firm subsidizes or opens the layer next to its own so its layer keeps its margin. If you sell agent runtimes, orchestration, or the harness around a model, then a cheap reasoning model is your complement. The cheaper and more reproducible reasoning becomes, the more valuable the layer that wires it into real work. This is why distillation is not a threat to the agent ecosystem. It is fuel for it.
Put them together and you get the thesis. Reasoning is sliding from genesis to commodity, and the value it used to hold is migrating to the layer above it. The value was never in the model. It's in the harness that connects the model to the world. A reasoning trace that fits inside a 7B model is a harness component you can ship, not a capability you rent. That reframes what "capable" even means for an agent: not which frontier endpoint it calls, but how well the runtime around it puts a cheap reasoner to work.
/Analysis
Start with the number that reframes everything: 800,000 traces. That is not a model. It is a dataset. And datasets are copyable, filterable, and cheap to train on in a way that RL pipelines are not.
The old story was that reasoning required a specific and expensive training regime, which is why it lived behind premium endpoints. The DeepSeek result, as The Sequence lays out, quietly demolishes that. If plain next-token prediction on good traces produces small models that reason, then the barrier to reasoning was never the algorithm. It was access to the traces. And traces, once generated, leak, get published, and get reproduced.
Meanwhile, the market is already repricing around this. Look at the week's noise about a Western lab called Poolside and its Laguna S 2.1 model. Latent Space's coverage summed up the reaction with a Reddit line: "Cheaper than Deepseek v4 Flash, Better than V4 Pro." The longer interview frames Poolside as "beating Thinking Machines' recent release nearly 10 times their size." Ten times smaller, competitive benchmarks. That is the distillation logic playing out at the product level: capability decoupling from scale.
The efficiency story doesn't stop at distillation. The Sequence's writeup of Inkling, a 975-billion-parameter model, notes that it activates only 41 billion parameters per token. The architecture owns enormous capacity but wakes up a fraction of it at a time. Distillation shrinks the model; sparse activation shrinks the compute a big model actually spends. Different mechanisms, same trajectory: the cost of a given unit of capability is falling fast, and the frontier's pricing power is falling with it.
So what does this mean for the person configuring an OpenClaw setup or wiring skills into Paperclip? Three concrete shifts.
First, reasoning stops being a routing decision and starts being a default. For a year, the sensible pattern was to route hard steps to an expensive reasoning endpoint and cheap steps to a fast one. When a 7B model reasons acceptably, that split collapses. Your agent runtime can carry a competent reasoner locally or on cheap infrastructure, and the premium tier becomes a fallback rather than the backbone.
Second, the harness becomes the differentiator. If two agents both have access to reasoning-grade models, the one that wins is the one with the better tool-calling, memory, error recovery, and permission handling. This is visible in the plumbing shipping right now. Pydantic-AI's v2.16.0 release added a ToolFailed path for model-visible failures without retries, and prompt-cache controls. Claude Code's v2.1.218 moved code review into a background subagent so it stops flooding the main conversation. Meanwhile Paperclip's latest release shipped gated experimental "Apps" from 13 contributors. None of these are model improvements. All of them are harness improvements. That is where the work is going because that is where the value now sits.
Third, sovereignty and cost stop being in tension. The open-vs-closed and US-vs-China arguments the Latent Space interview describes as reaching "a fever pitch" get easier when reasoning is a distillable primitive. You no longer have to choose between a capable model and one you can run yourself. A distilled reasoner is small enough to self-host, which matters for anyone weighing enterprise deployment against sending every reasoning step to a third party.
The pattern connecting all of this: capability is decoupling from scale, and scale was the moat.
/Counterpoint
The strongest objection is that distillation copies the outputs of reasoning, not the ability to reason. A small model trained on 800,000 traces learns to imitate the shape of a good solution. It has not discovered anything. Push it onto a genuinely novel problem, the argument goes, and the imitation cracks where a model trained with real RL and on-policy sampling would keep going.
There is truth here. Distilled reasoners can be brittle at the edges of their training distribution, and the frontier labs still generate the traces everyone else distills from. Someone has to run the expensive pipeline first.
But that concedes the thesis rather than refuting it. For the vast majority of agent work (planning a multi-step task, debugging a config, drafting and revising a document) the problems are not at the frontier of novelty. They are the kind of thing a good trace already covers. The frontier lab's advantage becomes producing the next generation of traces, not gatekeeping this one.
And "someone has to generate them first" is exactly how commoditization always works. The first mover pays genesis costs; everyone downstream buys the commodity. That the frontier keeps moving doesn't restore the premium on the reasoning that already leaked. It just relocates the premium to next year's traces, which will leak too.
/Figures
| Approach | Example | Mechanism | Effect |
|---|---|---|---|
| Distillation | DeepSeek R1 traces into Qwen/Llama (1.5B-70B) | Supervised fine-tuning on 800K filtered traces | Reasoning in small, self-hostable models |
| Compact competitor | Poolside Laguna S 2.1 | ~10x smaller than a comparable frontier release | Competitive benchmarks at a fraction of the size |
| Sparse activation | Inkling (975B params) | 41B parameters active per token | Large capacity, fraction of the compute per token |
/Sources
- The Sequence Knowledge #898: The Trace Is the Teacher: Distilling Reasoning Into Small Models
- [AINews] Laguna S 2.1 Released: Cheaper than Deepseek v4 Flash, Better than V4 Pro
- Inside the Model Factory — Eiso Kant, Poolside AI
- The Sequence AI of the Week #899: Inside Inkling
- Release v2.16.0 · pydantic/pydantic-ai
- Release v2.1.218 · anthropics/claude-code
- Release v2026.722.0 · paperclipai/paperclip
/Key Takeaways
- DeepSeek showed reasoning can be taught to small models with plain fine-tuning on 800,000 worked traces, no reinforcement learning required.
- The barrier to reasoning was never the training algorithm; it was access to good traces, and traces are copyable.
- As reasoning commoditizes, agent value migrates to the harness: tool-calling, memory, error recovery, and permissions.
- Distilled and sparse-activation models (Poolside's 10x-smaller Laguna, Inkling's 41B-of-975B) both point the same way: capability is decoupling from scale.
- Self-hostable reasoners ease the sovereignty-vs-capability tradeoff for anyone weighing enterprise deployment.



