From a4c2550456cf41a7e864bc831b9ee75e86ca1ca2 Mon Sep 17 00:00:00 2001 From: Elie Steinbock <3090527+elie222@users.noreply.github.com> Date: Thu, 14 Nov 2024 19:43:01 +0200 Subject: [PATCH] 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 --- app/lib/.server/llm/model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/.server/llm/model.ts b/app/lib/.server/llm/model.ts index f0d695c..2f8c32c 100644 --- a/app/lib/.server/llm/model.ts +++ b/app/lib/.server/llm/model.ts @@ -5,5 +5,5 @@ export function getAnthropicModel(apiKey: string) { apiKey, }); - return anthropic('claude-3-5-sonnet-20240620'); + return anthropic('claude-3-5-sonnet-20241022'); }