fix: correct Mistral codestral-latest context window from 256k to 131k

Fixes #9344 - The codestral-latest model had an incorrect context window
of 256,000 tokens when it should be 131,000 according to official Mistral
documentation.
This commit is contained in:
Roo Code 2025-11-18 09:10:20 +00:00
parent f7c2e8d164
commit 7cac64d998

View file

@ -31,8 +31,8 @@ export const mistralModels = {
outputPrice: 2.0,
},
"codestral-latest": {
maxTokens: 256_000,
contextWindow: 256_000,
maxTokens: 131_000,
contextWindow: 131_000,
supportsImages: false,
supportsPromptCache: false,
inputPrice: 0.3,