mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
perf: 优化检索模式参数设置
This commit is contained in:
parent
e87f5b07cd
commit
208f4904a1
|
|
@ -56,7 +56,7 @@
|
|||
<el-input-number
|
||||
v-model="form.similarity"
|
||||
:min="0"
|
||||
:max="1"
|
||||
:max="form.search_mode === 'blend' ? 2 : 1"
|
||||
:precision="3"
|
||||
:step="0.1"
|
||||
controls-position="right"
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@
|
|||
<el-input-number
|
||||
v-model="cloneForm.similarity"
|
||||
:min="0"
|
||||
:max="1"
|
||||
:max="cloneForm.search_mode === 'blend' ? 2 : 1"
|
||||
:precision="3"
|
||||
:step="0.1"
|
||||
controls-position="right"
|
||||
|
|
|
|||
Loading…
Reference in New Issue