mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-05 18:38:17 -05:00
[GH-ISSUE #18717] issue: New chats fail to set a distinct chat title #18683
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ITankForCAD on GitHub (Oct 29, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/18717
Check Existing Issues
Installation Method
Docker
Open WebUI Version
v0.6.34
Ollama Version (if applicable)
No response
Operating System
Fedora 43
Browser (if applicable)
Zen Browser (Firefox 144)
Confirmation
README.md.Expected Behavior
When title generation with a task model is disabled, the chat title should be set as the first few words of the user prompt.
Actual Behavior
New chats set the chat title as : New Chat. From the network requests, it seems that the call to api/v1/chats/new occurs before the chat completion, which sets the generic title of "New Chat". See the images below. I don't know if this is the desired behavior as it seems counter-intuitive.
Saving a temporary chat sets the chat title correctly. From the network requests, it seems that saving a temporary chat calls api/v1/chats/new after chat completion, which is expected.
Steps to Reproduce
Reproduce issue:
Reproduce expected behavior:
Logs & Screenshots
The chats with correct titles were temporary chats that were subsequently saved.
Additional Information
The first occurrence of this issue started around Oct. 9th which is right after release 0.6.33.
@silentoplayz commented on GitHub (Oct 29, 2025):
I am able to reproduce this issue on the latest
devcommit of Open WebUI withTitle Auto-Generationtoggled off in the userInterfacesettings.I've tested this issue twice to ensure it wasn't a fluke the first time.

@mlkt commented on GitHub (Oct 30, 2025):
Me too. I have already seen in the browser console that
/api/v1/tasks/title/completionssuccessfully returned a new title, but the web interface did not take effect, and the title remains asNew Chat.@acomarcho commented on GitHub (Oct 31, 2025):
Introduced a fix for the case reproduced by @silentoplayz in https://github.com/open-webui/open-webui/pull/18761 !