feat(knowledge): 优化文档分段功能

- 添加段落编辑和保存功能
- 新增关键词添加和删除功能
- 优化段落显示样式
- 添加分段标识符和重叠长度设置说明
This commit is contained in:
陈昱达
2025-05-13 16:33:41 +08:00
parent e83360aead
commit b08ecfe1fb
6 changed files with 266 additions and 23 deletions

View File

@@ -420,3 +420,11 @@ export function uploadImage(data) {
data
})
}
export function segmentUpdate(data) {
return request({
url: getUrl(`/datasetDocumentEx/segment/update`),
method: 'post',
data
})
}