跪拜 Guibai
← All articles
Algorithms · Artificial Intelligence

DeepSeek V4 Flash Ships: 13B Active Parameters, 6x Agent Jump, and a Price Floor of $0.003/M Tokens

By 怕浪猫 ·
Read original on juejin.cn ↗ Google Translate ↗ Alt translation

A 13B-active-parameter model now competes with far larger systems on agentic coding benchmarks while costing roughly 1/90th of Claude. The 6x DeepSWE gain from post-training alone suggests that architecture changes are not the only path to capability jumps, which has direct implications for how teams budget training versus inference spend.

Summary

DeepSeek quietly released the official version of its V4 Flash model, a 284B total-parameter MoE model that activates only 13B parameters. The architecture and base model are unchanged from the preview; the leap comes entirely from a new post-training regimen. On the DeepSWE benchmark, which measures autonomous, long-horizon coding tasks, the score vaulted from 7.3 to 54.4. Terminal Bench 2.1 hit 82.7, surpassing the earlier V4 Pro preview and landing just behind Opus 4.8.

The pricing remains aggressive: 0.02 yuan per million input tokens on a cache hit, with a 98% cache-hit discount that far exceeds the industry's typical 90%. Developers report cutting per-request costs by 85% after restructuring their caching strategy. The model supports a 1M-token context window, a 384K-token max output, and natively speaks both OpenAI and Anthropic API formats.

NetEase Youdao has already integrated the model across its entire AI product line, and community developers are pairing it with Claude Code for terminal-native coding agents. DeepSeek says the same post-training approach will be applied to V4 Pro, whose official release is still pending.

Takeaways
V4 Flash official version uses the same 284B MoE architecture and 13B active parameters as the preview; only post-training changed.
DeepSWE score rose from 7.3 to 54.4, a more than 6x improvement on long-horizon autonomous coding tasks.
Terminal Bench 2.1 reached 82.7, beating V4 Pro preview (72.1) and GLM-5.2 (81.0), and approaching Opus 4.8 (85.0).
On Artificial Analysis's intelligence index, V4 Flash scored 50, one point below GPT-5.6 Luna's 51.
Input pricing is 0.02 yuan per million tokens on a cache hit, with a 98% cache-hit discount that cuts costs 50x versus a cache miss.
One developer reduced per-request cost from 1.2 yuan to 0.17 yuan by restructuring their cache strategy.
The model supports a 1M-token context window, 384K-token max output, and is compatible with both OpenAI and Anthropic API formats.
NetEase Youdao integrated the model across its full product line, including LobsterAI, Youdao Dictionary, and ThinkFlow.
V4 Pro's official version is still pending; the same post-training method will be applied to it next.
Conclusions

The 6x DeepSWE jump without any architecture change challenges the assumption that capability gains require scaling parameters or redesigning the model. Post-training alone can unlock agentic behaviors that were latent in the base model.

DeepSeek's 98% cache-hit discount is an operational moat as much as a pricing one. It rewards developers who design cache-friendly workflows, effectively locking them into the platform through cost optimization rather than API compatibility alone.

Publishing a 13B-active-parameter model that rivals systems with far higher active counts resets expectations for what 'small' models can do in agentic tasks, which may pressure other labs to justify their larger, more expensive inference footprints.

Concepts & terms
DeepSWE
A benchmark that evaluates an AI agent's ability to autonomously solve real-world, long-cycle, multi-step software engineering tasks, measuring sustained planning and execution rather than single-turn code generation.
MoE (Mixture of Experts)
A model architecture where only a subset of parameters (experts) are activated for any given input, allowing a large total parameter count while keeping inference compute low. V4 Flash has 284B total parameters but activates only 13B per token.
Hybrid Attention Architecture (CSA + HCA)
DeepSeek V4's attention mechanism that compresses or skips weakly related tokens in long contexts, breaking the O(n²) complexity bottleneck of standard attention and enabling efficient 1M-token context processing.
KV Cache
A memory store of key-value pairs from previous tokens that avoids recomputation during autoregressive generation. V4 Flash's KV cache footprint is as low as 7% of V3.2's in long-context scenarios.
Source: juejin.cn ↗ Google Translate ↗ Backup ↗