vtcode-config 0.161.1

Config loader components shared across VT Code and downstream adopters
1
2
3
4
5
6
7
pub const DEFAULT_MODEL: &str = GPT_OSS_20B;
pub const SUPPORTED_MODELS: &[&str] = &[GEMMA_4_26B_A4B, GEMMA_4_E4B, GPT_OSS_20B];
pub(crate) 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";