Skip to content

Commit 9209122

Browse files
perf: Top N Segments increase to 10000
1 parent dd84da4 commit 9209122

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ui/src/views/application/component/ParamSettingDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
<el-input-number
9797
v-model="form.dataset_setting.top_n"
9898
:min="1"
99-
:max="100"
99+
:max="10000"
100100
:value-on-clear="1"
101101
controls-position="right"
102102
class="w-full"

ui/src/views/hit-test/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
<el-input-number
171171
v-model="cloneForm.top_number"
172172
:min="1"
173-
:max="100"
173+
:max="10000"
174174
controls-position="right"
175175
class="w-full"
176176
/>

ui/src/workflow/nodes/reranker-node/ParamSettingDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<el-input-number
5050
v-model="form.top_n"
5151
:min="1"
52-
:max="100"
52+
:max="10000"
5353
:value-on-clear="1"
5454
controls-position="right"
5555
class="w-full"

0 commit comments

Comments
 (0)