From 3c3cdba49978e371fdc1838dd217b059cb7d3d5c Mon Sep 17 00:00:00 2001 From: yangdx Date: Sat, 1 Feb 2025 22:27:49 +0800 Subject: [PATCH] Fix typo error --- lightrag/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/utils.py b/lightrag/utils.py index 9316f908..be6bdafe 100644 --- a/lightrag/utils.py +++ b/lightrag/utils.py @@ -568,7 +568,7 @@ async def save_to_cache(hashing_kv, cache_data: CacheData): mode_cache[cache_data.args_hash] = { "return": cache_data.content, - "cache_type": cache_data.cache_data, + "cache_type": cache_data.cache_type, "embedding": cache_data.quantized.tobytes().hex() if cache_data.quantized is not None else None,