Skip to content

2025-12-01,DeepSeek V3.2 正式版发布。核心升级:DSA 稀疏注意力机制让推理能力在公开基准上接近 GPT-5 水平;首次实现"将思考融入工具使用",思考模式下可多轮调用工具后给出答案;新增 Claude Code 支持。

DeepSeek V3.2 正式版发布(2025-12-01)

核心更新

  • 采用 DSA 稀疏注意力机制,推理能力在公开基准测试中接近 GPT-5 水平
  • 首次实现思考模式下的工具调用:模型可多轮"思考 + 工具调用"后给出更准确的答案
  • 同步发布 DeepSeek-V3.2-Speciale(仅供研究,具备顶级数学竞赛(IMO、IOI)水平,不支持工具调用)
  • 新增 Anthropic API 格式支持,Claude Code 可直接接入
  • 覆盖网页端、APP 和 API

思考模式 + 工具调用

V3.2 之前,思考模式(deepseek-reasoner)不支持工具调用。V3.2 正式版打通了这一限制:

typescript
const response = await client.chat.completions.create({
  model: "deepseek-v4-pro",  // 或使用当时的 deepseek-chat
  thinking: { type: "enabled" },
  tools: [/* 你的工具定义 */],
  messages: [{ role: "user", content: "帮我分析这个代码仓库的主要问题" }],
});
// 模型会先思考,调用工具,再思考,最终给出答案

相关链接