Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/buzz-agent/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ pub fn anthropic_thinking_config(
fn anthropic_model_supports_xhigh(model: &str) -> bool {
model.starts_with("claude-opus-4-7")
|| model.starts_with("claude-opus-4-8")
|| model.starts_with("claude-opus-5")
|| model.starts_with("claude-sonnet-5")
|| model.starts_with("claude-fable-5")
|| model.starts_with("claude-mythos-5")
Expand Down Expand Up @@ -606,6 +607,7 @@ fn is_adaptive_thinking_model(model: &str) -> bool {
model.starts_with("claude-opus-4-6")
|| model.starts_with("claude-opus-4-7")
|| model.starts_with("claude-opus-4-8")
|| model.starts_with("claude-opus-5")
// Sonnet 5.x (any patch/date suffix after "claude-sonnet-5").
|| model.starts_with("claude-sonnet-5")
// Sonnet 4.6 exactly (not Sonnet 4.5 or earlier — not in the adaptive table).
Expand Down
7 changes: 7 additions & 0 deletions desktop/src/features/agents/ui/effortTable.fixture.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@
"validValues": ["low", "medium", "high", "xhigh", "max"],
"defaultValue": "high"
},
{
"note": "Anthropic adaptive xhigh-capable: claude-opus-5",
"provider": "anthropic",
"model": "claude-opus-5",
"validValues": ["low", "medium", "high", "xhigh", "max"],
"defaultValue": "high"
},
{
"note": "Anthropic adaptive xhigh-capable: claude-mythos-5",
"provider": "anthropic",
Expand Down
Loading