refactor(lint): code lint

This commit is contained in:
orenzhang
2025-03-07 19:59:09 +08:00
parent 92fb1109b6
commit 72ea6dd9f1
5 changed files with 34 additions and 18 deletions

View File

@@ -462,8 +462,12 @@
<div class="flex items-center relative">
<Tooltip
content={webConfig.BYPASS_WEB_SEARCH_EMBEDDING_AND_RETRIEVAL
? $i18n.t('Inject the entire content as context for comprehensive processing, this is recommended for complex queries.')
: $i18n.t('Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.')}
? $i18n.t(
'Inject the entire content as context for comprehensive processing, this is recommended for complex queries.'
)
: $i18n.t(
'Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.'
)}
>
<Switch bind:state={webConfig.BYPASS_WEB_SEARCH_EMBEDDING_AND_RETRIEVAL} />
</Tooltip>