mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-19 04:10:26 -05:00
[GH-ISSUE #23496] issue: "Continue" (Generate More) ignores edited assistant message and repeats original text #123313
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 @leetraman822 on GitHub (Apr 8, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/23496
Check Existing Issues
Installation Method
Git Clone
Open WebUI Version
v0.8.12
Ollama Version (if applicable)
No response
Operating System
Windows 10
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
When I edit an assistant's message in the chat and click the "Continue" (Generate More) button, the model should use the newly edited text as the current assistant payload and seamlessly append the newly generated completion to it.
For example, if the AI says: Hello, nice to meet you, how can I help?
And I edit it to: Hello, we meet again, today I need help with
Clicking "Continue" should result in: Hello, we meet again, today I need help with [new generated content].
Actual Behavior
The frontend UI ignores the edits made to the assistant's message. When "Continue" is triggered, the underlying request seems to use the original, unedited message state.
Furthermore, instead of replacing or correctly appending, it repeats the original text.
Using the example above, after editing and clicking "Continue", the bubble turns into:
Hello, nice to meet you, how can I help?Hello, nice to meet you, how can I help?
The edits are completely lost, and the original message is duplicated. This occurs regardless of the model or API backend being used.
Steps to Reproduce
1.Start a chat with any model.
2.Send a prompt (e.g., "Say hello").
3.Wait for the assistant to generate a response (e.g., "Hello, nice to meet you, how can I help you today?").
4.Hover over the assistant's message and click the Edit button.
5.Modify the text significantly (e.g., change it to "Hello, we meet again, today I need help with").
6.Click the checkmark to Save the edit.
7.Click the Continue button at the bottom of the assistant's message bubble.
8.Observe the result: The message reverts to the original text and duplicates it, ignoring the saved edits completely.
Logs & Screenshots
Additional Information
No response
@Classic298 commented on GitHub (Apr 8, 2026):
https://github.com/open-webui/open-webui/issues/21564