vtcode_config/constants/
reasoning.rs1pub const LOW: &str = "low";
2pub const MEDIUM: &str = "medium";
3pub const HIGH: &str = "high";
4pub const ALLOWED_LEVELS: &[&str] = &["minimal", LOW, MEDIUM, HIGH, "xhigh"];
5pub const LABEL_LOW: &str = "Low";
6pub const LABEL_MEDIUM: &str = "Medium";
7pub const LABEL_HIGH: &str = "High";
8pub const DESCRIPTION_LOW: &str = "Fast responses with lightweight reasoning.";
9pub const DESCRIPTION_MEDIUM: &str = "Balanced depth and speed for general tasks. (Note: May not be fully available for all models including Gemini 3 Pro)";
10pub const DESCRIPTION_HIGH: &str = "Maximum reasoning depth for complex problems.";