Fix raptor (#4089)

### What problem does this PR solve?

Fix raptor

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Zhichang Yu
2024-12-18 14:42:33 +08:00
committed by GitHub
parent 4764ca5ef7
commit 1fdad50dac
2 changed files with 3 additions and 3 deletions

View File

@ -444,8 +444,8 @@ def queue_raptor_tasks(doc):
return {
"id": get_uuid(),
"doc_id": doc["id"],
"from_page": 0,
"to_page": -1,
"from_page": 100000000,
"to_page": 100000000,
"progress_msg": "Start to do RAPTOR (Recursive Abstractive Processing for Tree-Organized Retrieval)."
}