mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-05 18:38:17 -05:00
[PR #19686] [CLOSED] Fix embedding model update logic #25309
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/19686
Author: @rcivek
Created: 12/2/2025
Status: ❌ Closed
Base:
main← Head:fix-embedding-model-update📝 Commits (10+)
69722bafix/refac: workspace shared model list1bfe2c9Merge pull request #19464 from aleixdorca/devc7eb713fix: user preview profile imagec5b73d7refac/fix: function name filter type477097crefac8b2015arefac4df5b7efix: update dependency to prevent rediss:// failure (#19488)c631659i18n: de-de (#19471)4370deefix: async save docs to vector db9fca496chore: dep bump pypdf to ver 6.4.0 (#19508)📊 Changes
215 files changed (+6269 additions, -1520 deletions)
View changed files
📝
backend/open_webui/config.py(+26 -4)📝
backend/open_webui/main.py(+12 -3)➕
backend/open_webui/migrations/versions/2f1211949ecc_update_message_and_channel_member_table.py(+103 -0)📝
backend/open_webui/migrations/versions/38d63c18f30f_add_oauth_session_table.py(+32 -4)➕
backend/open_webui/migrations/versions/90ef40d4714e_update_channel_and_channel_members_table.py(+81 -0)➕
backend/open_webui/migrations/versions/b10670c03dd5_update_user_table.py(+251 -0)📝
backend/open_webui/models/auths.py(+4 -12)📝
backend/open_webui/models/channels.py(+550 -18)📝
backend/open_webui/models/groups.py(+98 -16)📝
backend/open_webui/models/messages.py(+103 -11)📝
backend/open_webui/models/models.py(+53 -5)📝
backend/open_webui/models/notes.py(+1 -1)📝
backend/open_webui/models/oauth_sessions.py(+1 -1)📝
backend/open_webui/models/tools.py(+1 -1)📝
backend/open_webui/models/users.py(+222 -50)📝
backend/open_webui/retrieval/vector/dbs/milvus_multitenancy.py(+0 -1)📝
backend/open_webui/retrieval/web/main.py(+1 -1)📝
backend/open_webui/routers/auths.py(+32 -7)📝
backend/open_webui/routers/channels.py(+722 -109)📝
backend/open_webui/routers/folders.py(+17 -1)...and 80 more files
📄 Description
Summary
Fixes the embedding model update logic by correctly passing the
auto_updateflag toget_model_path.Changes
RAG_EMBEDDING_MODEL_AUTO_UPDATEtoget_efandget_model_path.Testing
Verified that models update correctly when auto-update is enabled and still work normally in offline mode.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.