From fe837d80e78ef2efa84d87b8e3852179335bca5f Mon Sep 17 00:00:00 2001 From: Algorithm5838 <108630393+Algorithm5838@users.noreply.github.com> Date: Mon, 2 Mar 2026 01:34:50 +0300 Subject: [PATCH] fix: pass params when saving a temporary chat The system prompt and other chat controls overrides were lost after saving because `params` wasn't included in the `createNewChat` call. --- src/lib/components/chat/Chat.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 14a7de457f..4d8d06f54c 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -2724,6 +2724,7 @@ id: uuidv4(), title: title.length > 50 ? `${title.slice(0, 50)}...` : title, models: selectedModels, + params: params, history: history, messages: messages, timestamp: Date.now()