diff --git a/lightrag/kg/redis_impl.py b/lightrag/kg/redis_impl.py index 31752d69..6518cf04 100644 --- a/lightrag/kg/redis_impl.py +++ b/lightrag/kg/redis_impl.py @@ -786,12 +786,6 @@ class RedisDocStatusStorage(DocStatusStorage): # Make a copy of the data to avoid modifying the original data = doc_data.copy() - # If content is missing, use content_summary as content - if ( - "content" not in data - and "content_summary" in data - ): - data["content"] = data["content_summary"] # If file_path is not in data, use document id as file path if "file_path" not in data: data["file_path"] = "no-file-path"