Skip to main content

vtcode_config/constants/models/
mimo.rs

1pub const DEFAULT_MODEL: &str = MIMO_V2_5_PRO;
2pub const SUPPORTED_MODELS: &[&str] = &[
3    MIMO_V2_5_PRO,
4    MIMO_V2_5,
5    MIMO_V2_PRO,
6    MIMO_V2_OMNI,
7    MIMO_V2_FLASH,
8];
9
10pub const MIMO_V2_5_PRO: &str = "mimo-v2.5-pro";
11pub const MIMO_V2_5: &str = "mimo-v2.5";
12pub const MIMO_V2_PRO: &str = "mimo-v2-pro";
13pub const MIMO_V2_OMNI: &str = "mimo-v2-omni";
14pub const MIMO_V2_FLASH: &str = "mimo-v2-flash";