Fix model ID to use full claude-sonnet-4-6-20251101

Short alias was returning 404 from Anthropic API.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 20:35:27 -08:00
parent a4f84cd4c3
commit e1a4ccf7a0
3 changed files with 3 additions and 3 deletions

View File

@@ -69,7 +69,7 @@ Write the best answer for this question. Just the answer text -- no preamble, no
'anthropic-version': '2023-06-01',
},
body: JSON.stringify({
model: 'claude-sonnet-4-6',
model: 'claude-sonnet-4-6-20251101',
max_tokens: 512,
system: systemPrompt,
messages: [{ role: 'user', content: userPrompt }],