Skip to content

Commit 7bc0292

Browse files
authored
Fix Official DeepSeek-V3 cost (RooCodeInc#1944)
* update the api price for deepseek (discount period is over) * update the api price for deepseek (discount period is over)
1 parent 5e65ea0 commit 7bc0292

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/shared/api.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -461,9 +461,9 @@ export const deepSeekModels = {
461461
supportsImages: false,
462462
supportsPromptCache: true, // supports context caching, but not in the way anthropic does it (deepseek reports input tokens and reads/writes in the same usage report) FIXME: we need to show users cache stats how deepseek does it
463463
inputPrice: 0, // technically there is no input price, it's all either a cache hit or miss (ApiOptions will not show this)
464-
outputPrice: 0.28,
465-
cacheWritesPrice: 0.14,
466-
cacheReadsPrice: 0.014,
464+
outputPrice: 1.1,
465+
cacheWritesPrice: 0.27,
466+
cacheReadsPrice: 0.07,
467467
},
468468
"deepseek-reasoner": {
469469
maxTokens: 8_000,

0 commit comments

Comments
 (0)