mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: update magistral-medium-latest capabilities to 128k context and image support
- Updated maxTokens from 41,000 to 128,000 - Updated contextWindow from 41,000 to 128,000 - Enabled image support (supportsImages: true) - Reflects current Magistral Medium 2.0 capabilities per Mistral documentation Fixes #8362
This commit is contained in:
parent
ded23b72b7
commit
fd234ff04e
1 changed files with 3 additions and 3 deletions
|
|
@ -7,9 +7,9 @@ export const mistralDefaultModelId: MistralModelId = "codestral-latest"
|
|||
|
||||
export const mistralModels = {
|
||||
"magistral-medium-latest": {
|
||||
maxTokens: 41_000,
|
||||
contextWindow: 41_000,
|
||||
supportsImages: false,
|
||||
maxTokens: 128_000,
|
||||
contextWindow: 128_000,
|
||||
supportsImages: true,
|
||||
supportsPromptCache: false,
|
||||
inputPrice: 2.0,
|
||||
outputPrice: 5.0,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue