Fix trailing whitespace in docstring
This commit is contained in:
parent
8e66b2a974
commit
ce1a59b1c0
1 changed files with 3 additions and 3 deletions
|
|
@ -823,16 +823,16 @@ async def get_keywords_from_query(
|
||||||
) -> tuple[list[str], list[str]]:
|
) -> tuple[list[str], list[str]]:
|
||||||
"""
|
"""
|
||||||
Retrieves high-level and low-level keywords for RAG operations.
|
Retrieves high-level and low-level keywords for RAG operations.
|
||||||
|
|
||||||
This function checks if keywords are already provided in query parameters,
|
This function checks if keywords are already provided in query parameters,
|
||||||
and if not, extracts them from the query text using LLM.
|
and if not, extracts them from the query text using LLM.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
query: The user's query text
|
query: The user's query text
|
||||||
query_param: Query parameters that may contain pre-defined keywords
|
query_param: Query parameters that may contain pre-defined keywords
|
||||||
global_config: Global configuration dictionary
|
global_config: Global configuration dictionary
|
||||||
hashing_kv: Optional key-value storage for caching results
|
hashing_kv: Optional key-value storage for caching results
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
A tuple containing (high_level_keywords, low_level_keywords)
|
A tuple containing (high_level_keywords, low_level_keywords)
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue