mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
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:
parent
f7c2e8d164
commit
7cac64d998
1 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue