vtcode-config 0.116.4

Config loader components shared across VT Code and downstream adopters
Documentation
pub const DEFAULT_MODEL: &str = MISTRAL_LARGE_3;
pub const SUPPORTED_MODELS: &[&str] = &[
    MISTRAL_LARGE_3,
    MISTRAL_MEDIUM_3_5,
    MISTRAL_SMALL_4,
    MISTRAL_MEDIUM_3_1,
    CODESTRAL,
    MINISTRAL_3_14B,
    MINISTRAL_3_8B,
    MINISTRAL_3_3B,
];

pub const MISTRAL_LARGE_3: &str = "mistral-large-2512";
pub const MISTRAL_MEDIUM_3_5: &str = "mistral-medium-3-5";
pub const MISTRAL_SMALL_4: &str = "mistral-small-2603";
pub const MISTRAL_MEDIUM_3_1: &str = "mistral-medium-2508";
pub const CODESTRAL: &str = "codestral-2508";
pub const MINISTRAL_3_14B: &str = "ministral-3-14b-2512";
pub const MINISTRAL_3_8B: &str = "ministral-3-8b-2512";
pub const MINISTRAL_3_3B: &str = "ministral-3-3b-2512";