Ver código fonte

Apply suggestions from code review

Christiaan Arnoldus 3 meses atrás
pai
commit
892890fa83
1 arquivos alterados com 4 adições e 0 exclusões
  1. 4 0
      packages/types/src/providers/deepseek.ts

+ 4 - 0
packages/types/src/providers/deepseek.ts

@@ -11,10 +11,12 @@ export const deepSeekModels = {
 		contextWindow: 128_000,
 		supportsImages: false,
 		supportsPromptCache: true,
+		// kilocode_change start pricing updated
 		inputPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
 		outputPrice: 0.42, // $0.42 per million tokens - Updated Oct 29, 2025
 		cacheWritesPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
 		cacheReadsPrice: 0.028, // $0.028 per million tokens (cache hit) - Updated Oct 29, 2025
+		// kilocode_change end
 		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.`,
 	},
 	"deepseek-reasoner": {
@@ -22,10 +24,12 @@ export const deepSeekModels = {
 		contextWindow: 128_000,
 		supportsImages: false,
 		supportsPromptCache: true,
+		// kilocode_change start pricing updated
 		inputPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
 		outputPrice: 0.42, // $0.42 per million tokens - Updated Oct 29, 2025
 		cacheWritesPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
 		cacheReadsPrice: 0.028, // $0.028 per million tokens (cache hit) - Updated Oct 29, 2025
+		// kilocode_change end
 		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.`,
 	},
 } as const satisfies Record<string, ModelInfo>