mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: The similarity of knowledge base mixed retrieval should be 0-2 (#3021)
This commit is contained in:
parent
a6533c0db7
commit
00a3e5ddc3
|
|
@ -81,7 +81,7 @@
|
||||||
<el-input-number
|
<el-input-number
|
||||||
v-model="form.dataset_setting.similarity"
|
v-model="form.dataset_setting.similarity"
|
||||||
:min="0"
|
:min="0"
|
||||||
:max="form.search_mode === 'blend' ? 2 : 1"
|
:max="form.dataset_setting.search_mode === 'blend' ? 2 : 1"
|
||||||
:precision="3"
|
:precision="3"
|
||||||
:step="0.1"
|
:step="0.1"
|
||||||
:value-on-clear="0"
|
:value-on-clear="0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue