You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cacheReadsPrice: 0.028,// $0.028 per million tokens (cache hit) - Updated Dec 9, 2025
33
33
description: `DeepSeek-V3.2 (Thinking Mode) achieves performance comparable to OpenAI-o1 across math, code, and reasoning tasks. Supports Chain of Thought reasoning with up to 8K output tokens. Supports JSON output, tool calls, and chat prefix completion (beta).`,
34
34
},
35
+
"deepseek-v4-pro": {
36
+
maxTokens: 384_000,// 384K max output
37
+
contextWindow: 1_000_000,// 1M context
38
+
supportsImages: true,
39
+
supportsPromptCache: true,
40
+
preserveReasoning: true,
41
+
inputPrice: 2.0,// $2.00 per million tokens (cache miss)
42
+
outputPrice: 8.0,// $8.00 per million tokens
43
+
cacheWritesPrice: 2.0,// $2.00 per million tokens (cache miss)
44
+
cacheReadsPrice: 0.5,// $0.50 per million tokens (cache hit)
45
+
description: `DeepSeek-V4-Pro is the flagship reasoning model with 1M context window and 384K max output. Features enhanced thinking mode, vision support, tool calls, and JSON output. Best suited for complex reasoning, code generation, and multi-step tasks.`,
46
+
},
47
+
"deepseek-v4-flash": {
48
+
maxTokens: 384_000,// 384K max output
49
+
contextWindow: 1_000_000,// 1M context
50
+
supportsImages: true,
51
+
supportsPromptCache: true,
52
+
preserveReasoning: true,
53
+
inputPrice: 1.0,// $1.00 per million tokens (cache miss)
54
+
outputPrice: 4.0,// $4.00 per million tokens
55
+
cacheWritesPrice: 1.0,// $1.00 per million tokens (cache miss)
56
+
cacheReadsPrice: 0.25,// $0.25 per million tokens (cache hit)
57
+
description: `DeepSeek-V4-Flash is a fast, cost-efficient reasoning model with 1M context window and 384K max output. Features thinking mode, vision support, tool calls, and JSON output. Optimized for speed while maintaining strong reasoning capabilities.`,
0 commit comments