mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
fix: Fix issue where title and tag generation did not work when selecting the At model
This commit is contained in:
parent
29c781875d
commit
91d0632bf4
1 changed files with 1 additions and 1 deletions
|
|
@ -1581,7 +1581,7 @@
|
|||
(messages.length == 2 &&
|
||||
messages.at(0)?.role === 'system' &&
|
||||
messages.at(1)?.role === 'user')) &&
|
||||
selectedModels[0] === model.id
|
||||
(selectedModels[0] === model.id || atSelectedModel !== undefined)
|
||||
? {
|
||||
background_tasks: {
|
||||
title_generation: $settings?.title?.auto ?? true,
|
||||
|
|
|
|||
Loading…
Reference in a new issue