Skip to main content

vtcode_config/constants/models/
mod.rs

1pub mod anthropic;
2pub mod copilot;
3pub mod deepseek;
4pub mod google;
5pub mod huggingface;
6pub mod lmstudio;
7pub mod mimo;
8pub mod minimax;
9pub mod mistral;
10pub mod moonshot;
11pub mod ollama;
12pub mod openai;
13pub mod opencode_go;
14pub mod opencode_zen;
15pub mod openresponses;
16pub mod openrouter;
17pub mod poolside;
18pub mod qwen;
19pub mod stepfun;
20pub mod zai;
21
22// Backwards compatibility - keep old constants working
23pub const GEMINI_3_1_PRO_PREVIEW: &str = google::GEMINI_3_1_PRO_PREVIEW;
24pub const GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS: &str = google::GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS;
25pub const GEMINI_3_1_FLASH_LITE_PREVIEW: &str = google::GEMINI_3_1_FLASH_LITE_PREVIEW;
26pub const GEMINI_3_5_FLASH: &str = google::GEMINI_3_5_FLASH;
27pub const GEMINI_3_FLASH_PREVIEW: &str = google::GEMINI_3_FLASH_PREVIEW;
28pub const GPT: &str = openai::GPT;
29pub const GPT_5: &str = openai::GPT_5;
30pub const GPT_5_2: &str = openai::GPT_5_2;
31pub const GPT_5_5: &str = openai::GPT_5_5;
32pub const GPT_5_4: &str = openai::GPT_5_4;
33pub const GPT_5_4_PRO: &str = openai::GPT_5_4_PRO;
34pub const GPT_5_3_CODEX: &str = openai::GPT_5_3_CODEX;
35pub const GPT_5_2_CODEX: &str = openai::GPT_5_2_CODEX;
36pub const GPT_5_1_CODEX: &str = openai::GPT_5_1_CODEX;
37pub const GPT_5_1_CODEX_MAX: &str = openai::GPT_5_1_CODEX_MAX;
38pub const GPT_5_CODEX: &str = openai::GPT_5_CODEX;
39pub const GPT_5_MINI: &str = openai::GPT_5_MINI;
40pub const GPT_5_NANO: &str = openai::GPT_5_NANO;
41pub const O3: &str = openai::O3;
42pub const O4_MINI: &str = openai::O4_MINI;
43pub const GPT_OSS_20B: &str = openai::GPT_OSS_20B;
44pub const GPT_OSS_120B: &str = openai::GPT_OSS_120B;
45pub const CLAUDE_SONNET_4_6: &str = anthropic::CLAUDE_SONNET_4_6;
46pub const CLAUDE_OPUS_4_6: &str = anthropic::CLAUDE_OPUS_4_6;
47pub const CLAUDE_OPUS_4_7: &str = anthropic::CLAUDE_OPUS_4_7;
48pub const CLAUDE_OPUS_4_8: &str = anthropic::CLAUDE_OPUS_4_8;
49pub const CLAUDE_HAIKU_4_5: &str = anthropic::CLAUDE_HAIKU_4_5;
50pub const CLAUDE_HAIKU_4_5_20251001: &str = anthropic::CLAUDE_HAIKU_4_5_20251001;
51pub const CLAUDE_MYTHOS_PREVIEW: &str = anthropic::CLAUDE_MYTHOS_PREVIEW;
52pub const COPILOT: &str = copilot::DEFAULT_MODEL;
53pub const MINIMAX_M2_7: &str = minimax::MINIMAX_M2_7;
54pub const MINIMAX_M2_5: &str = minimax::MINIMAX_M2_5;
55pub const GLM_5: &str = zai::GLM_5;
56#[cfg(not(docsrs))]
57pub const OPENROUTER_QWEN3_CODER: &str = openrouter::QWEN3_CODER;
58#[cfg(docsrs)]
59pub const OPENROUTER_QWEN3_CODER: &str = "qwen/qwen3-coder";