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