vtcode_config/constants/models/
anthropic.rs1pub const DEFAULT_MODEL: &str = "claude-opus-4-7";
3pub const SUPPORTED_MODELS: &[&str] = &[
4 "claude-opus-4-7", "claude-opus-4-6", "claude-sonnet-4-6", "claude-haiku-4-5", "claude-haiku-4-5-20251001", "claude-mythos-preview", ];
11
12pub const CLAUDE_HAIKU_4_5_20251001: &str = "claude-haiku-4-5-20251001";
14
15pub const CLAUDE_HAIKU_4_5: &str = "claude-haiku-4-5";
17pub const CLAUDE_SONNET_4_6: &str = "claude-sonnet-4-6";
18pub const CLAUDE_OPUS_4_6: &str = "claude-opus-4-6";
19pub const CLAUDE_OPUS_4_7: &str = "claude-opus-4-7";
20pub const CLAUDE_MYTHOS_PREVIEW: &str = "claude-mythos-preview";
21
22pub const REASONING_MODELS: &[&str] = &[
24 CLAUDE_OPUS_4_6,
25 CLAUDE_SONNET_4_6,
26 CLAUDE_OPUS_4_7,
27 CLAUDE_HAIKU_4_5,
28 CLAUDE_HAIKU_4_5_20251001,
29 CLAUDE_MYTHOS_PREVIEW,
30];