diff --git a/packages/chat-client/src/components/SettingsView.jsx b/packages/chat-client/src/components/SettingsView.jsx index 16380a6..34f29bc 100644 --- a/packages/chat-client/src/components/SettingsView.jsx +++ b/packages/chat-client/src/components/SettingsView.jsx @@ -256,18 +256,13 @@ function ModelsSection({ onNavigate }) { description="Path to folder containing .gguf files" action={} /> - saveSetting('temperature', val)} - saving={saving} - /> - } + value={settings?.temperature} + min={0} max={2} step={0.05} + onSave={val => saveSetting('temperature', val)} + saving={saving} />