DeepSeek V4.1-Flash 发布、降价及 V4-Pro 退役
TECH

DeepSeek V4.1-Flash 发布、降价及 V4-Pro 退役

36+
Signals

战略概览

  • 01.
    DeepSeek 于2026年9月10日正式发布 DeepSeek-V4.1-Flash,这是一款拥有5520亿参数的混合专家模型,基于全新的因果编码器-解码器(Causal Encoder-Decoder)架构构建,具备原生视觉理解能力,并支持长达100万token的上下文窗口。
  • 02.
    DeepSeek 表示,内部与外部测试显示 V4.1-Flash 在性能、成本、速度和总完成时间方面均优于其旗舰产品 V4-Pro,因此将退役 V4-Pro,并从2026年9月14日起将所有 V4-Pro API 请求自动路由至 V4.1-Flash,按 Flash 系列定价计费。
  • 03.
    非高峰时段 API 定价为每百万缓存输入 token 3美元、每百万未缓存输入 token 15万美元、每百万输出 token 60万美元,工作日高峰时段费率翻倍。
  • 04.
    V4.1-Flash 已在 Hugging Face 上以 MIT 许可证开源模型权重,允许商业用途。

架构之赌:不对称编码器-解码器战胜暴力堆叠规模

V4.1-Flash 拥有5520亿参数的混合专家骨干网络,看似庞大,但真正起作用的是其因果编码器-解码器架构:一个20层编码器使用仅80亿活跃参数读取提示,随后一个独立的20层解码器使用160亿活跃参数生成回复 [1]。这打破了大多数大语言模型仍在使用的纯解码器 Transformer 范式——在该范式中,每个 token 无论用于读取还是写入,都需支付相同的每 token 计算成本,与其角色无关 [2]。DeepSeek 的表述非常直接:‘一个20层编码器使用仅80亿活跃参数读取您的输入,然后一个20层解码器使用160亿参数生成回复’ [2]

这种架构分离也是实现模型激进内存占用压缩的关键。KV 缓存大小压缩至约每 token 890 字节,约为前代 V4-Flash 所需空间的四分之一,从而将 HBM 需求减少约4倍,持久化 SSD 存储需求减少约8倍 [2][5]。除了5520亿骨干参数外,DeepSeek 还添加了一组独立的1960亿参数‘Engram’条件记忆模块,这些模块仅在需要时被调用,而非始终保持激活状态 [4][5]。综合来看,该模型并非简单地比前代‘更大’,而是重构为大部分参数存储在内存高效、选择性激活的模块中,而非密集计算单元中——后者必须对每个 token 都运行。这正是 DeepSeek 能够以极低的常规 API 成本提供持续超过每秒180个 token 的流式传输速度,部分测试者报告甚至达到每秒300至400个 token 的根本原因 [2]

便宜但不均衡:基准测试真实揭示了什么

在代理任务和编程相关评估中,V4.1-Flash 确实能与 Claude Opus 5 和 GPT-5.6 Sol 一较高下,甚至偶尔胜出。它在 Terminal-Bench 2.1 上得分为90.6,而竞争对手分别为89.1和88.8;在 DeepSWE v1.1 上得分为74.2,而对手为74.0和73.0 [2][3],同时收费仅为 OpenAI 和 Anthropic 同等吞吐量服务的一小部分 [3]。独立评测机构 OpenDesign 发现,在设计任务中,V4.1-Flash 实现了‘GPT-6 Astra 质量评分的98%,而成本仅为后者的1.4%’ [3],这一结果被 DeepSeek 及其支持者视为证据,表明该模型在现实世界、工具使用型工作中已接近远更昂贵的前沿系统水平。

但在纯粹推理测试中,情况则急剧反转。在《人类最后的考试》(Humanity's Last Exam)中,V4.1-Flash 得分为36.8,而 GPT-5.6 Sol 为44.5,Claude Opus 5 为56.3;在更难的 Terminal-Bench 3.0 中,其得分分别为30.0 对 34.4 和 43.3 [3]。这一差距表明 V4.1-Flash 明确针对廉价、高缓存的代理和工具使用工作负载进行了优化,而非通用推理深度。这也解释了为何 OpenDesign 类型的基准测试胜利会引发质疑:怀疑者将狭窄的、由 LLM 判定的前端设计比较斥为‘刷榜’(benchmaxxing),而非有意义的能力衡量标准;至少有一位直接用户报告称,在路由变更后,会话中途输出质量明显下降——这一投诉直接挑战了‘模型全面更强’的营销叙事。

伪装成特性的强制迁移

DeepSeek 宣布退役 V4-Pro 的理由很直接:内部与外部测试发现 V4.1-Flash 在性能、成本、速度和总完成时间上均优于其自家旗舰产品 [6]。但对于实际在 V4-Pro 上运行生产工作负载的用户而言,这一退役机制并不那么直接。自2026年9月14日 UTC 时间04:00起,所有 deepseek-v4-pro 请求将自动路由至 V4.1-Flash,并按 Flash 系列费率计费,直至未来推出 V4.1-Pro [6][7]。在用户提出反对后,DeepSeek 表示将在此日期之后继续提供 V4-Pro API 访问,并保持计费不变 [7]——这一部分逆转表明,原计划低估了强制模型切换对付费客户的破坏性。

Hacker News 上提出的根本担忧是关于托管 API 的可靠性,而非模型质量本身:‘你精心测试并优化所依赖的模型可能会改变’ [2]。对于那些根据 V4-Pro 特定行为调整了提示词、评估和防护措施的团队来说,静默切换到一个结构不同的模型——即使名义上更优——也可能破坏精心校准的系统。DeepSeek 同时在 Hugging Face 上以 MIT 许可证开源 V4.1-Flash 的权重 [8],理论上为规避此类依赖风险提供了自托管出路,但正如模型自身的硬件需求所明确显示的那样,这条出路对绝大多数需要保护的客户而言并非现实选项。

一夜之间抹去数十亿美元市值的价格战

市场对 V4.1-Flash 定价的反应迅速且可量化。彭博社报道称,MiniMax Group 和 Z.ai 的股票在宣布当日于香港交易中暴跌超过8%,阿里巴巴集团控股股价也下滑逾2%,报道将 DeepSeek 的低价策略描述为同时也给 OpenAI 带来‘新的打击’ [9]。DeepSeek 还将 V4.1-Flash 定位为在性能上超越 Moonshot AI 的 Kimi K3 同时价格更低,从而在同一新闻周期内将挤压延伸至第三家中国竞争对手 [9]

时机绝非偶然。DeepSeek 正在筹备于上海科创板上市,据报道已聘请中信证券,并寻求当前融资中约750亿美元的估值 [2][4]。一次同时登顶基准排行榜并压垮价格的发布,恰好强化了IPO路演所需的那种叙事。然而就在同一天,叙事变得复杂:SiliconANGLE 报道称,Anthropic 将 DeepSeek 列为七家据称正在对 Claude 进行大规模蒸馏攻击的中国实验室之一,仅7月份就记录了1210万次此类交互 [10]。换言之,DeepSeek 在成本和能力上的进步,正伴随着对其基础模型训练方式的审查——这种张力与一家同时向公开市场投资者打磨其投资故事的公司形象显得格格不入。

徒有其名的‘闪速’:本地托管爱好者的品牌反噬

‘Flash’标签历来代表 DeepSeek 更小、更便宜、更适合自托管的产品线——V4-Flash 于2026年4月发布,总参数为2840亿,活跃参数为130亿 [11]。而 V4.1-Flash 的5520亿参数骨干网络,加上一个独立的1960亿参数 Engram 记忆系统,规模几乎是前代的两倍 [2][4]。在 r/LocalLLaMA 社区,名称与现实之间的错位促使本地托管社区开始称其为‘Flash Max’,讨论焦点集中在家庭运行该模型所需的256GB以上系统内存以及 Engram 权重的 NVMe 卸载——这与‘Flash’此前对消费级硬件的暗示相去甚远。

这种紧张关系指向了外界对该发布解读的更广泛分歧。同一套令运行高缓存代理工作负载的 API 客户欣喜若狂的架构与成本创新——持续流式传输速度超过每秒180个 token,有测试者报告达到每秒300至400个 tok/s [2]——却直接背离了 DeepSeek 最初为促成 R1 在全球现象级流行的自托管群体所提供的价值主张 [12]。这也助长了一些直接用户中流传的更怀疑性解读:V4.1-Flash 并非真正的架构飞跃,而只是一个规模显著更大的 Flash 级别,借助激进的营销和定价推动发布,时机恰逢 IPO 前最大化关注。

历史背景

DeepSeek-R1 发布并在一周内成为美国 iOS App Store 下载量最高的免费应用,这一刻首次将 DeepSeek 推上全球舞台。
DeepSeek 发布 V4 作为 V3.2 的继任者,分为两个层级:deepseek-v4-flash(2840亿参数,130亿活跃)和 deepseek-v4-pro(1.6万亿参数,490亿活跃)。
DeepSeek 推出其旗舰 V4-Flash 模型的公开测试版 API。
DeepSeek 宣布计划对其 AI 服务进行‘重大’提价,但后来被9月的降价所逆转。
DeepSeek 推出一款旨在挑战 Anthropic Opus 4.8 的测试模型,这是 V4.1-Flash 的前身。
DeepSeek 正式发布 V4.1-Flash,退役 V4-Flash 和 V4-Flash-Vision-Exp,并宣布逐步退役并将 V4-Pro 请求路由。

关键关系图

关键玩家
主题

DeepSeek V4.1-Flash 发布、降价及 V4-Pro 退役

DE

DeepSeek

Developer of V4.1-Flash, simultaneously preparing a Shanghai STAR Market IPO with CITIC Securities engaged and a reported valuation target near $75 billion; a benchmark-topping, price-crushing launch functions as investor-facing proof ahead of that listing.

OP

OpenAI

Maker of GPT-5.6 Sol, V4.1-Flash's primary benchmark and pricing target; Bloomberg said DeepSeek's cheap pricing 'deals a fresh blow to OpenAI.'

AN

Anthropic

Maker of Claude Opus 5, the other benchmark target; V4.1-Flash matches or edges Opus 5 on some agentic tests but trails it significantly on reasoning evals, while Anthropic separately alleged DeepSeek is among several China-based labs distilling Claude's outputs.

Z.

Z.ai, MiniMax Group and Alibaba

Chinese AI and tech rivals whose shares fell on announcement day - MiniMax and Z.ai more than 8% in Hong Kong trading, Alibaba more than 2% - reflecting investor expectation that DeepSeek's pricing squeezes their margins.

EX

Existing V4-Pro API customers

Paying users whose production deployments are being auto-migrated to a different underlying model without a conventional deprecation window, prompting reliability concerns; DeepSeek partly reversed course after user pushback, keeping V4-Pro access available past September 14 at unchanged billing.

事实来源

12 条引用
  1. [1] DeepSeek-V4.1-Flash
  2. [2] DeepSeek V4.1-Flash
  3. [3] DeepSeek V4.1-Flash debuts with $0.003/1M off-peak cached input rate and benchmarks eclipsing GPT-5.6 Sol, Claude Opus 5
  4. [4] DeepSeek V4.1-Flash launch and STAR Market IPO
  5. [5] DeepSeek V4.1-Flash Model Launch
  6. [6] DeepSeek formally launches V4.1-Flash, routes V4-Pro requests to Flash
  7. [7] DeepSeek V4.1-Flash: Pricing, Specs, and V4-Pro Routing
  8. [8] DeepSeek V4.1-Flash released on Hugging Face, replacing V4-Pro
  9. [9] DeepSeek's New Low-Cost Model Deals a Fresh Blow to OpenAI, Z.ai
  10. [10] DeepSeek releases V4.1-Flash, says it outperforms flagship V4-Pro
  11. [11] DeepSeek Unveils Newest Flagship a Year After AI Breakthrough
  12. [12] DeepSeek (chatbot)

来源文章

Top 5

THE SIGNAL.

Analysts

称赞 V4.1-Flash 的原始吞吐量,表示:‘我得到的大概是每秒300到400个 token,简直疯狂。它运行得比工具调用本身还快得多。’

Community tester
独立测试者,eesel AI 引述

发现 V4.1-Flash 在设计任务上以远低于前沿模型的成本实现了近乎同等的质量:‘GPT-6 Astra 质量评分的98%,成本仅为1.4%。’

OpenDesign
独立基准评测机构,VentureBeat 引述

将此次降价规模及更广泛的中国低成本模型趋势描述为挤压美国模型制造商的利润空间,称之为‘美国模型制造商的死亡地带’。

Bloomberg Intelligence analysts
分析师,彭博情报,eesel AI 引述
The Crowd

🚀 Introducing DeepSeek-V4.1-Flash: smarter, faster, more efficient. 🔹 Introducing the smallest model in our new architecture family, with native visual understanding. 🔹 Designed for greater capability, faster inference, higher throughput, and scaling to larger models. 1/6

@@deepseek_ai27254

I've asked Astra to read the DeepSeek v4.1 Flash paper and compare it to the original Transformer architecture in 3D - you can zoom in an inspect each element side by side. Things have changed quite a bit. Try yourself: architecture.petergostev.chatgpt.site

@@petergostev2251

DeepSeek V4.1 Flash just beat GPT 6 Astra on the BridgeBench ocean sunset test. For 3 cents. $0.03 vs $0.59. Twenty times cheaper. Faster too. And look at the two oceans. The DeepSeek one is better. Five days ago I said OpenAI might kill Anthropic on cost. Now a Chinese lab

@@bridgemindai2119

DeepSeek V4-1 Flash is out

@u/tiguidoio1500
Broadcast
DeepSeek V4.1 Flash Is INSANELY GOOD! Fast, Cheap, Powerful! (Fully Tested)

DeepSeek V4.1 Flash Is INSANELY GOOD! Fast, Cheap, Powerful! (Fully Tested)

NOVO DeepSeek V4.1 Flash é MUITO MELHOR do que você pensa

NOVO DeepSeek V4.1 Flash é MUITO MELHOR do que você pensa

Deepseek V4.1 Flash (Fully Tested): 200 TPS & Beats Astra!? (+New Architecture Overview)

Deepseek V4.1 Flash (Fully Tested): 200 TPS & Beats Astra!? (+New Architecture Overview)