Fix hit cache error while raptoring. (#4955)

### What problem does this PR solve?

#4126

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Kevin Hu 2025-02-14 12:00:19 +08:00 committed by GitHub
parent 849d9eb463
commit 29ceeba95f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,7 +46,7 @@ class RecursiveAbstractiveProcessing4TreeOrganizedRetrieval:
def _embedding_encode(self, txt):
response = get_embed_cache(self._embd_model.llm_name, txt)
if response:
if response is not None:
return response
embds, _ = self._embd_model.encode([txt])
if len(embds) < 1 or len(embds[0]) < 1: