vtcode_config/constants/models/copilot.rs
1pub const AUTO: &str = "copilot-auto";
2pub const GPT_5_2_CODEX: &str = "copilot-gpt-5.2-codex";
3pub const GPT_5_1_CODEX_MAX: &str = "copilot-gpt-5.1-codex-max";
4pub const GPT_5_4: &str = "copilot-gpt-5.4";
5pub const GPT_5_4_MINI: &str = "copilot-gpt-5.4-mini";
6pub const CLAUDE_SONNET_4_6: &str = "copilot-claude-sonnet-4.6";
7
8pub const DEFAULT_MODEL: &str = AUTO;
9pub const SUPPORTED_MODELS: &[&str] = &[AUTO];