From f808c5e7ea0aa7f7f1451163108322d3591fadde Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Thu, 12 Jun 2025 06:30:45 +0900 Subject: [PATCH] Fix --- services/llm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/llm.ts b/services/llm.ts index 8d4e19a..9492ff7 100644 --- a/services/llm.ts +++ b/services/llm.ts @@ -151,7 +151,7 @@ ${articleDetails} { role: "system", content: prompt.trim() }, { role: "user", content: sendContent.trim() }, ], - temperature: 0.7, + temperature: 0.4, }); const scriptText = response.choices[0]?.message?.content?.trim();