From 9a77d9102390ecd9ea4e570817705e4e847caaa1 Mon Sep 17 00:00:00 2001 From: yangdx Date: Thu, 13 Feb 2025 01:30:21 +0800 Subject: [PATCH] Add LLM response cache to registered RagServer components --- lightrag/api/lightrag_server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lightrag/api/lightrag_server.py b/lightrag/api/lightrag_server.py index 0839c1f8..44443440 100644 --- a/lightrag/api/lightrag_server.py +++ b/lightrag/api/lightrag_server.py @@ -1115,6 +1115,7 @@ def create_app(args): ("relationships_vdb", rag.relationships_vdb), ("chunks_vdb", rag.chunks_vdb), ("doc_status", rag.doc_status), + ("llm_response_cache", rag.llm_response_cache), ] async def index_file(file_path: Union[str, Path]) -> None: