Skip to content

Commit 892890f

Browse files
authored
Apply suggestions from code review
1 parent 9c7b99c commit 892890f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/types/src/providers/deepseek.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,25 @@ export const deepSeekModels = {
1111
contextWindow: 128_000,
1212
supportsImages: false,
1313
supportsPromptCache: true,
14+
// kilocode_change start pricing updated
1415
inputPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
1516
outputPrice: 0.42, // $0.42 per million tokens - Updated Oct 29, 2025
1617
cacheWritesPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
1718
cacheReadsPrice: 0.028, // $0.028 per million tokens (cache hit) - Updated Oct 29, 2025
19+
// kilocode_change end
1820
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.`,
1921
},
2022
"deepseek-reasoner": {
2123
maxTokens: 65536, // 64K max output for reasoning mode
2224
contextWindow: 128_000,
2325
supportsImages: false,
2426
supportsPromptCache: true,
27+
// kilocode_change start pricing updated
2528
inputPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
2629
outputPrice: 0.42, // $0.42 per million tokens - Updated Oct 29, 2025
2730
cacheWritesPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
2831
cacheReadsPrice: 0.028, // $0.028 per million tokens (cache hit) - Updated Oct 29, 2025
32+
// kilocode_change end
2933
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.`,
3034
},
3135
} as const satisfies Record<string, ModelInfo>

0 commit comments

Comments
 (0)