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

@@ -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",
]);
});