mirror of
https://github.com/open-webui/open-webui.git
synced 2026-08-02 06:39:02 -05:00
[GH-ISSUE #22937] feat: Allow reuse of model icons across multiple models (icon deduplication) #74450
Reference in New Issue
Block a user
Originally created by @wogam on GitHub (Mar 22, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/22937
Check Existing Issues
Verify Feature Scope
Problem Description
When multiple models share the same provider icon (e.g., three GPT-5 variants all using the ChatGPT logo), each model currently stores and serves its own separate copy of that image. There's no way to reuse or reference an existing icon — you have to upload it individually for every model.
This becomes a real performance problem at scale. A user with 20 models across 3-4 providers (OpenAI, Anthropic, Google, etc.) ends up loading 20 separate icon assets on startup, even though only 3-4 unique images are actually needed. For users leveraging OpenRouter — which surfaces a large number of models — this gets significantly worse.
Desired Solution you'd like
Implement icon deduplication so that identical icons are stored once and referenced by multiple models, rather than duplicated per model. Ideally this could work in one of two ways:
Either approach would reduce redundant storage and cut down the number of icon requests the client has to make on load — from one per model down to one per unique icon.
Alternatives Considered
No response
Additional Context
No response