8 lines
362 B
Rust
8 lines
362 B
Rust
|
|
pub const API_URL_BASE: &str = "https://api.mistral.ai/v1";
|
||
|
|
|
||
|
|
pub const OPEN_MISTRAL_7B: &str = "open-mistral-7b";
|
||
|
|
pub const OPEN_MISTRAL_8X7B: &str = "open-mixtral-8x7b";
|
||
|
|
pub const MISTRAL_SMALL_LATEST: &str = "mistral-small-latest";
|
||
|
|
pub const MISTRAL_MEDIUM_LATEST: &str = "mistral-medium-latest";
|
||
|
|
pub const MISTRAL_LARGE_LATEST: &str = "mistral-large-latest";
|