mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-17 08:21:12 -05:00
[GH-ISSUE #5624] auto retry function #29587
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 @123hi123 on GitHub (Sep 23, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/5624
Is your feature request related to a problem? Please describe.
The O1 model is extremely unstable when processing requests. Users currently have to manually retry multiple times until they get a correct response from the O1 model, which is frustrating and time-consuming.
Describe the solution you'd like
I would like to add an automatic retry functionality. This feature would allow users to set a number of retry attempts. The system would then automatically retry the request up to the specified number of times, without requiring manual intervention from the user, until a correct response is received from the O1 model.
Describe alternatives you've considered
An alternative could be to implement a queueing system that holds failed requests and retries them in the background. However, this might not provide immediate feedback to the user.
Additional context
This feature would significantly improve user experience, especially when dealing with unstable models like O1. It would save users time and reduce frustration caused by manual retries.