TL;DR — This slot was reserved for DeepSeek's flagship V4-Pro until DeepSeek shipped V4.1-Flash on 10 September 2026 and, by its own announcement, began phasing the bigger model out. Live probes show a 552B MoE that reasons well and codes correctly but runs unevenly — fast on math, slow on structured extraction. It closes out 30 days of open-weight AI with the clearest lesson of the season: the flagship isn't always the finish line.
This article was supposed to close the series with DeepSeek-V4-Pro, the flagship model DeepSeek had been building toward all year. Then, on 10 September 2026, DeepSeek shipped V4.1-Flash — and said, in its own release announcement, that it outperforms V4-Pro. The Pro model is being phased out. So the season finale changed authors mid-write, which is, frankly, the most honest way this series could end.
What DeepSeek actually claims
Per DeepSeek's announcement, V4.1-Flash is a 552-billion-parameter mixture-of-experts model — but it's a new architecture family, not just a smaller checkpoint of the old one. It activates 8B parameters for input processing and 16B for output generation, splitting the compute budget asymmetrically between reading and writing. DeepSeek also says it adds native visual understanding and introduces a causal encoder-decoder design whose KV cache needs only a quarter of the HBM and an eighth of the SSD storage that the previous generation required. Those are DeepSeek's numbers, from DeepSeek's own announcement — I haven't independently verified the architecture claims, only the live behavior below. One clarification worth stating once: this is not the same model as Day 7's DeepSeek-V4-Flash. Different family, different generation, similar name, easy to conflate — don't.
What the probes actually show
The catalog lists a 1,048,576-token context window, $0.15 per million input tokens and $0.60 per million output tokens via the Hugging Face id deepseek-ai/DeepSeek-V4.1-Flash. That's a genuinely large context window at a genuinely cheap rate — but the three live probes tell a more textured story than the spec sheet does.
On the coding task — write merge_intervals and state its complexity — the model produced correct, idiomatic Python: sort by start, walk the list, merge in place with a max() on the end boundary, and it correctly named the complexity as O(n log n) dominated by the sort. That's right. But it took 64.8 seconds to produce 591 tokens, a throughput of 9.1 tokens/second. On the reasoning probe — a two-pump tank-filling problem — it nailed the arithmetic (600L after 20 minutes, 1,800L remaining, 20 more minutes at 90L/min) in 3.8 seconds at 45.4 tokens/second. On structured extraction, it returned a clean, valid JSON object with correct vendor, date, and total — but took 36.2 seconds to produce a mere 176 tokens, just 4.9 tokens/second.
That's a wide spread — 45.4 tok/s on one task, 4.9 on another — from the same model in the same session. I won't invent an explanation the metadata doesn't support, but it's consistent with an architecture that DeepSeek itself describes as splitting input and output processing asymmetrically: short, arithmetic-heavy generation moves fast; longer or more structurally constrained generation seems to cost more per token. Whatever the cause, the lesson for anyone deploying this is the same: benchmark your actual workload, not the model's best probe.
Who should actually build on this
Set the architecture claims aside for a second and ask what the measured behavior supports. Three fits stand out:
Long-document reasoning and analysis: the 1,048,576-token context plus the strong, fast reasoning probe (45.4 tok/s, correct math, brief clean steps) makes this a candidate for contract review, multi-file code audits, or research synthesis where you need to hold a huge amount of context and reason over it without chunking.
Correctness-first coding assistants where latency is tolerable: the merge_intervals output was correct and well-explained, but 64.8 seconds for under 600 tokens is not a pair-programming pace. This fits batch code review or CI-triggered analysis, not an interactive IDE autocomplete loop.
Structured extraction pipelines — with a caveat: the JSON came back valid and accurate, which matters for invoice or form parsing at the OCR-to-database boundary. But 4.9 tokens/second on a 176-token output means throughput-sensitive extraction pipelines (think: thousands of documents per hour) need to test this specific task shape before committing, because the probe suggests it may not be the fastest option for high-volume structured output even though the price per token is cheap.
Who should skip it, at least for now: anyone needing snappy, low-latency interactive chat or agent loops where every tool call adds a multi-second tax — the variance between 4.9 and 45.4 tokens/second across tasks makes latency budgeting harder than a flat, predictable model would.
Thirty days, zoomed out
This series covered a lot of ground: models from 8B to a 2.4-trillion-parameter MoE (Qwen3.8-2.4T, Day 27), inference engines built for different bottlenecks (vLLM for throughput, SGLang for prefix reuse, llama.cpp for running anywhere), and open-weight models doing real work in factories, cars, drones, satellites, and clinics. The throughline was never "which model wins" — it was that open weights let you match the tool to the constraint, whether that constraint is a HIPAA boundary, a 15-year vehicle lifecycle, or a satellite's power budget.
And now the finale delivers that lesson in the most literal way possible: a flagship model, planned as the closing chapter, got phased out by its own smaller sibling before the article was even published. DeepSeek's announcement frames V4.1-Flash's KV cache efficiency — a quarter of the HBM, an eighth of the SSD versus the prior generation — as the reason a leaner model can beat a bigger one on deployment economics, not just raw scores. If that claim holds up under independent testing, it says something bigger than DeepSeek: 2026 is the year "flagship" stopped meaning "biggest," and started meaning "cheapest to run at the quality bar you need." Open weights are what make that swap visible in real time — you can watch a vendor retire its own flagship in a press release, because there's no walled garden hiding the decision.
The verdict
Build on DeepSeek-V4.1-Flash if your workload is long-context reasoning or document-heavy analysis where $0.15/$0.60 per million tokens and a million-token window matter more than sub-second latency — the reasoning probe backs that up cleanly. Pilot it, don't commit blind, for coding and structured-extraction pipelines until you've run your own throughput test against the specific task shape you need, because the probes show real variance DeepSeek's spec sheet doesn't surface. And treat the Pro-to-Flash swap itself as the actual takeaway of this season: in open-weight AI, the newest small model replacing last month's flagship isn't an edge case anymore. It's the pattern.
That's a wrap on 30 Days of Open-Weight AI — thanks for reading along through the models, the engines, the factories, and everything in orbit. This is the last entry in the series, and it's fitting that the finale changed under our feet before it even published.
The numbers (measured, not quoted)
I ran three quick probes against DeepSeek-V4.1-Flash via a hosted API today before writing this. Small sample, one snapshot in time, routed hardware I don't control — treat these as a smell test, not a benchmark:
| Probe | Wall-clock | Output tokens | Tokens/sec (effective) | Result |
|---|---|---|---|---|
| Code | 64.8s | 591 | 9.1 | completed |
| Reasoning | 3.8s | 172 | 45.4 | completed |
| Structured output | 36.2s | 176 | 4.9 | completed |
Effective tokens/sec includes queueing and time-to-first-token — it's what you actually experience, not peak decode speed.
Model card: context window 1,048,576 tokens · hosted pricing $0.15/M input · $0.6/M output · weights: deepseek-ai/DeepSeek-V4.1-Flash on Hugging Face
Credits — where it's due
- DeepSeek — for training DeepSeek-V4.1-Flash and releasing the weights openly: deepseek-ai/DeepSeek-V4.1-Flash. Open releases like this are why a series like this can exist at all.
- OpenRouter — the hosted API used for today's live probes and the pricing/context figures.
- The quantizers and runtime maintainers — the mostly-unpaid people who turn every open release into something that runs on real hardware within days.


Top comments (0)