From 4ae0068f737e59cd03c2348f478d7e9064970c61 Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Mon, 9 Jun 2025 09:31:48 +0900 Subject: [PATCH] Update content-extractor.ts --- services/content-extractor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/content-extractor.ts b/services/content-extractor.ts index c10f2c6..056b327 100644 --- a/services/content-extractor.ts +++ b/services/content-extractor.ts @@ -204,7 +204,7 @@ export async function extractArticleContent( } // Limit content length to avoid token limits - const maxLength = 5000; + const maxLength = 50000; let content = extractedData.content; if (content.length > maxLength) { content = content.substring(0, maxLength) + "...";