From 3876a8ff186e01d544d71ce9b926cf8d027e4204 Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Thu, 12 Jun 2025 06:27:39 +0900 Subject: [PATCH] Fix --- services/llm.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/llm.ts b/services/llm.ts index 06e35cb..8d4e19a 100644 --- a/services/llm.ts +++ b/services/llm.ts @@ -117,6 +117,7 @@ You are a professional podcaster. Create a detailed podcast script based on the - Length: 1000-5000 characters (Japanese) - Use natural, conversational Japanese language suitable for audio - Write in a engaging podcast style with smooth transitions between topics +- There is only **one speaker** in the podcast, so use first-person perspective **Technical Requirements:** - Since this will be read by Japanese Text-to-Speech, convert ALL English words, abbreviations, and acronyms to katakana @@ -150,7 +151,7 @@ ${articleDetails} { role: "system", content: prompt.trim() }, { role: "user", content: sendContent.trim() }, ], - temperature: 0.6, + temperature: 0.7, }); const scriptText = response.choices[0]?.message?.content?.trim();