Skip to content

Commit 7977746

Browse files
authored
Merge branch 'main' into chinese-docs-translation-sync
2 parents a853340 + bbef543 commit 7977746

File tree

26 files changed

+70
-9
lines changed

26 files changed

+70
-9
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"kilo-code": patch
3+
---
4+
5+
Update pricing for DeepSeek V3.2

.changeset/lemon-otters-type.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"kilo-code": patch
3+
---
4+
5+
Improved messaging when VS Code LM is unavailable

packages/types/src/providers/deepseek.ts

Lines changed: 12 additions & 8 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-
inputPrice: 0.56, // $0.56 per million tokens (cache miss) - Updated Sept 5, 2025
15-
outputPrice: 1.68, // $1.68 per million tokens - Updated Sept 5, 2025
16-
cacheWritesPrice: 0.56, // $0.56 per million tokens (cache miss) - Updated Sept 5, 2025
17-
cacheReadsPrice: 0.07, // $0.07 per million tokens (cache hit) - Updated Sept 5, 2025
14+
// kilocode_change start pricing updated
15+
inputPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
16+
outputPrice: 0.42, // $0.42 per million tokens - Updated Oct 29, 2025
17+
cacheWritesPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
18+
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,
25-
inputPrice: 0.56, // $0.56 per million tokens (cache miss) - Updated Sept 5, 2025
26-
outputPrice: 1.68, // $1.68 per million tokens - Updated Sept 5, 2025
27-
cacheWritesPrice: 0.56, // $0.56 per million tokens (cache miss) - Updated Sept 5, 2025
28-
cacheReadsPrice: 0.07, // $0.07 per million tokens (cache hit) - Updated Sept 5, 2025
27+
// kilocode_change start pricing updated
28+
inputPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
29+
outputPrice: 0.42, // $0.42 per million tokens - Updated Oct 29, 2025
30+
cacheWritesPrice: 0.28, // $0.28 per million tokens (cache miss) - Updated Oct 29, 2025
31+
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>

webview-ui/src/components/settings/providers/VSCodeLM.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,12 @@ export const VSCodeLM = ({ apiConfiguration, setApiConfigurationField }: VSCodeL
7676
</SelectContent>
7777
</Select>
7878
) : (
79+
/* kilocode_change start */
7980
<div className="text-sm text-vscode-descriptionForeground">
80-
{t("settings:providers.vscodeLmDescription")}
81+
<p>{t("settings:providers.vscodeLmUnavailable")}</p>
82+
<p className="mt-2">{t("settings:providers.vscodeLmUnavailableInstructions")}</p>
8183
</div>
84+
/* kilocode_change end */
8285
)}
8386
</div>
8487
<div className="text-sm text-vscode-errorForeground">{t("settings:providers.vscodeLmWarning")}</div>

webview-ui/src/i18n/locales/ar/settings.json

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/ca/settings.json

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/cs/settings.json

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/de/settings.json

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webview-ui/src/i18n/locales/en/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,8 @@
251251
"noProviderMatchFound": "No providers found",
252252
"noMatchFound": "No matching profiles found",
253253
"vscodeLmDescription": " The VS Code Language Model API allows you to run models provided by other VS Code extensions (including but not limited to GitHub Copilot). The easiest way to get started is to install the Copilot and Copilot Chat extensions from the VS Code Marketplace.",
254+
"vscodeLmUnavailable": "VS Code Language Model support is only available on Visual Studio Code. Forks such as VSCodium and others may not work. Further, this capability is not available in JetBrains tools.",
255+
"vscodeLmUnavailableInstructions": "Ensure you are using a supported tool and that VS Code Chat is installed and enabled",
254256
"awsCustomArnUse": "Enter a valid Amazon Bedrock ARN for the model you want to use. Format examples:",
255257
"awsCustomArnDesc": "Make sure the region in the ARN matches your selected AWS Region above.",
256258
"openRouterApiKey": "OpenRouter API Key",

webview-ui/src/i18n/locales/es/settings.json

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)