[PR #8599] [CLOSED] Main dev #61111

Closed
opened 2026-05-06 04:25:42 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/8599
Author: @shadowfaxproject
Created: 1/16/2025
Status: Closed

Base: mainHead: main-dev


📝 Commits (10+)

  • 3321885 add option to add database schema as env var
  • 6f1065b Merge branch 'dev' of github.com:open-webui/open-webui
  • 61303a2 refac: styling
  • 15a182c refac: styling
  • a763cc8 open-webui-46 Pull latest open-webui/open-webui updates into shadowfaxproject/open-webui
  • 0a59189 open-webui-46 Pull latest open-webui/open-webui updates into shadowfaxproject/open-webui
  • 960683e fix: torch mps not working
  • a0e63b0 fix: searchapi engine not showing
  • 2e00567 open-webui-46 Pull latest open-webui/open-webui updates into shadowfaxproject/open-webui
  • 8117bf8 Add admin check

📊 Changes

119 files changed (+924 additions, -468 deletions)

View changed files

📝 .github/workflows/integration-test.yml (+2 -0)
📝 CHANGELOG.md (+1 -1)
📝 backend/open_webui/__init__.py (+19 -0)
📝 backend/open_webui/config.py (+8 -0)
📝 backend/open_webui/env.py (+6 -2)
📝 backend/open_webui/internal/db.py (+4 -2)
📝 backend/open_webui/main.py (+6 -0)
📝 backend/open_webui/models/chats.py (+1 -1)
📝 backend/open_webui/retrieval/utils.py (+14 -2)
📝 backend/open_webui/retrieval/vector/dbs/chroma.py (+2 -2)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+2 -2)
📝 backend/open_webui/retrieval/vector/dbs/pgvector.py (+24 -19)
📝 backend/open_webui/routers/auths.py (+16 -4)
📝 backend/open_webui/routers/files.py (+2 -0)
📝 backend/open_webui/routers/knowledge.py (+46 -3)
📝 backend/open_webui/routers/openai.py (+1 -0)
📝 backend/open_webui/routers/prompts.py (+3 -2)
📝 backend/open_webui/routers/retrieval.py (+1 -1)
📝 backend/open_webui/routers/tasks.py (+24 -2)
📝 backend/open_webui/routers/tools.py (+2 -1)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/8599 **Author:** [@shadowfaxproject](https://github.com/shadowfaxproject) **Created:** 1/16/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main-dev` --- ### 📝 Commits (10+) - [`3321885`](https://github.com/open-webui/open-webui/commit/332188535e643585f4bba07d9de2328cd0fd5502) add option to add database schema as env var - [`6f1065b`](https://github.com/open-webui/open-webui/commit/6f1065b56aa6630f614925e1afd1bf23f26ec232) Merge branch 'dev' of github.com:open-webui/open-webui - [`61303a2`](https://github.com/open-webui/open-webui/commit/61303a216ccf629b1afb53c0b4f1ba29612ce87c) refac: styling - [`15a182c`](https://github.com/open-webui/open-webui/commit/15a182c9d6910ec8430c19ce3d6c22498c32214d) refac: styling - [`a763cc8`](https://github.com/open-webui/open-webui/commit/a763cc8778131423df04da21bf447d8bc2a1c328) open-webui-46 Pull latest open-webui/open-webui updates into shadowfaxproject/open-webui - [`0a59189`](https://github.com/open-webui/open-webui/commit/0a59189d4aa058b2f5c0b4f6ee3db754fc48b0e8) open-webui-46 Pull latest open-webui/open-webui updates into shadowfaxproject/open-webui - [`960683e`](https://github.com/open-webui/open-webui/commit/960683eceda2cf1bba46d82b2b7c467dbc200200) fix: torch mps not working - [`a0e63b0`](https://github.com/open-webui/open-webui/commit/a0e63b08c3849b40b154478a206048ce87b194e3) fix: searchapi engine not showing - [`2e00567`](https://github.com/open-webui/open-webui/commit/2e00567f05f7f5348e9ee0bb01ecfd3d5c67d9ca) open-webui-46 Pull latest open-webui/open-webui updates into shadowfaxproject/open-webui - [`8117bf8`](https://github.com/open-webui/open-webui/commit/8117bf8603527e570a802c8496d78ac760ca6dd4) Add admin check ### 📊 Changes **119 files changed** (+924 additions, -468 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/integration-test.yml` (+2 -0) 📝 `CHANGELOG.md` (+1 -1) 📝 `backend/open_webui/__init__.py` (+19 -0) 📝 `backend/open_webui/config.py` (+8 -0) 📝 `backend/open_webui/env.py` (+6 -2) 📝 `backend/open_webui/internal/db.py` (+4 -2) 📝 `backend/open_webui/main.py` (+6 -0) 📝 `backend/open_webui/models/chats.py` (+1 -1) 📝 `backend/open_webui/retrieval/utils.py` (+14 -2) 📝 `backend/open_webui/retrieval/vector/dbs/chroma.py` (+2 -2) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+2 -2) 📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+24 -19) 📝 `backend/open_webui/routers/auths.py` (+16 -4) 📝 `backend/open_webui/routers/files.py` (+2 -0) 📝 `backend/open_webui/routers/knowledge.py` (+46 -3) 📝 `backend/open_webui/routers/openai.py` (+1 -0) 📝 `backend/open_webui/routers/prompts.py` (+3 -2) 📝 `backend/open_webui/routers/retrieval.py` (+1 -1) 📝 `backend/open_webui/routers/tasks.py` (+24 -2) 📝 `backend/open_webui/routers/tools.py` (+2 -1) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-06 04:25:42 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#61111