diff --git a/cmd/sidekick-tui/main.go b/cmd/sidekick-tui/main.go index ab7534a..8ed97c6 100644 --- a/cmd/sidekick-tui/main.go +++ b/cmd/sidekick-tui/main.go @@ -421,7 +421,11 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { } m.textarea, tiCmd = m.textarea.Update(msg) - m.viewport, vpCmd = m.viewport.Update(msg) + + if _, ok := msg.(tea.KeyMsg); !ok { + m.viewport, vpCmd = m.viewport.Update(msg) + } + return m, tea.Batch(tiCmd, vpCmd) } diff --git a/config.toml b/config.toml index c87e43b..91f1b13 100644 --- a/config.toml +++ b/config.toml @@ -23,7 +23,8 @@ port = 8080 [models.ollama] # model_id = "Jackrong/Qwen3.5-2B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M" - model_id = "LiquidAI/LFM2.5-1.2B-Thinking-GGUF:Q4_K_M" + model_id = "unsloth/Qwen3.5-0.8B-GGUF:Q8_0" + # endpoint = "http://127.0.0.1:11434/v1" endpoint = "http://127.0.0.1:8080/v1" api_key = "" temperature = 0.6