mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 00:17:31 +00:00
feat: Text check before synchronization (#689)
* fix: icon * fix: web selector * fix: web selector * perf: link sync * dev doc * chomd doc * perf: git intro * 466 intro * intro img * add json editor (#5) * team limit * websync limit * json editor * text editor * perf: search test * change cq value type * doc * intro img --------- Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
### Fast GPT V4.6.6
|
||||
|
||||
1. 新增 - [问题补全模块](https://doc.fastgpt.in/docs/workflow/modules/coreferenceresolution/)
|
||||
2. 新增 - [文本编辑模块](https://doc.fastgpt.in/docs/workflow/modules/text_editor/)
|
||||
3. 新增 - [判断器模块](https://doc.fastgpt.in/docs/workflow/modules/tfswitch/)
|
||||
4. 新增 - [自定义反馈模块](https://doc.fastgpt.in/docs/workflow/modules/custom_feedback/)
|
||||
5. 新增 - 【内容提取】模块支持选择模型,以及字段枚举
|
||||
6. 优化 - docx读取,兼容表格(表格转markdown)
|
||||
7. 优化 - 高级编排连接线交互
|
||||
8. 优化 - 由于 html2md 导致的 cpu密集计算,阻断线程问题
|
||||
9. 修复 - 高级编排提示词提取描述
|
||||
10. [使用文档](https://doc.fastgpt.in/docs/intro/)
|
||||
11. [点击查看高级编排介绍文档](https://doc.fastgpt.in/docs/workflow)
|
||||
12. [点击查看商业版](https://doc.fastgpt.in/docs/commercial/)
|
||||
1. 新增 - Http 模块请求头支持 Json 编辑器。
|
||||
2. 新增 - 搜索方式:分离向量语义检索,全文检索和重排,通过 RRF 进行排序合并。
|
||||
3. 新增 - [问题补全模块](https://doc.fastgpt.in/docs/workflow/modules/coreferenceresolution/)
|
||||
5. 新增 - [文本编辑模块](https://doc.fastgpt.in/docs/workflow/modules/text_editor/)
|
||||
6. 新增 - [判断器模块](https://doc.fastgpt.in/docs/workflow/modules/tfswitch/)
|
||||
7. 新增 - [自定义反馈模块](https://doc.fastgpt.in/docs/workflow/modules/custom_feedback/)
|
||||
8. 新增 - 【内容提取】模块支持选择模型,以及字段枚举
|
||||
9. [使用文档](https://doc.fastgpt.in/docs/intro/)
|
||||
10. [点击查看高级编排介绍文档](https://doc.fastgpt.in/docs/workflow)
|
||||
11. [点击查看商业版](https://doc.fastgpt.in/docs/commercial/)
|
||||
|
@@ -410,6 +410,7 @@
|
||||
"Read Metadata": "Read Metadata",
|
||||
"Training Type": "Training Type",
|
||||
"Updatetime": "Update Time",
|
||||
"Web page selector": "Web Selector",
|
||||
"metadata": "Metadata",
|
||||
"read source": "Read Source",
|
||||
"source": "Source",
|
||||
@@ -420,6 +421,12 @@
|
||||
"active": "Ready",
|
||||
"syncing": "Syncing"
|
||||
},
|
||||
"sync": {
|
||||
"result": {
|
||||
"sameRaw": "The content has not changed and no update is required.",
|
||||
"success": "Start synchronization"
|
||||
}
|
||||
},
|
||||
"training": {
|
||||
"type chunk": "Chunk",
|
||||
"type manual": "Manual",
|
||||
|
@@ -410,6 +410,7 @@
|
||||
"Read Metadata": "查看元数据",
|
||||
"Training Type": "训练模式",
|
||||
"Updatetime": "更新时间",
|
||||
"Web page selector": "网站选择器",
|
||||
"metadata": "元数据",
|
||||
"read source": "查看原始内容",
|
||||
"source": "数据来源",
|
||||
@@ -420,6 +421,12 @@
|
||||
"active": "已就绪",
|
||||
"syncing": "同步中"
|
||||
},
|
||||
"sync": {
|
||||
"result": {
|
||||
"sameRaw": "内容未变动,无需更新",
|
||||
"success": "开始同步"
|
||||
}
|
||||
},
|
||||
"training": {
|
||||
"type chunk": "直接分段",
|
||||
"type manual": "手动",
|
||||
@@ -515,9 +522,13 @@
|
||||
},
|
||||
"score": {
|
||||
"embedding": "语义检索",
|
||||
"embedding desc": "通过计算向量之间的距离获取得分,范围为 0~1。",
|
||||
"fullText": "全文检索",
|
||||
"fullText desc": "计算相同关键词的得分,范围为 0~无穷。",
|
||||
"reRank": "结果重排",
|
||||
"rrf": "RRF 合并"
|
||||
"reRank desc": "通过 ReRank 模型计算句子之间的关联度,范围为 0~1。",
|
||||
"rrf": "综合排名",
|
||||
"rrf desc": "通过倒排计算的方式,合并多个检索结果。"
|
||||
},
|
||||
"search mode": "搜索模式"
|
||||
},
|
||||
|
Reference in New Issue
Block a user