feat(knowledge): 实现知识库命中测试功能

- 新增 hitTest 函数以调用命中测试接口
- 创建 HitTest 组件以展示命中测试结果
- 在知识库详情页面添加命中测试按钮和相关功能
- 优化知识库详情页面布局和样式
This commit is contained in:
Huangzhe
2025-04-28 15:43:02 +08:00
parent 41fd5e0ad9
commit 46b240e847
4 changed files with 104 additions and 186 deletions

View File

@@ -33,6 +33,16 @@ export function datasetCreate(data) {
data
})
}
// 命中测试
export function hitTest(data) {
return request({
url: getUrl('/datasetsEx/hit/test'),
method: 'post',
data
})
}
// 知识库删除
export function datasetDelete(data) {
return request({