forked from infiniflow/ragflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 8ea631a Author: balibabu <cike8899@users.noreply.github.com> Date: Mon Dec 16 18:51:45 2024 +0800 Fix: Every time you switch the page number of a chunk, the PDF document will be reloaded. infiniflow#4046 (infiniflow#4047) ### What problem does this PR solve? Fix: Every time you switch the page number of a chunk, the PDF document will be reloaded. infiniflow#4046 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) commit 7fb67c4 Author: Kevin Hu <kevinhu.sh@gmail.com> Date: Mon Dec 16 15:23:49 2024 +0800 Fix chunk number error after re-parsing. (infiniflow#4043) ### What problem does this PR solve? ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) commit 44ac87a Author: Michael Luo <luoshitou9@gmail.com> Date: Mon Dec 16 14:35:21 2024 +0800 Remove Redundant None Check for vector_similarity_weight (infiniflow#4037) ### What problem does this PR solve? The removed if statement is unnecessary and adds cognitive load for readers. The original code: ``` vector_similarity_weight = req.get("vector_similarity_weight", 0.3) if vector_similarity_weight is None: vector_similarity_weight = 0.3 ``` has been simplified to: ``` vector_similarity_weight = req.get("vector_similarity_weight", 0.3) ``` ### Type of change - [x] Refactoring commit 7ddccbb Author: so95 <is.thaison@gmail.com> Date: Mon Dec 16 08:46:59 2024 +0700 extraction sqlquery (infiniflow#4027) clone infiniflow#4023 improve the information extraction, most llm return results in markdown format ````sql ___ query `____ ```
- Loading branch information
Showing
6 changed files
with
28 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters