From ce1a59b1c0d40dc6f59a92b48f089ab73e60ebcf Mon Sep 17 00:00:00 2001 From: Mykola Chaban Date: Wed, 2 Apr 2025 21:52:06 +0300 Subject: [PATCH] Fix trailing whitespace in docstring --- lightrag/operate.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lightrag/operate.py b/lightrag/operate.py index c4a43ee9..91c42965 100644 --- a/lightrag/operate.py +++ b/lightrag/operate.py @@ -823,16 +823,16 @@ async def get_keywords_from_query( ) -> tuple[list[str], list[str]]: """ Retrieves high-level and low-level keywords for RAG operations. - + This function checks if keywords are already provided in query parameters, and if not, extracts them from the query text using LLM. - + Args: query: The user's query text query_param: Query parameters that may contain pre-defined keywords global_config: Global configuration dictionary hashing_kv: Optional key-value storage for caching results - + Returns: A tuple containing (high_level_keywords, low_level_keywords) """