From 616383e9bcdd6562e7f13c9fdf3ac9614332bc2c Mon Sep 17 00:00:00 2001 From: Storme-bit Date: Sat, 18 Apr 2026 02:45:43 -0700 Subject: [PATCH] model temperature settings --- .../chat-client/src/components/SettingsView.jsx | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) 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} />