vtcode-config 0.127.0

Config loader components shared across VT Code and downstream adopters
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// OpenCode Go models (low-cost subscription)
// https://opencode.ai/docs/go/
pub const DEFAULT_MODEL: &str = GLM_5_1;

pub const GLM_5_1: &str = "glm-5.1";
pub const MINIMAX_M2_7: &str = "minimax-m2.7";

pub const MESSAGES_API_MODELS: &[&str] = &[MINIMAX_M2_7];
pub const CHAT_COMPLETIONS_MODELS: &[&str] = &[GLM_5_1];

// Curated models VT Code currently exposes in config flows and ModelId metadata.
pub const CONFIGURED_MODELS: &[&str] = &[GLM_5_1, MINIMAX_M2_7];

pub const SUPPORTED_MODELS: &[&str] = &[
    GLM_5_1,
    MINIMAX_M2_7,
];
pub const REASONING_MODELS: &[&str] = &[];