Fix Anthropic API 404 — correct model ID to claude-sonnet-4-6

The dated model ID claude-sonnet-4-6-20251101 doesn't exist, causing
keyword generation to fall back to static keywords.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 14:24:38 -08:00
parent 6d325cf931
commit dc7113907b

View File

@@ -48,7 +48,7 @@ Example format: ["query one", "query two", "query three"]`;
'anthropic-version': '2023-06-01' 'anthropic-version': '2023-06-01'
}, },
body: JSON.stringify({ body: JSON.stringify({
model: 'claude-sonnet-4-6-20251101', model: 'claude-sonnet-4-6',
max_tokens: 1024, max_tokens: 1024,
messages: [{ role: 'user', content: prompt }] messages: [{ role: 'user', content: prompt }]
}) })