chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-30 23:31:35 +00:00
parent f4f508e659
commit 9c7788bbf9
+3 -10
View File
@@ -611,16 +611,9 @@ function anthropicAdaptiveEfforts(apiId: string): string[] | null {
return ["low", "medium", "high", "xhigh", "max"] return ["low", "medium", "high", "xhigh", "max"]
} }
if ( if (
[ ["opus-4-6", "opus-4.6", "4-6-opus", "4.6-opus", "sonnet-4-6", "sonnet-4.6", "4-6-sonnet", "4.6-sonnet"].some((v) =>
"opus-4-6", apiId.includes(v),
"opus-4.6", )
"4-6-opus",
"4.6-opus",
"sonnet-4-6",
"sonnet-4.6",
"4-6-sonnet",
"4.6-sonnet",
].some((v) => apiId.includes(v))
) { ) {
return ["low", "medium", "high", "max"] return ["low", "medium", "high", "max"]
} }