mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
[PR #22436] [CLOSED] feat: support upstream model metadata from /v1/models response #49741
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?
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/22436
Author: @mpcusack-altos
Created: 3/8/2026
Status: ❌ Closed
Base:
dev← Head:feat/upstream-model-metadata📝 Commits (10+)
fe6783cMerge pull request #19030 from open-webui/devfc05e0aMerge pull request #19405 from open-webui/deve3faec6Merge pull request #19416 from open-webui/dev9899293Merge pull request #19448 from open-webui/dev140605eMerge pull request #19462 from open-webui/dev6f1486fMerge pull request #19466 from open-webui/devd95f533Merge pull request #19729 from open-webui/deva7271530.6.43 (#20093)6adde20Merge pull request #20394 from open-webui/devf9b0534Merge pull request #20522 from open-webui/dev📊 Changes
1 file changed (+26 additions, -0 deletions)
View changed files
📝
backend/open_webui/utils/models.py(+26 -0)📄 Description
Pull Request Checklist\n\n- [x] Target branch:
dev\n- [x] Description: See below\n- [x] Changelog: See below\n- [x] Testing: Manual testing with a custom OpenAI-compatible backend returningmetain/v1/models. Verified: upstream meta appears in UI, DB overrides take precedence, DEFAULT_MODEL_METADATA still applies as base.\n- [x] Code review: Self-reviewed\n- [x] Title Prefix:feat\n\n# Changelog Entry\n\n### Description\n\nAllow OpenAI-compatible backends to include an optionalmetaobject in their/v1/modelsresponse entries. OpenWebUI readsprofile_image_url,description, andcapabilitiesfrom it — applying them as defaults that DB overrides andDEFAULT_MODEL_METADATAcan still override.\n\nThis enables managing model presentation (icons, descriptions, capability flags) as infrastructure-as-code on the backend side, without requiring manual configuration in the OpenWebUI admin UI for each model.\n\nPrecedence (lowest to highest):\n1.DEFAULT_MODEL_METADATAconfig (global blanket defaults for all models)\n2. Upstreammetafrom/v1/modelsresponse (model-specific from the provider)\n3. DB model override (admin UI / API)\n\n### Example upstream/v1/modelsresponse entry\n\njson\n{\n \"id\": \"claude-sonnet-4-20250514\",\n \"object\": \"model\",\n \"owned_by\": \"anthropic\",\n \"meta\": {\n \"profile_image_url\": \"https://example.com/anthropic-icon.png\",\n \"description\": \"Anthropic's Claude Sonnet 4\",\n \"capabilities\": { \"vision\": true }\n }\n}\n\n\n### Added\n\n- Upstream model metadata support: OpenWebUI now readsmeta.profile_image_url,meta.description, andmeta.capabilitiesfrom/v1/modelsresponse entries served by OpenAI-compatible backends (including Ollama)\n\n### Changed\n\n-get_all_models()inbackend/open_webui/utils/models.py— added a new loop after theDEFAULT_MODEL_METADATAblock that applies upstreammetafields, skipping models with DB overrides\n\n### Why no other files need changes\n\n- openai.py: Already preserves all upstream fields via**modelspread and stores the original inmodel[\"openai\"]\n- Frontend (Svelte): Already readsinfo.metafor display (profile_image_url,description,capabilities)\n\n---\n\n### Additional Information\n\n- ~26 lines of new code in a single file\n- No new dependencies\n- No frontend changes required\n- No breaking changes — purely additive; backends that don't includemetaare unaffected\n\n### Contributor License Agreement\n\n- [x] By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.