From 3caa4111e18c42c016352e9138e9f1214e8fdc99 Mon Sep 17 00:00:00 2001 From: Patrick Wozniak Date: Thu, 28 May 2026 22:05:08 +0200 Subject: [PATCH] fix(models): correct DeepSeek V4 Pro discount as permanent The Command Code docs state the 4x usage deal for DeepSeek V4 Pro is permanent with no expiry date, not time-limited through May 31, 2026. --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 77027df..e5cb90c 100644 --- a/index.ts +++ b/index.ts @@ -49,7 +49,7 @@ const MODEL_COSTS: Record = { "gpt-5.4-mini": { input: 0.75, output: 4.5, cacheRead: 0.075, cacheWrite: 0 }, "google/gemini-3.5-flash": { input: 1.5, output: 9, cacheRead: 0.15, cacheWrite: 0 }, "google/gemini-3.1-flash-lite": { input: 0.25, output: 1.5, cacheRead: 0.03, cacheWrite: 0 }, - // 4× usage deal: 75% off through May 31, 2026 + // 4× usage deal: 75% off (permanent, no expiry) "deepseek/deepseek-v4-pro": { input: 0.435, output: 0.87, cacheRead: 0.003625, cacheWrite: 0 }, "deepseek/deepseek-v4-flash": { input: 0.14, output: 0.28, cacheRead: 0.01, cacheWrite: 0 }, "moonshotai/Kimi-K2.6": { input: 0.95, output: 4, cacheRead: 0.16, cacheWrite: 0 },