From 75051953038cf2711ddbe3a7db673d7167da5120 Mon Sep 17 00:00:00 2001 From: yangdx Date: Sun, 3 Aug 2025 23:02:58 +0800 Subject: [PATCH] fix: add full_entities and full_relations to clear_documents storage list --- lightrag/api/routers/document_routes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lightrag/api/routers/document_routes.py b/lightrag/api/routers/document_routes.py index 4dc17dc3..cacc135b 100644 --- a/lightrag/api/routers/document_routes.py +++ b/lightrag/api/routers/document_routes.py @@ -1473,6 +1473,8 @@ def create_document_routes( storages = [ rag.text_chunks, rag.full_docs, + rag.full_entities, + rag.full_relations, rag.entities_vdb, rag.relationships_vdb, rag.chunks_vdb,