-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Import & export the agents. #3851
Comments
cike8899
added a commit
to cike8899/ragflow
that referenced
this issue
Dec 5, 2024
1 task
KevinHuSh
pushed a commit
that referenced
this issue
Dec 6, 2024
cike8899
added a commit
to cike8899/ragflow
that referenced
this issue
Dec 17, 2024
1 task
KevinHuSh
pushed a commit
that referenced
this issue
Dec 17, 2024
isthaison
added a commit
to isthaison/ragflow
that referenced
this issue
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 issue
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 issue
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
No description provided.
The text was updated successfully, but these errors were encountered: