Skip to content

Commit e8deedd

Browse files
fix: update DeepSeek pricing to new unified rates effective Sept 5, 2025 (#7687)
- Updated deepseek-chat pricing: $0.56 input (cache miss), $0.07 (cache hit), $1.68 output - Updated deepseek-reasoner pricing: same unified rates as deepseek-chat - Both models now have identical pricing as per DeepSeek announcement - Pricing takes effect at 16:00 UTC, Sept 5th, 2025 Fixes #7685 Co-authored-by: Roo Code <[email protected]>
1 parent 8864651 commit e8deedd

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

packages/types/src/providers/deepseek.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ export const deepSeekModels = {
1111
contextWindow: 128_000,
1212
supportsImages: false,
1313
supportsPromptCache: true,
14-
inputPrice: 0.27, // $0.27 per million tokens (cache miss)
15-
outputPrice: 1.1, // $1.10 per million tokens
16-
cacheWritesPrice: 0.27, // $0.27 per million tokens (cache miss)
17-
cacheReadsPrice: 0.07, // $0.07 per million tokens (cache hit).
14+
inputPrice: 0.56, // $0.56 per million tokens (cache miss) - Updated Sept 5, 2025
15+
outputPrice: 1.68, // $1.68 per million tokens - Updated Sept 5, 2025
16+
cacheWritesPrice: 0.56, // $0.56 per million tokens (cache miss) - Updated Sept 5, 2025
17+
cacheReadsPrice: 0.07, // $0.07 per million tokens (cache hit) - Updated Sept 5, 2025
1818
description: `DeepSeek-V3 achieves a significant breakthrough in inference speed over previous models. It tops the leaderboard among open-source models and rivals the most advanced closed-source models globally.`,
1919
},
2020
"deepseek-reasoner": {
2121
maxTokens: 65536, // 64K max output for reasoning mode
2222
contextWindow: 128_000,
2323
supportsImages: false,
2424
supportsPromptCache: true,
25-
inputPrice: 0.55, // $0.55 per million tokens (cache miss)
26-
outputPrice: 2.19, // $2.19 per million tokens
27-
cacheWritesPrice: 0.55, // $0.55 per million tokens (cache miss)
28-
cacheReadsPrice: 0.14, // $0.14 per million tokens (cache hit)
25+
inputPrice: 0.56, // $0.56 per million tokens (cache miss) - Updated Sept 5, 2025
26+
outputPrice: 1.68, // $1.68 per million tokens - Updated Sept 5, 2025
27+
cacheWritesPrice: 0.56, // $0.56 per million tokens (cache miss) - Updated Sept 5, 2025
28+
cacheReadsPrice: 0.07, // $0.07 per million tokens (cache hit) - Updated Sept 5, 2025
2929
description: `DeepSeek-R1 achieves performance comparable to OpenAI-o1 across math, code, and reasoning tasks. Supports Chain of Thought reasoning with up to 64K output tokens.`,
3030
},
3131
} as const satisfies Record<string, ModelInfo>

0 commit comments

Comments
 (0)