From 1e477e95ef4c025df6218fc7c2cbef058904cfa9 Mon Sep 17 00:00:00 2001 From: yangdx Date: Fri, 21 Nov 2025 12:59:49 +0800 Subject: [PATCH] Add lightrag-clean-llmqc console script entry point - Add clean_llm_query_cache tool - New console script for cache cleanup - Extend CLI tool availability --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index e40452e0..b76315d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -151,6 +151,7 @@ observability = [ lightrag-server = "lightrag.api.lightrag_server:main" lightrag-gunicorn = "lightrag.api.run_with_gunicorn:main" lightrag-download-cache = "lightrag.tools.download_cache:main" +lightrag-clean-llmqc = "lightrag.tools.clean_llm_query_cache:main" [project.urls] Homepage = "https://github.com/HKUDS/LightRAG"