From 4854ff83b3aaa5eb4e72e7f02867dcaa1a7d7ca2 Mon Sep 17 00:00:00 2001 From: yangdx Date: Tue, 25 Mar 2025 23:39:09 +0800 Subject: [PATCH] Increase conten summary from 100 to 250 CHARS --- lightrag/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/utils.py b/lightrag/utils.py index 282042f6..e493ea02 100644 --- a/lightrag/utils.py +++ b/lightrag/utils.py @@ -901,7 +901,7 @@ def lazy_external_import(module_name: str, class_name: str) -> Callable[..., Any return import_class -def get_content_summary(content: str, max_length: int = 100) -> str: +def get_content_summary(content: str, max_length: int = 250) -> str: """Get summary of document content Args: