From 364f85bda8c4443cf502979ac172bd413bd571de Mon Sep 17 00:00:00 2001 From: XDA Date: Mon, 19 Aug 2024 22:47:32 -0400 Subject: [PATCH] Update anthropic.ts --- src/lib/providers/anthropic.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/providers/anthropic.ts b/src/lib/providers/anthropic.ts index eb54569..5deac3f 100644 --- a/src/lib/providers/anthropic.ts +++ b/src/lib/providers/anthropic.ts @@ -59,7 +59,7 @@ export const loadAnthropicChatModels = async () => { for (const config of modelConfigs) { try { chatModels[config.name] = new RetryingChatAnthropic({ - temperature: 0.7, + temperature: 0.5, anthropicApiKey, model: config.model, maxRetries: 3,