From 8a42413e8605ce828f9e089723d1f48b2fdc614d Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Fri, 13 Jun 2025 13:05:41 +0900 Subject: [PATCH] Update --- services/llm.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/llm.ts b/services/llm.ts index 643d25c..483b6fe 100644 --- a/services/llm.ts +++ b/services/llm.ts @@ -153,8 +153,8 @@ ${articleDetails} { role: "user", content: sendContent.trim() }, ], temperature: 0.4, - max_completion_tokens: 1700, - reasoning_effort: "medium", + max_completion_tokens: 2500, + reasoning_effort: "high", }); const scriptText = response.choices[0]?.message?.content?.trim();