Fix chunk position issue. (#3867)

### What problem does this PR solve?

Close #3864

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Kevin Hu 2024-12-05 10:53:26 +08:00 committed by GitHub
parent 78601ee1bd
commit 5ae33184d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,11 +60,6 @@ def list_chunk():
sres = settings.retrievaler.search(query, search.index_name(tenant_id), kb_ids, highlight=True)
res = {"total": sres.total, "chunks": [], "doc": doc.to_dict()}
for id in sres.ids:
chunk_elem = sres.field[id]
if 'position_list' in chunk_elem:
if isinstance(chunk_elem["position_list"], str):
chunk_elem.pop('position_list') # Infinity will store position list as empty str
d = {
"chunk_id": id,
"content_with_weight": rmSpace(sres.highlight[id]) if question and id in sres.highlight else sres.field[