From 1edafad270aa27065f0602052930749c2dd8bd22 Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Fri, 13 Jun 2025 12:10:36 +0900 Subject: [PATCH] Update --- services/llm.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/llm.ts b/services/llm.ts index 9492ff7..5e44d95 100644 --- a/services/llm.ts +++ b/services/llm.ts @@ -152,6 +152,8 @@ ${articleDetails} { role: "user", content: sendContent.trim() }, ], temperature: 0.4, + max_completion_tokens: 1700, + reasoning_effort: "medium", }); const scriptText = response.choices[0]?.message?.content?.trim();