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