-
Notifications
You must be signed in to change notification settings - Fork 2.6k
fix: update magistral-medium-latest capabilities to reflect current Mistral documentation #8363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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, | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P3: Confirm whether Magistral Medium 2.0 supports prompt cache. If yes, flipping supportsPromptCache to true would enable cache-aware UX and cost accounting elsewhere. |
||
| inputPrice: 2.0, | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: Prices appear unchanged (inputPrice: 2.0, outputPrice: 5.0). If Mistral updated pricing for Magistral Medium 2.0, consider aligning these with the latest docs to avoid cost estimate mismatches. |
||
| outputPrice: 5.0, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P3: Consider adding a brief comment with the source URL and "last verified" date for these capabilities. This helps keep the values aligned with Mistral's docs during future updates.