We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfae088 commit 1a1722cCopy full SHA for 1a1722c
ui/src/workflow/nodes/document-split-node/index.vue
@@ -50,11 +50,26 @@
50
/>
51
</el-select>
52
</el-form-item>
53
- <el-form-item :label="$t('子分块大小')">
54
- <el-slider
+ <el-form-item>
+ <template #label>
55
+ <div class="flex">
56
+ <span>子分块长度</span>
57
+ <el-tooltip
58
+ effect="dark"
59
+ placement="top"
60
+ >
61
+ <template #content>
62
+ 核心目标是平衡检索精度与召回效率 <br/>
63
+ •避免过短拆分:单块<50 字易导致语义碎片化,检索时可能因缺少上下文无法匹配查询意图<br/>
64
+ •避免过长拆分:单块>500 字会增加冗余信息,降低检索精准度,且占用更多存储和计算资源
65
+ </template>
66
+ <AppIcon iconName="app-warning" class="app-warning-icon"></AppIcon>
67
+ </el-tooltip>
68
+ </div>
69
70
+ <el-input-number
71
v-model="form_data.chunk_size"
72
show-input
- :show-input-controls="false"
73
:min="50"
74
:max="100000"
75
0 commit comments