mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
FIX: Hybrid Search lexical-semantic tags
FIX Error in Hybrid Search lexical-semantic terms places I was reviewing and I noticed that the lexical-semantic terms are inverted. BM25 weight=1 --> lexical BM25 weight=0 --> semantic
This commit is contained in:
parent
3111d1bf61
commit
292cb62d4a
1 changed files with 2 additions and 2 deletions
|
|
@ -1104,10 +1104,10 @@
|
|||
<div class="py-0.5">
|
||||
<div class="flex w-full justify-between">
|
||||
<div class=" text-left text-xs font-small">
|
||||
{$i18n.t('lexical')}
|
||||
{$i18n.t('semantic')}
|
||||
</div>
|
||||
<div class=" text-right text-xs font-small">
|
||||
{$i18n.t('semantic')}
|
||||
{$i18n.t('lexical')}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue