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