feat(knowledge): 初步完成知识库分片预览

This commit is contained in:
v-zhangjc9
2025-05-23 19:12:41 +08:00
parent fce4816880
commit e57c81ce75
9 changed files with 384 additions and 59 deletions

View File

@@ -33,21 +33,19 @@ const DataImport: React.FC = () => {
name: 'mode',
type: 'radios',
label: '解析模式',
value: 'normal',
value: 'NORMAL',
options: [
{
value: 'normal',
value: 'NORMAL',
label: '常规模式',
},
{
value: 'llm',
value: 'LLM',
label: '智能模式',
disabled: true,
},
{
value: 'qa',
value: 'QA',
label: 'Q/A模式',
disabled: true,
},
],
},
@@ -105,7 +103,6 @@ const DataImport: React.FC = () => {
},
dataType: 'form',
data: {
name: name,
mode: '${mode}',
type: '${type}',
content: '${content}',