feat: replace VSelect with VAutocomplete for LLM provider selection in settings

This commit is contained in:
jxxghp
2026-05-04 20:04:14 +08:00
parent aa49c6ccbc
commit 162cce1f50
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1004,7 +1004,7 @@ watch(currentLlmSnapshotKey, (snapshotKey, previousSnapshotKey) => {
/> />
</VCol> </VCol>
<VCol v-if="SystemSettings.Basic.AI_AGENT_ENABLE" cols="12" md="6"> <VCol v-if="SystemSettings.Basic.AI_AGENT_ENABLE" cols="12" md="6">
<VSelect <VAutocomplete
v-model="SystemSettings.Basic.LLM_PROVIDER" v-model="SystemSettings.Basic.LLM_PROVIDER"
:label="t('setting.system.llmProvider')" :label="t('setting.system.llmProvider')"
:hint="t('setting.system.llmProviderHint')" :hint="t('setting.system.llmProviderHint')"
+1 -1
View File
@@ -214,7 +214,7 @@ onMounted(async () => {
</VCol> </VCol>
<VCol cols="12" md="6"> <VCol cols="12" md="6">
<VSelect <VAutocomplete
v-model="wizardData.agent.provider" v-model="wizardData.agent.provider"
:label="t('setting.system.llmProvider')" :label="t('setting.system.llmProvider')"
:hint="t('setting.system.llmProviderHint')" :hint="t('setting.system.llmProviderHint')"