Daily Tech Briefing
AI 科技速览
每天 5 分钟内学习 AI。获取最新的人工智能新闻,理解其重要性,并学习如何将其应用于您的工作。
MarkTechPost · 2026/7/31 22:03:39
DeepSeek Upgrades DeepSeek-V4-Flash-0731 with Major Agentic and Coding Gains
AI 中文解读
核心亮点:DeepSeek把V4-Flash模型升级到了正式版,重点强化了AI自主操作电脑和写代码的能力,速度没变,但脑子更灵光了。
通俗解读:这次升级不是换新引擎,而是给原来的引擎做了深度调校。新模型最牛的地方是带了个“快进搭档”,能让AI思考得更快。价格也很亲民,调用一次的成本只有高级版的三分之一,普通程序员都能用得起。如果你电脑配置够猛,还能免费下载模型自己跑,不过它体型庞大,普通家用电脑有点吃力,更适合公司机房。
实际影响:对普通人来说,最直观的变化是AI编程工具会更聪明,自动写代码、修Bug的能力更强。以后你让AI帮你做表格、订行程、操作软件,它都能更麻利地完成。对企业而言,成本降低意味着可以大规模用AI跑自动化流程,比如客服、数据处理,省下不少人力。总的来说,AI干活更便宜、更靠谱了,离走进日常工作和生活又近了一步。
DeepSeek published DeepSeek-V4-Flash-0731 on Hugging Face and moved the official V4-Flash API into public beta on July 31, 2026. The model card is explicit that this is the official release superseding the preview, and that the architecture and size are unchanged. The gains come from re-post-training, not a new design.
The checkpoint ships with the DSpark speculative decoding module attached, matching the structure of DeepSeek-V4-Flash-DSpark. Hugging Face reports 304B parameters for the repo, which includes that draft module on top of the 284B base.
On the API side, deepseek-v4-flash now natively supports the Responses API format and is adapted for Codex. The V4-Pro API and the app and web models were not updated.
Is it deployable?
Yes, in two very different ways.
Via API, it is deployable by almost anyone: DeepSeek’s pricing page lists deepseek-v4-flash at $0.14 per 1M input tokens on a cache miss, $0.0028 on a cache hit, and $0.28 per 1M output tokens, with a 2,500 concurrency limit. That is roughly a third of deepseek-v4-pro output pricing ($0.87). Seed-stage startups, indie developers, and internal platform teams can run agent loops at this price without a GPU budget.
Via self-hosting, the bar is much higher: The weights are MIT-licensed and ungated, but every expert stays resident in memory even though only 13B activate per token. DeepSeek’s vLLM example serves it on a single 4×GB300 node. Unsloth’s dynamic GGUFs put the lossless 8-bit build at 162 GB and a 3-bit build at 103 GB, needing roughly 110 GB of combined RAM plus VRAM. Self-hosting suits mid-size and large enterprises with a serving cluster, or one well-specced workstation at aggressive quantization.
Architecture
Per the DeepSeek-V4 technical report, V4-Flash is a 284B-parameter MoE with 13B activated per token and a 1M-token context window. Each MoE layer holds 1 shared expert and 256 routed experts with an intermediate dimension of 2048, and 6 routed experts fire per token. The first three MoE layers use hash routing. Multi-token prediction depth is 1.
Attention is hybrid, combining Compressed Sparse Attention (CSA) and Heavily Compressed Attention (HCA). Manifold-Constrained Hyper-Connections (mHC) replace conventional residual connections, with expansion factor 4 and 20 Sinkhorn-Knopp iterations. Pre-training used more than 32T tokens and the Muon optimizer. The paper’s headline efficiency figure — 27% of single-token inference FLOPs and 10% of KV cache versus DeepSeek-V3.2 at 1M context — is stated for V4-Pro, not Flash.
<!– EMBED HERE: paste wordpress-embed.html into a Custom HTML block –>
(function(){var f=document.getElementById("mtp-dsv4-flash0731");
window.addEventListener("message",function(e){if(f&&e.source===f.contentWindow&&e.data&&e.data.__mtpH){f.style.height=e.data.__mtpH+"px";}});})();
Benchmarks
All figures below are DeepSeek-reported, from the 0731 model card.
BenchmarkV4-Flash-0731V4-Flash (Preview)V4-Pro (Preview)GLM-5.2Opus-4.8Terminal Bench 2.182.761.872.181.085.0NL2Repo54.239.438.548.969.7Cybergym76.738.752.7—83.1DeepSWE54.47.312.846.258.0Toolathlon-Verified70.349.755.959.976.2Agents’ Last Exam25.215.816.523.825.7AutomationBench Public25.110.812.812.927.2
Two important things to note:
Code Agent tasks were run with the minimal mode of DeepSeek Harness, which has not been released.
DSBench-FullStack (68.7) and DSBench-Hard (59.6) are internal test sets. Agent scores are harness-sensitive, so independent runs may diverge.
Serving it
DSpark is enabled with one vLLM flag: --speculative-config '{"method":"dspark","num_speculative_tokens":7,"draft_sample_method":"greedy"}'. The DSpark paper reports 60–85% faster per-user generation on V4-Flash versus the MTP-1 baseline at matched aggregate throughput.
There is no Jinja chat template. DeepSeek ships an encoding/ folder with encode_messages and parse_message_from_completion_text inst
分享
阅读原文 ↗