Baseten、MIT ライセンスの DeepSeek V4 Pro を API で提供開始
本文の状態
日本語全文を表示中
詳細モードで約5分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
Baseten Engineering
DeepSeek AI が1.7Tパラメータの最先端オープンモデル「V4 Pro 0813」をMITライセンスで公開し、Baseten がゼロデータ保持の API を即日提供した。
Continue in AI NEW LAB
このニュースを、実務の判断につなげる
AI NEW LABで、試したことや先に確認したい条件を共有できます。まずはログインなしで読めます。
AI NEW LABで論点を見るAI深層分析を開く2026年8月14日 09:52
AI深層分析
キーポイント
最先端モデルのオープンソース化とライセンス
DeepSeek AI は1.7Tパラメータを持つ「V4 Pro 0813」をMITライセンスで公開し、企業は制限なく実行やファインチューニングが可能となった。
Baseten による即日 API 提供とデータプライバシー
Baseten は同日中に同モデルの Model API を提供開始し、デフォルトでユーザーデータの保持を行わない仕組みを採用した。
新コードハッチングによるベンチマーク評価
DeepSeek AI が公開した新しいオープンソースのコーディングハッチングを用いて品質ベンチマークが実施され、標準的なループより高い抽象レベルで動作するプラグインファーストのアプローチが特徴である。
GLM-5.2 と並ぶ品質と低コスト
Artificial Analysis の総合知能指数において GLM-5.2 と同等の品質を維持しつつ、タスクあたりのコストはより低い水準にある。
アーキテクチャの継承と推論設定の最適化
新モデルは既存のベースアーキテクチャを引き継ぐため、過去の推論ワークを活用できる。しかし、入力・出力シーケンス長の増加やキャッシュヒット率の上昇などトラフィックパターンの変化に対応するため、並列処理やKVキャッシュ割り当てなどの設定を再調整している。
重要な引用
This 1.7T-parameter frontier open model is MIT-licensed, meaning that every enterprise has the opportunity to run and fine-tune the model without restrictions
DeepSeek V4 Pro 0813 sits alongside GLM-5.2 on quality ... though at a lower cost per task.
Benchmarks were run using DeepSeek's new coding harness, which was open-sourced alongside the new models as a developer preview.
This in turn affects the optimal configs across the inference stack, from parallelism to KV cache allocation to prefill-decode worker ratio.
編集コメントを表示
編集コメント
1.7Tパラメータ規模のモデルが MIT ライセンスで公開されたことは、オープンソースコミュニティにとって極めて大きな前進である。特にデータ保持ポリシーをデフォルトで「ゼロ」とした点は、企業利用における信頼性の向上に直結する重要な要素と言える。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
本日、DeepSeek V4 Pro 0813 の重みがオープンソース化されました。このパラメータ数 1.7T の最先端オープンモデルは MIT ライセンスの下にあり、すべての企業が制限なくモデルを実行・ファインチューニングする機会を得られます。また、Baseten では Model API として今日から利用可能で、デフォルトではデータ保持が行われません。

DeepSeek AI は、DeepSeek V4 Pro 0813 のファーストパーティ品質ベンチマークを発表しました。
これらのベンチマークは、新しいモデルとともに開発者プレビューとしてオープンソース化された DeepSeek 独自のコーディングハネスを用いて実行されました。Alex Ker による 新ハネスの解説 では、標準的なコーディングループよりも高いレベルの抽象度で動作するためのプラグインファーストのアプローチが明らかになっています。
DeepSeek V4 Pro 0813 は、Artificial Analysis の総合知能指数において GLM-5.2 と並ぶ品質を誇る新しいオープンフロンティアモデルですが、タスクあたりのコストはより低く設定されています。
本稿では、このモデルの生産環境対応 Day Zero API を構築するために取り組んだ推論エンジニアリングの取り組みについてまとめます。
プレビューから本番へ
今回のリリースは、4 月に公開された DeepSeek V4 Pro Preview モデルのアップデート版です。コード生成とエージェント機能のための追加学習(ポストトレーニング)が施されています。新しいモデルはベンチマーク結果だけでなく、実際のユースケースでも大幅な性能向上を示していますが、その基盤となるアーキテクチャ自体は変更されていません。これは近年ますます一般的になっており、モデル品質の向上は主にポストトレーニングによって達成されるようになっています。
既存のアーキテクチャをベースに新モデルを提供する利点は、推論設定において先行モデルの研究結果を十分に活用できる点にあります。
DeepSeek の場合、Baseten Inference Stack 内の独自推論エンジンでネイティブの MXFP4 重みを実行しており、当初はプレビューモデルをサポートするために構築した機能の多くを活用しています。しかし、単に重みを差し替えてリリースするだけでは不十分です。
まず、4 月以来のトラフィックパターンには大きな変化が生じています。入力と出力のシーケンス長が長く、キャッシュヒット率も高く、今日のエージェント主導のコーディング環境ではトピックがより焦点を絞ったものになっています。これにより、並列処理から KV キャッシュの割り当て、プリフェッチ・デコードワーカーの比率に至るまで、推論スタック全体の最適設定に影響を与えています。私たちは、低レイテンシと高スループットの効率的なバランスを実現するために、推論スタックのすべてのパラメータを調整しました。
さらに、DeepSeek V4 Pro 0813 では、過去 4 ヶ月間のハッチング(harness)の期待値や API 仕様の進化に合わせて、フロントエンドとチャットテンプレートにいくつかの変更が加えられています。Hugging Face リポジトリの ドキュメント でこの変更について説明されており、従来の Jinja 形式のチャットテンプレートに代わり、入力エンコーディングと出力パーシングを実演するスクリプトが格納されたフォルダが採用されています。ツール呼び出しやその他の構造化出力において高品質な結果を得るためには、この仕様に準拠することが不可欠です。
最後に、新モデルは DSpark スペキュレーター(予測器)を搭載しているため、プレビュー版よりもわずかにパラメータ数が増えています。これは根本的なアーキテクチャの変更ではありませんが、より高い TPS(1 秒あたりの処理トークン数)を実現するスペキュレーション・ディコーディングのサポートを可能にします。ネイティブなスペキュレーターは、コード生成やエージェントタスクなど、モデルの最も一般的なユースケースには十分機能しますが、特定のデプロイ環境向けには、その環境での使用状況を代表するより狭いデータセットを用いて新しいスペキュレーターを訓練することが望ましいでしょう。
DeepSeek V4 Pro 0813 の本番環境推論
DeepSeek V4 Pro 0813 は、Baseten Model APIs で本日利用可能になりました。また、専用デプロイメントでもご利用いただけます。このモデルは、クローズドソースの競合他社モデルよりも低価格で最先端のパフォーマンスを提供します:
- 入力トークン(キャッシュミス): $1.32/m
- 入力トークン(キャッシュヒット): $0.132/m
- 出力トークン: $3.96/m
今日から、API を 1 回呼び出すだけで利用を開始できます。
1import os
2from openai import OpenAI
3
4client = OpenAI(
5 api_key=os.environ["BASETEN_API_KEY"],
6 base_url="https://inference.baseten.co/v1")
7
8response = client.chat.completions.create(
9 model="deepseek-ai/DeepSeek-V4-Pro-0813",
10 messages=[
11 {"role": "system", "content": "You are a helpful assistant"},
12 {"role": "user", "content": "Write Hello World in Python"},
13 ],
14 stream=True,
15 reasoning_effort="low",
16 extra_body={"thinking": {"type": "enabled"}}
17)
18
19print(response.choices[0].message.content)原文を表示
DeepSeek V4 Pro 0813 weights were open-sourced today. This 1.7T-parameter frontier open model is MIT-licensed, meaning that every enterprise has the opportunity to run and fine-tune the model without restrictions, and is available today as a Model API on Baseten with zero data retention by default.
✕

DeepSeek AI published first-party quality benchmarks for DeepSeek V4 Pro 0813
Benchmarks were run using DeepSeek’s new coding harness, which was open-sourced alongside the new models as a developer preview. Alex Ker’s breakdown of the new harness reveals its plugin-first approach to operate at a higher level of abstraction than a standard coding loop.
DeepSeek V4 Pro 0813 is a new open frontier model that sits alongside GLM-5.2 on quality on Artificial Analysis’ all-around intelligence index, though at a lower cost per task.
This post summarizes the inference engineering work we did on DeepSeek V4 Pro 0813 to create a production-ready day zero API for the model.
From preview to pro
This release is an update of the DeepSeek V4 Pro Preview model, released in April, with additional post-training for code generation and agentic behavior. While the new model performs substantially better on both benchmarks and real-world use, those gains are achieved on the same base architecture. This is increasingly common – more and more gains in model quality are coming from post-training.
The advantage of serving a new model with a familiar base architecture is that the inference setup can be heavily informed by work on the earlier model.
For DeepSeek, we run the native MXFP4 weights on our proprietary inference engine within the Baseten Inference Stack using many of the features we originally built to support the preview model. However, it’s not quite as simple as swapping out the weights and shipping.
First off, traffic patterns have evolved materially since April. The input and output sequence lengths are longer, cache hit rates are higher, and topics are more focused in today’s agentic coding landscape. This in turn affects the optimal configs across the inference stack, from parallelism to KV cache allocation to prefill-decode worker ratio. We configured every knob of the inference stack for an efficient balance of low latency and high throughput.
Additionally, DeepSeek V4 Pro 0813 ships with some changes to the frontend and chat template to match the last four months of evolution in harness expectations and API specs. The documentation in the Hugging Face repository explains this change, which replaces a traditional Jinja-format chat template with a folder of scripts demonstrating input encoding and output parsing. Adherence to this spec is essential to high quality across tool calls and other structured outputs.
Finally, the new model has slightly more parameters than the preview model as it ships with a DSpark speculator. While this doesn’t change the underlying architecture, it gives us the opportunity to support speculative decoding for higher TPS. While the native speculator is good for the most common use cases for the model – coding and agentic tasks – we would want to train a new speculator for most dedicated deployments on a narrower dataset that is representative of expected usage for that specific deployment.
Production inference for DeepSeek V4 Pro 0813
DeepSeek V4 Pro 0813 is available today on Baseten Model APIs, as well as on dedicated deployments. DeepSeek V4 Pro 0813 brings frontier performance at lower prices than closed models:
- Input tokens (cache miss): $1.32/m
- Input tokens (cache hit): $0.132/m
- Output tokens: $3.96/m
You can get started today with a single API call:
1import os
2from openai import OpenAI
3
4client = OpenAI(
5 api_key=os.environ["BASETEN_API_KEY"],
6 base_url="https://inference.baseten.co/v1")
7
8response = client.chat.completions.create(
9 model="deepseek-ai/DeepSeek-V4-Pro-0813",
10 messages=[
11 {"role": "system", "content": "You are a helpful assistant"},
12 {"role": "user", "content": "Write Hello World in Python"},
13 ],
14 stream=True,
15 reasoning_effort="low",
16 extra_body={"thinking": {"type": "enabled"}}
17)
18
19print(response.choices[0].message.content)関連記事
News to Guide
ニュースの次に確認する
発表内容を、現在の料金や仕様と照らし合わせられる関連ガイドです。
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み