From 0438c620a86cf8ce6ee2c49eb7c062b9be23a112 Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Mon, 9 Jun 2025 09:32:31 +0900 Subject: [PATCH] Update tts.ts --- services/tts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/tts.ts b/services/tts.ts index 7e7cc07..28088a4 100644 --- a/services/tts.ts +++ b/services/tts.ts @@ -7,7 +7,7 @@ import { config } from "./config.js"; * Split text into natural chunks for TTS processing * Aims for approximately 50 characters per chunk, breaking at natural points */ -function splitTextIntoChunks(text: string, maxLength = 50): string[] { +function splitTextIntoChunks(text: string, maxLength = 100): string[] { if (text.length <= maxLength) { return [text]; }