fix: temporarily disable xhigh reasoning for Anthropic models (#1092)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2026-02-21 16:20:43 -08:00
committed by GitHub
parent bbd4bd00e8
commit 35812d5b39
2 changed files with 0 additions and 32 deletions

View File

@@ -68,20 +68,6 @@
"parallel_tool_calls": true
}
},
{
"id": "sonnet-4.6-xhigh",
"handle": "anthropic/claude-sonnet-4-6",
"label": "Sonnet 4.6",
"description": "Sonnet 4.6 (max reasoning)",
"updateArgs": {
"context_window": 200000,
"max_output_tokens": 128000,
"reasoning_effort": "xhigh",
"enable_reasoner": true,
"max_reasoning_tokens": 31999,
"parallel_tool_calls": true
}
},
{
"id": "sonnet-4.5",
"handle": "anthropic/claude-sonnet-4-5-20250929",
@@ -161,20 +147,6 @@
"parallel_tool_calls": true
}
},
{
"id": "opus-4.6-xhigh",
"handle": "anthropic/claude-opus-4-6",
"label": "Opus 4.6",
"description": "Opus 4.6 (max reasoning)",
"updateArgs": {
"context_window": 200000,
"max_output_tokens": 128000,
"reasoning_effort": "xhigh",
"enable_reasoner": true,
"max_reasoning_tokens": 31999,
"parallel_tool_calls": true
}
},
{
"id": "opus-4.5",
"handle": "anthropic/claude-opus-4-5-20251101",

View File

@@ -77,14 +77,12 @@ describe("getReasoningTierOptionsForHandle", () => {
"low",
"medium",
"high",
"xhigh",
]);
expect(options.map((option) => option.modelId)).toEqual([
"sonnet-4.6-no-reasoning",
"sonnet-4.6-low",
"sonnet-4.6-medium",
"sonnet",
"sonnet-4.6-xhigh",
]);
});
@@ -97,14 +95,12 @@ describe("getReasoningTierOptionsForHandle", () => {
"low",
"medium",
"high",
"xhigh",
]);
expect(options.map((option) => option.modelId)).toEqual([
"opus-4.6-no-reasoning",
"opus-4.6-low",
"opus-4.6-medium",
"opus",
"opus-4.6-xhigh",
]);
});