-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: Set the color of the canvas's control button #3851 #4053
Merged
Conversation
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
isthaison
added a commit
to isthaison/ragflow
that referenced
this pull request
Dec 17, 2024
commit ce1e855 Author: Kevin Hu <kevinhu.sh@gmail.com> Date: Tue Dec 17 11:27:19 2024 +0800 Upgrades Document Layout Analysis model. (infiniflow#4054) ### What problem does this PR solve? infiniflow#4052 ### Type of change - [x] New Feature (non-breaking change which adds functionality) commit b5e4a55 Author: balibabu <cike8899@users.noreply.github.com> Date: Tue Dec 17 11:23:00 2024 +0800 Feat: Set the color of the canvas's control button infiniflow#3851 (infiniflow#4053) ### What problem does this PR solve? Feat: Set the color of the canvas's control button infiniflow#3851 ### Type of change - [x] New Feature (non-breaking change which adds functionality) commit 1053ef5 Author: balibabu <cike8899@users.noreply.github.com> Date: Tue Dec 17 10:32:52 2024 +0800 Fix: Hide the upload button in the external chat box infiniflow#2242 (infiniflow#4048) ### What problem does this PR solve? Fix: Hide the upload button in the external chat box infiniflow#2242 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) commit cb6e9ce Author: Kevin Hu <kevinhu.sh@gmail.com> Date: Tue Dec 17 09:48:03 2024 +0800 Cache the result from llm for graphrag and raptor (infiniflow#4051) ### What problem does this PR solve? infiniflow#4045 ### Type of change - [x] New Feature (non-breaking change which adds functionality) 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 `____ ```
isthaison
added a commit
to isthaison/ragflow
that referenced
this pull request
Dec 17, 2024
commit ce1e855 Author: Kevin Hu <kevinhu.sh@gmail.com> Date: Tue Dec 17 11:27:19 2024 +0800 Upgrades Document Layout Analysis model. (infiniflow#4054) ### What problem does this PR solve? infiniflow#4052 ### Type of change - [x] New Feature (non-breaking change which adds functionality) commit b5e4a55 Author: balibabu <cike8899@users.noreply.github.com> Date: Tue Dec 17 11:23:00 2024 +0800 Feat: Set the color of the canvas's control button infiniflow#3851 (infiniflow#4053) ### What problem does this PR solve? Feat: Set the color of the canvas's control button infiniflow#3851 ### Type of change - [x] New Feature (non-breaking change which adds functionality) commit 1053ef5 Author: balibabu <cike8899@users.noreply.github.com> Date: Tue Dec 17 10:32:52 2024 +0800 Fix: Hide the upload button in the external chat box infiniflow#2242 (infiniflow#4048) ### What problem does this PR solve? Fix: Hide the upload button in the external chat box infiniflow#2242 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) commit cb6e9ce Author: Kevin Hu <kevinhu.sh@gmail.com> Date: Tue Dec 17 09:48:03 2024 +0800 Cache the result from llm for graphrag and raptor (infiniflow#4051) ### What problem does this PR solve? infiniflow#4045 ### Type of change - [x] New Feature (non-breaking change which adds functionality) 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 `____ ```
learnerLj
pushed a commit
to learnerLj/ragflow
that referenced
this pull request
Dec 19, 2024
…nfiniflow#4053) ### What problem does this PR solve? Feat: Set the color of the canvas's control button infiniflow#3851 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What problem does this PR solve?
Feat: Set the color of the canvas's control button #3851
Type of change