Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/types/src/providers/mistral.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Copy link
Contributor Author

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.

supportsPromptCache: false,
Copy link
Contributor Author

Choose a reason for hiding this comment

The 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,
Copy link
Contributor Author

Choose a reason for hiding this comment

The 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,
Expand Down
Loading