Back to list
dev_to 2026年4月25日

DeepSeek V4 Pro が登場——AI エージェントに何が変化したか

DeepSeek V4 Pro Just Dropped — Here's What Changed for AI Agents

Translated: 2026/4/25 3:39:13
deepseek-v4-proai-agentsllm-architecturemoemodelsapi-reference

Japanese Translation

V4 Pro は 2026 年 4 月 24 日にリリースされ、現在もプロダクション環境の AI エージェントで稼働中です。パラメータ総数:1.6T(MoE)、有効パラメータ数:49B。コンテキストウィンドウ:1M トークン(検証済み)。モード:Think / Non-Think 二重モード。ライセンス:MIT。料金:入力 1M トークンあたり $1.74、出力 1M トークンあたり $3.48。クライアント:OpenAI(base_url="https://integrate.api.nvidia.com/v1", api_key="")。 コードサンプル:response = client.chat.completions.create(model="deepseek-ai/deepseek-v4-pro", messages=[...]) long context tasks: 現在では大規模に実行可能(会話履歴全体を含む)。thinking mode: 8-15 秒、V3 に比べマルチステップ計画が大幅に改善。non-thinking mode: 約 2 秒、コンテンツパイプラインに適速。function calling: V3.2 より信頼性向上。 モデルの入力と出力料金:DeepSeek V4 Pro は $1.74/$3.48、Claude Sonnet 4.6 は $3.00/$15.00、GPT-4o は $2.50/$10.00。エジャントワークロード(大量の入力と構造化された出力)にとっては、V4 Pro が新しいベストプラクティスです。V4 に適応したエージェント自動化ガイドは以下の通り更新済み:https://yanmiay.gumroad.com

Original Content

V4 Pro launched April 24, 2026. Been running it on production agents since. Total params: 1.6T (MoE) Active params: 49B Context: 1M tokens (verified) Modes: Think / Non-Think dual License: MIT Pricing: $1.74/1M input, $3.48/1M output client = OpenAI( base_url="https://integrate.api.nvidia.com/v1", api_key="" ) response = client.chat.completions.create( model="deepseek-ai/deepseek-v4-pro", messages=[...] ) Long context tasks: Finally viable at scale (full conversation logs) Thinking mode: 8-15s, much better multi-step planning vs V3 Non-thinking mode: ~2s, fast enough for content pipelines Function calling: More reliable than V3.2 Model Input Output DeepSeek V4 Pro $1.74 $3.48 Claude Sonnet 4.6 $3.00 $15.00 GPT-4o $2.50 $10.00 For agent workloads (lots of input, structured output), V4 Pro is the new sweet spot. My agent automation guides updated for V4: https://yanmiay.gumroad.com