-
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
[Bug]: Every time you switch the page number of a chunk, the PDF document will be reloaded. #4046
Closed
1 task done
Labels
bug
Something isn't working
Comments
cike8899
added a commit
to cike8899/ragflow
that referenced
this issue
Dec 16, 2024
…nt will be reloaded. infiniflow#4046
1 task
isthaison
added a commit
to isthaison/ragflow
that referenced
this issue
Dec 17, 2024
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 `____ ```
isthaison
added a commit
to isthaison/ragflow
that referenced
this issue
Dec 17, 2024
commit 80e7966 Merge: 0696135 8ea631a Author: so95 <is.thaison@gmail.com> Date: Tue Dec 17 08:40:20 2024 +0700 Merge branch 'infiniflow:main' into main 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 `____ ``` commit 0696135 Merge: 0f0eb35 9b2ef62 Author: so95 <is.thaison@gmail.com> Date: Fri Dec 13 17:31:18 2024 +0700 Merge branch 'infiniflow:main' into main commit 0f0eb35 Author: so95 <is.thaison@gmail.com> Date: Fri Dec 13 16:55:20 2024 +0700 Squashed commit of the following: commit 9b2ef62 Author: Zhichang Yu <yuzhichang@gmail.com> Date: Fri Dec 13 17:31:15 2024 +0800 Fix xinfo_groups returns unexpected result (infiniflow#4026) ### What problem does this PR solve? Fix xinfo_groups returns unexpected result. Close infiniflow#3545 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) commit 86507af Author: Zhichang Yu <yuzhichang@gmail.com> Date: Fri Dec 13 17:15:08 2024 +0800 Set task progress on exception (infiniflow#4025) ### What problem does this PR solve? Set task progress on exception ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) commit 9363567 Author: balibabu <cike8899@users.noreply.github.com> Date: Fri Dec 13 16:55:13 2024 +0800 Feat: Reparse a file shall reuse existing chunks if possible infiniflow#3793 (infiniflow#4021) ### What problem does this PR solve? Feat: Reparse a file shall reuse existing chunks if possible infiniflow#3793 ### Type of change - [x] New Feature (non-breaking change which adds functionality) commit 1defe0b Author: balibabu <cike8899@users.noreply.github.com> Date: Fri Dec 13 14:43:24 2024 +0800 Feat: Supports to debug single component in Agent. infiniflow#3993 (infiniflow#4007) ### What problem does this PR solve? Feat: Supports to debug single component in Agent. infiniflow#3993 Fix: The github button on the login page is displayed incorrectly infiniflow#4002 ### Type of change - [x] New Feature (non-breaking change which adds functionality) commit 0bca46a Author: Zhichang Yu <yuzhichang@gmail.com> Date: Fri Dec 13 13:43:56 2024 +0800 Migrate infinity at startup (infiniflow#3858) ### What problem does this PR solve? Migrate infinity at startup infiniflow#3809 infiniflow/infinity#2321 ### Type of change - [x] New Feature (non-breaking change which adds functionality) commit 1ecb687 Author: liuhua <10215101452@stu.ecnu.edu.cn> Date: Fri Dec 13 10:25:52 2024 +0800 Fix bugs in agent api and update api document (infiniflow#3996) ### What problem does this PR solve? Fix bugs in agent api and update api document ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: liuhua <10215101452@stu.ecun.edu.cn> commit 68d46b2 Author: Luo Pan <45253432+unsw-luopan@users.noreply.github.com> Date: Fri Dec 13 08:50:58 2024 +0800 Fix bug in hierarchical_merge function (infiniflow#4006) ### What problem does this PR solve? Fix hierarchical_merge function. From idx vs. actual value to actual value vs. actual value. Related issue infiniflow#4003 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) Co-authored-by: luopan <luopan@example.com> commit 7559bbd Author: Kevin Hu <kevinhu.sh@gmail.com> Date: Fri Dec 13 08:50:32 2024 +0800 Component debugging funcionality. (infiniflow#4012) ### What problem does this PR solve? infiniflow#3993 ### Type of change - [x] New Feature (non-breaking change which adds functionality) commit 275b5d1 Author: Jin Hai <haijin.chn@gmail.com> Date: Thu Dec 12 20:34:46 2024 +0800 Fix json file parse (infiniflow#4004) ### What problem does this PR solve? Fix json file parsing ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --------- Signed-off-by: jinhai <haijin.chn@gmail.com> commit 9ae81b4 Author: writinwaters <93570324+writinwaters@users.noreply.github.com> Date: Thu Dec 12 19:46:53 2024 +0800 Updated UI (infiniflow#4011) ### What problem does this PR solve? ### Type of change - [x] Documentation Update commit d6c74ff Author: so95 <is.thaison@gmail.com> Date: Thu Dec 12 18:26:44 2024 +0700 Add mssql support (infiniflow#3985) some thing - execsql add connection mssql - fix bug duckduckgo-search rate limit - update typo vi res --------- Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com> commit e8d7410 Author: Roccat <153699410+lizheng419@users.noreply.github.com> Date: Thu Dec 12 19:00:34 2024 +0800 Fix: Completion AttributeError: 'list' object has no attribute 'get' (infiniflow#3999) ### What problem does this PR solve? ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) Co-authored-by: lizheng@ssc-hn.com <lizheng@ssc-hn.com> commit c8b1a56 Author: Zhichang Yu <yuzhichang@gmail.com> Date: Thu Dec 12 17:47:39 2024 +0800 Replaced md5 with xxhash64 for chunk id (infiniflow#4009) ### What problem does this PR solve? Replaced md5 with xxhash64 for chunk id ### Type of change - [x] Refactoring commit 301f958 Author: Zhichang Yu <yuzhichang@gmail.com> Date: Thu Dec 12 16:38:03 2024 +0800 Try to reuse existing chunks (infiniflow#3983) ### What problem does this PR solve? Try to reuse existing chunks. Close infiniflow#3793 ### Type of change - [x] New Feature (non-breaking change which adds functionality) commit 835fd7a Author: writinwaters <93570324+writinwaters@users.noreply.github.com> Date: Thu Dec 12 11:45:59 2024 +0800 Updated RAGFlow edition descriptions (infiniflow#4001) ### What problem does this PR solve? ### Type of change - [x] Documentation Update commit bb8f97c Author: writinwaters <93570324+writinwaters@users.noreply.github.com> Date: Thu Dec 12 09:57:52 2024 +0800 UI updates + RAGFlow image description (infiniflow#3995) ### What problem does this PR solve? ### Type of change - [x] Documentation Update commit 6d19294 Author: Kevin Hu <kevinhu.sh@gmail.com> Date: Wed Dec 11 19:23:59 2024 +0800 Support debug components. (infiniflow#3994) ### What problem does this PR solve? infiniflow#3993 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) commit f61c276 Author: Jin Hai <haijin.chn@gmail.com> Date: Wed Dec 11 18:39:09 2024 +0800 Update comment (infiniflow#3981) ### What problem does this PR solve? _Briefly describe what this PR aims to solve. Include background context that will help reviewers understand the purpose of the PR._ ### Type of change - [x] Documentation Update --------- Signed-off-by: Jin Hai <haijin.chn@gmail.com> Co-authored-by: writinwaters <93570324+writinwaters@users.noreply.github.com> commit 409acf0 Author: balibabu <cike8899@users.noreply.github.com> Date: Wed Dec 11 16:29:17 2024 +0800 Fix: Fixed the issue where two consecutive indexes were displayed incorrectly infiniflow#3839 (infiniflow#3988) ### What problem does this PR solve? Fix: Fixed the issue where two consecutive indexes were displayed incorrectly infiniflow#3839 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) commit 74c6b21 Author: liuhua <10215101452@stu.ecnu.edu.cn> Date: Wed Dec 11 12:38:57 2024 +0800 Update api documents (infiniflow#3979) ### What problem does this PR solve? Update api documents ### Type of change - [x] Documentation Update Co-authored-by: liuhua <10215101452@stu.ecun.edu.cn> commit beeacd3 Author: Kevin Hu <kevinhu.sh@gmail.com> Date: Wed Dec 11 11:44:59 2024 +0800 Fix exec sql exception issue. (infiniflow#3982) ### What problem does this PR solve? infiniflow#3978 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) commit 95259af Author: so95 <is.thaison@gmail.com> Date: Wed Dec 11 10:12:57 2024 +0700 update typo vietnamese (infiniflow#3973) update typo vietnamese ### Type of change - [x] Refactoring --------- Co-authored-by: Yingfeng <yingfeng.zhang@gmail.com> Co-authored-by: Jin Hai <haijin.chn@gmail.com> Co-authored-by: bill <yibie_jingnian@163.com> commit 8554550 Author: Scott Davidson <49713135+sd109@users.noreply.github.com> Date: Wed Dec 11 03:10:33 2024 +0000 Disable SQL DB binlog in Helm chart (infiniflow#3976) ### What problem does this PR solve? The initial Helm chart implementation added in infiniflow#3815 suffers from an issue where the 5GB data volume for the SQL DB is filled up with [binlog](https://dev.mysql.com/doc/refman/8.4/en/binary-log.html) files after just a few days. Since the app uses a non-replicated SQL DB config I think it makes sense to disable the binlog in the SQL DB container. This is achieved by simply adding the required argument to the container startup command. ### Type of change - [X] Bug Fix (non-breaking change which fixes an issue) commit 80fb74c Merge: b72de7e b844ad6 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 10 22:18:00 2024 +0700 Merge remote-tracking branch 'upstream/main' commit b72de7e Merge: 74ccb59 e9b8c30 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 10 16:10:42 2024 +0700 Merge remote-tracking branch 'upstream/main' commit 74ccb59 Merge: a57cf0f fc4e644 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 10 15:47:40 2024 +0700 Merge remote-tracking branch 'upstream/main' commit a57cf0f Merge: f15bdbe 1c6116b Author: so95 <is.thaison@gmail.com> Date: Tue Dec 10 14:19:48 2024 +0700 Merge branch 'ragflow/agent' commit f15bdbe Merge: 2da9285 87e46b4 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 10 14:18:41 2024 +0700 Merge remote-tracking branch 'upstream/main' commit 1c6116b Merge: b445e43 87e46b4 Author: bill <yibie_jingnian@163.com> Date: Tue Dec 10 14:32:46 2024 +0800 Merge branch 'main' of github.com:infiniflow/ragflow into agent commit b445e43 Author: bill <yibie_jingnian@163.com> Date: Tue Dec 10 14:31:10 2024 +0800 Feat: If the token is wrong, a prompt message will pop up commit 2da9285 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 10 11:27:54 2024 +0700 update typo vi commit 3794a81 Merge: 46ac7ab d5a322a Author: so95 <is.thaison@gmail.com> Date: Tue Dec 10 11:01:50 2024 +0700 Merge remote-tracking branch 'upstream/main' commit d6777fa Merge: 880cdcc d5a322a Author: bill <yibie_jingnian@163.com> Date: Tue Dec 10 11:48:43 2024 +0800 Merge branch 'main' of github.com:infiniflow/ragflow into agent commit 880cdcc Merge: 38bd748 927873b Author: bill <yibie_jingnian@163.com> Date: Tue Dec 10 11:21:51 2024 +0800 Merge branch 'main' of github.com:infiniflow/ragflow into agent commit 38bd748 Author: bill <yibie_jingnian@163.com> Date: Tue Dec 10 11:17:37 2024 +0800 Feat: Modify the data structure of the chunk in the conversation infiniflow#3909 commit 46ac7ab Merge: f085687 927873b Author: so95 <is.thaison@gmail.com> Date: Tue Dec 10 10:03:14 2024 +0700 Merge remote-tracking branch 'upstream/main' commit f085687 Merge: 19d80af 3e134ac Author: so95 <is.thaison@gmail.com> Date: Tue Dec 10 09:22:24 2024 +0700 Merge remote-tracking branch 'upstream/main' commit 9e3a3d4 Author: bill <yibie_jingnian@163.com> Date: Mon Dec 9 19:25:38 2024 +0800 Feat: Provide iframe for external calls commit 19d80af Merge: 6e894cf 255f4cc Author: so95 <is.thaison@gmail.com> Date: Mon Dec 9 16:56:59 2024 +0700 Merge remote-tracking branch 'upstream/main' commit 6e894cf Merge: 16d4aae afe82fe Author: so95 <is.thaison@gmail.com> Date: Mon Dec 9 15:22:03 2024 +0700 Merge branch 'main' into main commit 16d4aae Merge: 89fb604 215e936 Author: so95 <is.thaison@gmail.com> Date: Mon Dec 9 13:20:02 2024 +0700 Merge remote-tracking branch 'upstream/main' commit 89fb604 Merge: e1f7e92 dcedfc5 Author: so95 <is.thaison@gmail.com> Date: Mon Dec 9 11:06:18 2024 +0700 Merge branch 'main' into main commit e1f7e92 Merge: b16254d b366ae4 Author: so95 <is.thaison@gmail.com> Date: Mon Dec 9 11:01:45 2024 +0700 Merge branch 'main' of https://github.com/isthaison/ragflow commit b16254d Author: so95 <is.thaison@gmail.com> Date: Mon Dec 9 11:01:18 2024 +0700 rollback py project commit fe2b6ba Merge: 6a41b1f dcedfc5 Author: bill <yibie_jingnian@163.com> Date: Mon Dec 9 11:38:28 2024 +0800 Merge branch 'main' of github.com:infiniflow/ragflow into agent commit 6a41b1f Merge: 8191c9f 1254ecf Author: bill <yibie_jingnian@163.com> Date: Mon Dec 9 11:36:56 2024 +0800 Merge branch 'main' of github.com:infiniflow/ragflow into agent commit b366ae4 Merge: 5608b26 1254ecf Author: Yingfeng <yingfeng.zhang@gmail.com> Date: Mon Dec 9 11:08:20 2024 +0800 Merge branch 'main' into main commit 5608b26 Merge: ea8c976 f284578 Author: so95 <is.thaison@gmail.com> Date: Fri Dec 6 23:08:29 2024 +0700 Merge branch 'main' into main commit ea8c976 Merge: 2975bdd 885418f Author: Yingfeng <yingfeng.zhang@gmail.com> Date: Fri Dec 6 21:26:08 2024 +0800 Merge branch 'main' into main commit 2975bdd Merge: e3d2b7f f54a8d7 Author: so95 <is.thaison@gmail.com> Date: Fri Dec 6 18:58:59 2024 +0700 Merge branch 'main' into main commit 8191c9f Author: bill <yibie_jingnian@163.com> Date: Fri Dec 6 19:02:51 2024 +0800 Feat: expose shared chat commit e3d2b7f Author: so95 <is.thaison@gmail.com> Date: Thu Dec 5 19:03:53 2024 +0700 fixe duckduckgo-search rate limited commit 9a799d1 Merge: 85cd06d 0d5486a Author: so95 <is.thaison@gmail.com> Date: Thu Dec 5 18:20:22 2024 +0700 Merge remote-tracking branch 'upstream/main' commit 85cd06d Merge: 0ffc128 3a0e9f9 Author: so95 <is.thaison@gmail.com> Date: Thu Dec 5 16:38:30 2024 +0700 Merge remote-tracking branch 'upstream/main' commit 0ffc128 Author: so95 <is.thaison@gmail.com> Date: Thu Dec 5 16:21:49 2024 +0700 fixed render when api return error commit fccefbd Merge: d6e9f70 56f473b Author: so95 <is.thaison@gmail.com> Date: Thu Dec 5 14:05:40 2024 +0700 Merge branch 'main' into main commit d6e9f70 Merge: efb4481 84afb42 Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 18:44:50 2024 +0700 Merge remote-tracking branch 'upstream/main' # Conflicts: # web/src/pages/flow/canvas/node/retrieval-node.tsx commit efb4481 Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 18:33:03 2024 +0700 remove var css commit b91187e Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 15:08:02 2024 +0700 update theme provider commit 7fbf5ad Merge: dfb9875 289f4f1 Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 14:56:52 2024 +0700 Merge remote-tracking branch 'upstream/main' commit dfb9875 Merge: db9fb20 1ff9527 Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 11:58:52 2024 +0700 Merge branch 'main' of https://github.com/isthaison/ragflow commit db9fb20 Merge: cde23ad f3318b2 Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 11:58:20 2024 +0700 Merge branch 'main' of https://github.com/infiniflow/ragflow commit 1ff9527 Merge: cde23ad f3318b2 Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 11:55:24 2024 +0700 Merge branch 'main' into main commit cde23ad Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 11:01:33 2024 +0700 update locale vi commit d5f8507 Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 08:58:25 2024 +0700 get new code commit 4447a6c Merge: 3260642 0c849bd Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 08:54:43 2024 +0700 Merge branch 'main' of https://github.com/isthaison/ragflow commit 3260642 Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 08:53:32 2024 +0700 not found key kb_id commit 0c849bd Merge: 2d6cf81 6657ca7 Author: so95 <is.thaison@gmail.com> Date: Wed Dec 4 08:52:29 2024 +0700 Merge branch 'main' into main commit 2d6cf81 Merge: 1c8b1fe 87455d7 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 22:58:58 2024 +0700 Merge remote-tracking branch 'upstream/main' # Conflicts: # conf/infinity_mapping.json commit 1c8b1fe Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 22:53:49 2024 +0700 get new code commit beee824 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 22:34:02 2024 +0700 get new code commit 459d9d4 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 21:58:06 2024 +0700 get new code commit 49b8662 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 21:11:06 2024 +0700 update css card for agent commit 5d8f9d2 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 14:19:49 2024 +0700 refactor commit 6e7d3f6 Merge: 5b8809d 44f5e22 Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 13:02:58 2024 +0700 Merge branch 'main' of https://github.com/isthaison/ragflow commit 44f5e22 Merge: d4f661f 7543047 Author: so95 <is.thaison@gmail.com> Date: Mon Dec 2 22:02:34 2024 -0800 Merge branch 'infiniflow:main' into main commit 5b8809d Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 12:56:57 2024 +0700 update locale res commit d4f661f Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 09:38:33 2024 +0700 fixed key not found commit d661f1f Author: so95 <is.thaison@gmail.com> Date: Tue Dec 3 09:38:06 2024 +0700 Allow svg icon to customize color according to theme Allow svg icon to customize color according to theme commit ea4e1f8 Merge: 5b62a4a ed7e46b Author: so95 <is.thaison@gmail.com> Date: Mon Dec 2 07:28:22 2024 -0800 Merge branch 'main' into main commit 5b62a4a Merge: 05823f7 9d09354 Author: Jin Hai <haijin.chn@gmail.com> Date: Mon Dec 2 17:32:21 2024 +0800 Merge branch 'main' into main commit 05823f7 Author: so95 <is.thaison@gmail.com> Date: Mon Dec 2 09:28:19 2024 +0700 fixed get commit eb5f2f1 Merge: 6e4f401 59a5813 Author: so95 <is.thaison@gmail.com> Date: Sun Dec 1 18:26:49 2024 -0800 Merge branch 'infiniflow:main' into main commit 6e4f401 Author: so95 <is.thaison@gmail.com> Date: Fri Nov 29 18:07:16 2024 +0700 restore color for light mode commit 619ee59 Merge: 84ccf4e a19210d Author: so95 <is.thaison@gmail.com> Date: Fri Nov 29 02:21:26 2024 -0800 Merge branch 'infiniflow:main' into main commit 84ccf4e Author: so95 <is.thaison@gmail.com> Date: Fri Nov 29 10:54:01 2024 +0700 restore color for light mode commit faa0fda Merge: b207aff 2229431 Author: so95 <is.thaison@gmail.com> Date: Wed Nov 27 03:42:42 2024 -0800 Merge branch 'infiniflow:main' into main commit b207aff Author: so95 <is.thaison@gmail.com> Date: Wed Nov 27 17:30:26 2024 +0700 restore background color for message mode light and width sidebar commit 755aa67 Author: so95 <is.thaison@gmail.com> Date: Wed Nov 27 09:30:04 2024 +0700 get prompt_config prologue instead of hard setting value on api commit 175d4c6 Merge: 8c75382 7f48acb Author: so95 <is.thaison@gmail.com> Date: Tue Nov 26 18:15:00 2024 -0800 Merge branch 'infiniflow:main' into main commit 8c75382 Author: so95 <is.thaison@gmail.com> Date: Tue Nov 26 16:05:20 2024 +0700 update css icon for mode dark agent compoent commit 54ad304 Merge: 489d47a 5c59651 Author: so95 <is.thaison@gmail.com> Date: Tue Nov 26 11:38:27 2024 +0700 Merge branch 'infiniflow:main' into main commit 489d47a Merge: 99cd666 3df1663 Author: so95 <is.thaison@gmail.com> Date: Tue Nov 26 09:32:06 2024 +0700 Merge branch 'main' into main commit 99cd666 Author: so95 <is.thaison@gmail.com> Date: Mon Nov 25 15:58:01 2024 +0700 update css icon for mode dark commit 6244cfb Author: so95 <is.thaison@gmail.com> Date: Mon Nov 25 11:48:35 2024 +0700 change utf8mb4_unicode_ci commit e0256eb Author: so95 <is.thaison@gmail.com> Date: Mon Nov 25 11:47:43 2024 +0700 ignore type check warning ignore type check warning commit 1358863 Author: so95 <is.thaison@gmail.com> Date: Mon Nov 25 09:40:05 2024 +0700 ignore type check warning ignore type check warning commit 7e92fb0 Author: so95 <is.thaison@gmail.com> Date: Mon Nov 25 09:31:51 2024 +0700 Revert "ignore type check warning" This reverts commit 31d6e9d. commit 31d6e9d Author: so95 <is.thaison@gmail.com> Date: Mon Nov 25 09:18:53 2024 +0700 ignore type check warning commit f4c292a Author: so95 <is.thaison@gmail.com> Date: Mon Nov 25 09:16:52 2024 +0700 ignore type check warning commit f4e8e08 Merge: 0ad74a8 6a3f9bc Author: so95 <is.thaison@gmail.com> Date: Mon Nov 25 08:31:15 2024 +0700 Merge branch 'infiniflow:main' into main commit 0ad74a8 Author: so95 <is.thaison@gmail.com> Date: Sat Nov 23 10:53:02 2024 +0700 remove logging commit 22aa28e Author: so95 <is.thaison@gmail.com> Date: Sat Nov 23 10:52:04 2024 +0700 get prompt_config prologue instead of hard setting value commit 42936b1 Merge: 918899e 8750963 Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 22:22:20 2024 +0700 Merge branch 'infiniflow:main' into main commit 918899e Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 20:22:12 2024 +0700 fixed api error systax commit 3ae9253 Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 20:13:27 2024 +0700 fixed css night mode for flow and header item checked commit 32d7228 Merge: 5cce426 cc219ff Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 15:25:09 2024 +0700 Merge branch 'infiniflow:main' into main commit 5cce426 Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 14:25:44 2024 +0700 update css for login commit f4e3c0c Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 11:36:28 2024 +0700 Update css light and dark commit d179080 Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 11:01:15 2024 +0700 update css suitable for light and dark theme commit 7d475f8 Merge: cb3e74b 482c1b5 Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 10:10:20 2024 +0700 Merge branch 'infiniflow:main' into main commit cb3e74b Merge: 0740c52 691ea28 Author: Yingfeng <yingfeng.zhang@gmail.com> Date: Fri Nov 22 11:01:44 2024 +0800 Merge branch 'main' into main commit 0740c52 Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 10:01:21 2024 +0700 error when chunks is null commit db2a84d Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 09:18:41 2024 +0700 Fix the datum does not have available id. commit 7586158 Author: so95 <is.thaison@gmail.com> Date: Fri Nov 22 09:17:42 2024 +0700 Fixed the datum does not have available id. commit 49933b4 Author: so95 <is.thaison@gmail.com> Date: Thu Nov 21 20:03:22 2024 +0700 Theme switch support commit f9df213 Merge: 37450c4 cc5960b Author: so95 <is.thaison@gmail.com> Date: Thu Nov 21 19:07:41 2024 +0700 Merge branch 'infiniflow:main' into main commit 37450c4 Author: so95 <is.thaison@gmail.com> Date: Thu Nov 21 14:24:41 2024 +0700 Minio icon not displayed commit 23f6ed4 Author: so95 <is.thaison@gmail.com> Date: Thu Nov 21 10:33:47 2024 +0700 Vietnamese language support on web
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
…nt 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)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there an existing issue for the same bug?
RAGFlow workspace code commit ID
7ddccbb
RAGFlow image version
v0.14.1
Other environment information
No response
Actual behavior
Every time you switch the page number of a chunk, the PDF document will be reloaded.
Expected behavior
No response
Steps to reproduce
Additional information
No response
The text was updated successfully, but these errors were encountered: