diff --git a/client/src/components/Settings/LlmConnectionSection.tsx b/client/src/components/Settings/LlmConnectionSection.tsx index f9ec1baf..538ee226 100644 --- a/client/src/components/Settings/LlmConnectionSection.tsx +++ b/client/src/components/Settings/LlmConnectionSection.tsx @@ -6,6 +6,7 @@ import { useSettingsStore } from '../../store/settingsStore' import type { Settings } from '../../types' import Section from './Section' import ToggleSwitch from './ToggleSwitch' +import CustomSelect from '../shared/CustomSelect' type Provider = NonNullable @@ -76,15 +77,15 @@ export default function LlmConnectionSection(): React.ReactElement {
- + onChange={v => setProvider(v as Provider)} + options={[ + { value: 'local', label: t('settings.aiParsing.providerLocal') }, + { value: 'openai', label: t('settings.aiParsing.providerOpenai') }, + { value: 'anthropic', label: t('settings.aiParsing.providerAnthropic') }, + ]} + />