mixtape_core/models/mistral.rs
1//! Mistral AI models
2
3use super::define_model;
4
5define_model!(
6 /// Mistral Large 3 - Flagship 675B MoE model with 41B active parameters
7 MistralLarge3 {
8 display_name: "Mistral Large 3",
9 bedrock_id: "mistral.mistral-large-3-675b-instruct",
10 context_tokens: 256_000,
11 output_tokens: 8_192
12 }
13);
14
15define_model!(
16 /// Magistral Small - Efficient 24B reasoning model with vision
17 MagistralSmall {
18 display_name: "Magistral Small",
19 bedrock_id: "mistral.magistral-small-2509",
20 context_tokens: 128_000,
21 output_tokens: 8_192
22 }
23);