From 7bc02926b474e8ba03d818ac7d0bc119deb213bc Mon Sep 17 00:00:00 2001 From: Minhao-Zhang <41777700+Minhao-Zhang@users.noreply.github.com> Date: Thu, 27 Feb 2025 11:05:19 +0800 Subject: [PATCH] Fix Official DeepSeek-V3 cost (#1944) * update the api price for deepseek (discount period is over) * update the api price for deepseek (discount period is over) --- src/shared/api.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/shared/api.ts b/src/shared/api.ts index 7624d115aa..6517f37006 100644 --- a/src/shared/api.ts +++ b/src/shared/api.ts @@ -461,9 +461,9 @@ export const deepSeekModels = { supportsImages: false, 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 inputPrice: 0, // technically there is no input price, it's all either a cache hit or miss (ApiOptions will not show this) - outputPrice: 0.28, - cacheWritesPrice: 0.14, - cacheReadsPrice: 0.014, + outputPrice: 1.1, + cacheWritesPrice: 0.27, + cacheReadsPrice: 0.07, }, "deepseek-reasoner": { maxTokens: 8_000,