Use latest Anthropic Sonnet 3.5 model

It's more powerful than the previous version:
https://www.anthropic.com/news/3-5-models-and-computer-use
This commit is contained in:
Elie Steinbock 2024-11-14 19:43:01 +02:00 committed by GitHub
parent cecbc55380
commit a4c2550456
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,5 +5,5 @@ export function getAnthropicModel(apiKey: string) {
apiKey,
});
return anthropic('claude-3-5-sonnet-20240620');
return anthropic('claude-3-5-sonnet-20241022');
}