[GH-ISSUE #8263] Merged Response is not available in v0.5.3. #134785

Closed
opened 2026-05-25 01:00:16 -05:00 by GiteaMirror · 2 comments
Owner

Originally created by @GrayXu on GitHub (Jan 2, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/8263

Bug Report

Important Notes

Installation Method

docker

Environment

  • Open WebUI Version: v0.5.3

  • Operating System: Windows 11

  • Browser (if applicable): Chrome

Confirmation:

  • I have read and followed all the instructions provided in the README.md.
  • I am on the latest version of both Open WebUI and Ollama.
  • I have included the browser console logs.
  • I have included the Docker container logs.
  • I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below.

Expected Behavior:

Clicking it will output the Merged Response correctly.

Actual Behavior:

After clicking, the web page is stuck
image

Description

Bug Summary:

Merged Response is not available in v0.5.3.

Additional Information

It's worth mentioning that after clicking, my backend feedback shows that the task model has actually completed the input and output, but the web frontend indeed has no response. Even after refreshing, the loading component remains the same. Perhaps this is a bug introduced by the async response feature?

Thanks in advance. BTW, it would be even better if the merge operation, like title generation, could also expose a prompt for the user to modify

Originally created by @GrayXu on GitHub (Jan 2, 2025). Original GitHub issue: https://github.com/open-webui/open-webui/issues/8263 # Bug Report ## Important Notes ## Installation Method docker ## Environment - **Open WebUI Version:** v0.5.3 - **Operating System:** Windows 11 - **Browser (if applicable)**: Chrome **Confirmation:** - [x] I have read and followed all the instructions provided in the README.md. - [x] I am on the latest version of both Open WebUI and Ollama. - [x] I have included the browser console logs. - [x] I have included the Docker container logs. - [x] I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below. ## Expected Behavior: Clicking it will output the Merged Response correctly. ## Actual Behavior: After clicking, the web page is stuck ![image](https://github.com/user-attachments/assets/7b776893-a2d2-49cc-8e73-e282225afc76) ## Description **Bug Summary:** Merged Response is not available in v0.5.3. ## Additional Information It's worth mentioning that after clicking, my backend feedback shows that the task model has actually completed the input and output, but the web frontend indeed has no response. Even after refreshing, the loading component remains the same. Perhaps this is a bug introduced by the async response feature? Thanks in advance. BTW, it would be even better if the merge operation, like title generation, could also expose a prompt for the user to modify
Author
Owner

@gabriel-ecegi commented on GitHub (Jan 2, 2025):

generate_moa_response is sending "chat_id" in payload.

causing error

{
"error": {
"message": "Unrecognized request argument supplied: chat_id",
"type": "invalid_request_error",
"param": null,
"code": null
}

openai generate_chat_completion should delete it, if so

if "chat_id" in payload:
    del payload["chat_id"]
<!-- gh-comment-id:2567618137 --> @gabriel-ecegi commented on GitHub (Jan 2, 2025): generate_moa_response is sending "chat_id" in payload. causing error { "error": { "message": "Unrecognized request argument supplied: chat_id", "type": "invalid_request_error", "param": null, "code": null } openai generate_chat_completion should delete it, if so if "chat_id" in payload: del payload["chat_id"]
Author
Owner

@tjbck commented on GitHub (Jan 2, 2025):

Good catch, Fixed on dev!

<!-- gh-comment-id:2568462837 --> @tjbck commented on GitHub (Jan 2, 2025): Good catch, Fixed on dev!
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#134785