yangdx commited on
Commit
b8799cc
·
1 Parent(s): cd0b5a7

Fix typo error

Browse files
Files changed (1) hide show
  1. lightrag/utils.py +1 -1
lightrag/utils.py CHANGED
@@ -568,7 +568,7 @@ async def save_to_cache(hashing_kv, cache_data: CacheData):
568
 
569
  mode_cache[cache_data.args_hash] = {
570
  "return": cache_data.content,
571
- "cache_type": cache_data.cache_data,
572
  "embedding": cache_data.quantized.tobytes().hex()
573
  if cache_data.quantized is not None
574
  else None,
 
568
 
569
  mode_cache[cache_data.args_hash] = {
570
  "return": cache_data.content,
571
+ "cache_type": cache_data.cache_type,
572
  "embedding": cache_data.quantized.tobytes().hex()
573
  if cache_data.quantized is not None
574
  else None,