mirror of
https://github.com/open-webui/open-webui.git
synced 2026-08-27 07:54:55 -06:00
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.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user