vtcode_config/constants/models/
mod.rs1pub 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 qwen;
18pub mod zai;
19
20pub const GEMINI_3_1_PRO_PREVIEW: &str = google::GEMINI_3_1_PRO_PREVIEW;
22pub const GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS: &str = google::GEMINI_3_1_PRO_PREVIEW_CUSTOMTOOLS;
23pub const GEMINI_3_1_FLASH_LITE_PREVIEW: &str = google::GEMINI_3_1_FLASH_LITE_PREVIEW;
24pub const GEMINI_3_5_FLASH: &str = google::GEMINI_3_5_FLASH;
25pub const GEMINI_3_FLASH_PREVIEW: &str = google::GEMINI_3_FLASH_PREVIEW;
26pub const GPT: &str = openai::GPT;
27pub const GPT_5: &str = openai::GPT_5;
28pub const GPT_5_2: &str = openai::GPT_5_2;
29pub const GPT_5_5: &str = openai::GPT_5_5;
30pub const GPT_5_4: &str = openai::GPT_5_4;
31pub const GPT_5_4_PRO: &str = openai::GPT_5_4_PRO;
32pub const GPT_5_3_CODEX: &str = openai::GPT_5_3_CODEX;
33pub const GPT_5_2_CODEX: &str = openai::GPT_5_2_CODEX;
34pub const GPT_5_1_CODEX: &str = openai::GPT_5_1_CODEX;
35pub const GPT_5_1_CODEX_MAX: &str = openai::GPT_5_1_CODEX_MAX;
36pub const GPT_5_CODEX: &str = openai::GPT_5_CODEX;
37pub const GPT_5_MINI: &str = openai::GPT_5_MINI;
38pub const GPT_5_NANO: &str = openai::GPT_5_NANO;
39pub const O3: &str = openai::O3;
40pub const O4_MINI: &str = openai::O4_MINI;
41pub const GPT_OSS_20B: &str = openai::GPT_OSS_20B;
42pub const GPT_OSS_120B: &str = openai::GPT_OSS_120B;
43pub const CLAUDE_SONNET_4_6: &str = anthropic::CLAUDE_SONNET_4_6;
44pub const CLAUDE_OPUS_4_6: &str = anthropic::CLAUDE_OPUS_4_6;
45pub const CLAUDE_OPUS_4_7: &str = anthropic::CLAUDE_OPUS_4_7;
46pub const CLAUDE_HAIKU_4_5: &str = anthropic::CLAUDE_HAIKU_4_5;
47pub const CLAUDE_HAIKU_4_5_20251001: &str = anthropic::CLAUDE_HAIKU_4_5_20251001;
48pub const CLAUDE_MYTHOS_PREVIEW: &str = anthropic::CLAUDE_MYTHOS_PREVIEW;
49pub const COPILOT: &str = copilot::DEFAULT_MODEL;
50pub const MINIMAX_M2_7: &str = minimax::MINIMAX_M2_7;
51pub const MINIMAX_M2_5: &str = minimax::MINIMAX_M2_5;
52pub const GLM_5: &str = zai::GLM_5;
53#[cfg(not(docsrs))]
54pub const OPENROUTER_QWEN3_CODER: &str = openrouter::QWEN3_CODER;
55#[cfg(docsrs)]
56pub const OPENROUTER_QWEN3_CODER: &str = "qwen/qwen3-coder";