From e492a40ef32c9f8cdd467570e0df2bc9b652a390 Mon Sep 17 00:00:00 2001 From: Dustin Loring Date: Sat, 11 Jan 2025 19:45:19 -0500 Subject: [PATCH] chore: update latest model update to the latest claude model --- 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'); }