Skip to content

Commit 886c8ba

Browse files
committed
fix: API model name for Anthropic Opus 4.5
1 parent 82f45b9 commit 886c8ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runner/codegen/ai-sdk/anthropic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export async function getAiSdkModelOptionsForAnthropic(
4040
if (modelName.includes('opus-4.1')) {
4141
apiModelName = 'claude-opus-4-1';
4242
} else if (modelName.includes('opus-4.5')) {
43-
apiModelName = 'claude-opus-4.5';
43+
apiModelName = 'claude-opus-4-5';
4444
}
4545
const model = anthropic(apiModelName);
4646
return {

0 commit comments

Comments
 (0)