mirror of
https://github.com/open-webui/open-webui.git
synced 2026-03-22 06:02:06 -05:00
feat: Improve first login experience #6208
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 @spammenotinoz on GitHub (Aug 26, 2025).
Check Existing Issues
Problem Description
Currently the system is hit quite hard when a user first logs in.
This can be mitigated to some extent by reverse proxy caching (especially API endpoint)
The key cause is the model and permissions enumeration relating to workspace models.
With a fast database this isn't an issue, however for many users this experience is far from optimal.
Desired Solution you'd like
Break-out Workspace\Models or somehow LazyLoad in the background, as to not impact the login experience.
Alternatives Considered
Disabling workspace models entirely.
Reverse Proxy Caching (fixes the page reload experience, but not logins after the cache has expired)
Additional Database Indexes (minor improvement)
Additional Context
No response