Post-training only, no new weights: DeepSeek-V4-Flash GA API goes live
On July 31, DeepSeek posted a release-log update announcing the DeepSeek-V4-Flash-0731 GA API is now in public testing, alongside a teaser that V4-Pro GA is coming soon. Compared with V4-Flash-preview, the GA version keeps the same architecture, parameter count and weights — only the post-training pass was redone. No new checkpoint, no new architecture, not a single byte of the model file changed.
This is the textbook move for open-source LLMs that have entered their operational maturity phase: frozen base weights + iterated post-training.
Why "post-training only" works
V4-Flash rides DeepSeek's signature stack: MoE + sparse attention + 1M-token context. The May V4 GA technical disclosure showed DeepSeek fusing two lines of work — CSA (Compressed Sparse Attention) and HCA (Hierarchical Compressed Attention) — into a single inference stack, pushing attention compute on a 1M context down to roughly 27% of dense attention. Peak throughput roughly doubled vs. V3, while API pricing stays aggressively low with a "time-of-use electricity tariff" framing.
Post-training cost sits two to three orders of magnitude below pre-training:
- Pre-training: thousands of GPUs · tens of days · millions of dollars
- Post-training (RLHF / SFT / RL-on-CoT): tens to hundreds of GPUs · days to weeks · dramatically lower spend
Flash-preview was named separately because its weights were the by-product of a previous RLHF/SFT pipeline wrap-up — DeepSeek wanted to run one more alignment pass against live traffic. The 0731 suffix is itself the closing marker of a complete post-training iteration, not an architectural upgrade.
Three wins from this playbook
Fast version cadence: Open-source LLMs can no longer say "trained from scratch for millions of dollars" every release. Production users hit regression daily; fixes need to ship in days, not months. A preview-to-GA upgrade that doesn't touch weights can be pushed to all users via API in days.
Behavior calibration without disturbing the base: V4-Flash is one of the strongest models in its open-weight price band on multilingual, long-context, code and reasoning (see Developers Digest's three-model coding showdown). Those capabilities live in the weights; changing weights = regression risk. Changing the alignment layer = changing how the model talks, while preserving base reasoning.
Smooth cost curve: By the time the GA ships, DeepSeek has stabilized its alignment data, reward model and RL training pipelines. Marginal cost to push out the next post-training iteration collapses. That's why V4-Pro GA can come "soon" — the same pipeline swaps cleanly to Pro weights.
Two open questions for the industry
- Reproducibility: From the API surface alone, users can't tell which behaviors come from the weights and which from alignment. When preview and GA diverge, debugging gets murky.
- Version semantics: DeepSeek uses a date suffix (0731) instead of v4.1 / v4.2. They're promising API-compatible fast iteration. Open-source downstream forks that mirror date suffixes will lose traceability fast.
Take
Calling V4-Flash a "model upgrade" is less accurate than calling it an operational version bump for open-source LLMs. It tells a clear story: differentiation in open-source LLMs is shifting from "who trains hardest" to "who runs the steadiest post-training pipeline". Once V4-Pro GA lands, that one pipeline serves both Flash and Pro price points — DeepSeek is using engineering discipline to lock down the commercial moat of open-weight LLMs.
For developers, 0731 is a marker worth remembering: open-source LLMs have entered "ship by date" cadence. When you read release notes, separate "weights changed" from "only alignment changed".
References
- DeepSeek release log (2026-07-31): V4-Flash-0731 GA API public test; V4-Pro GA coming soon
- MACGPU Blog: DeepSeek V4 GA puts time-of-use pricing into the LLM API; CSA + HCA carry a 1M context
- MorphLLM: DeepSeek V4 hybrid-attention analysis — compute on 1M context down to 27%
- Developers Digest: Open-source coding models head-to-head — GLM-5.2, DeepSeek V4, Qwen3.6