vtcode-config 0.128.4

Config loader components shared across VT Code and downstream adopters
1
2
3
4
5
6
7
8
pub const DEFAULT_MODEL: &str = GPT_OSS_20B;
pub const SUPPORTED_MODELS: &[&str] = &[GEMMA_4_26B_A4B, GEMMA_4_E4B, GPT_OSS_20B, STEP_3_5_FLASH];
pub const REASONING_MODELS: &[&str] = &[GPT_OSS_20B];

pub const GEMMA_4_26B_A4B: &str = "gemma-4-26b-a4b";
pub const GEMMA_4_E4B: &str = "gemma-4-e4b";
pub const GPT_OSS_20B: &str = "gpt-oss-20b";
pub const STEP_3_5_FLASH: &str = "step-3.5-flash";