Skip to content

Commit 2f4a129

Browse files
authored
Update deepseek-chat context window size 64k -> 128k
deepseek-chat points at DeepSeek-V3 which has context window 128k, see https://github.com/deepseek-ai/DeepSeek-V3 Though the change is not yet reflected in DeepSeek API docs, where it erroneously shows 64k
1 parent 7409c48 commit 2f4a129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ export const deepSeekDefaultModelId: DeepSeekModelId = "deepseek-chat"
799799
export const deepSeekModels = {
800800
"deepseek-chat": {
801801
maxTokens: 8192,
802-
contextWindow: 64_000,
802+
contextWindow: 128_000,
803803
supportsImages: false,
804804
supportsPromptCache: true,
805805
inputPrice: 0.27, // $0.27 per million tokens (cache miss)

0 commit comments

Comments
 (0)