[PR #6522] [MERGED] 0.4 #8695

Closed
opened 2025-11-11 18:03:26 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/6522
Author: @tjbck
Created: 10/28/2024
Status: Merged
Merged: 11/19/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

261 files changed (+28909 additions, -14926 deletions)

View changed files

📝 .dockerignore (+2 -1)
📝 CHANGELOG.md (+49 -0)
📝 README.md (+1 -1)
📝 backend/open_webui/apps/audio/main.py (+74 -2)
📝 backend/open_webui/apps/images/main.py (+13 -2)
📝 backend/open_webui/apps/ollama/main.py (+352 -151)
📝 backend/open_webui/apps/openai/main.py (+276 -121)
📝 backend/open_webui/apps/retrieval/loaders/main.py (+1 -1)
📝 backend/open_webui/apps/retrieval/main.py (+144 -20)
📝 backend/open_webui/apps/retrieval/utils.py (+76 -57)
📝 backend/open_webui/apps/retrieval/vector/connector.py (+8 -0)
📝 backend/open_webui/apps/retrieval/vector/dbs/chroma.py (+15 -2)
backend/open_webui/apps/retrieval/vector/dbs/opensearch.py (+178 -0)
backend/open_webui/apps/retrieval/vector/dbs/pgvector.py (+354 -0)
📝 backend/open_webui/apps/retrieval/vector/dbs/qdrant.py (+7 -2)
backend/open_webui/apps/retrieval/web/bing.py (+73 -0)
📝 backend/open_webui/apps/retrieval/web/jina_search.py (+2 -4)
backend/open_webui/apps/retrieval/web/testdata/bing.json (+58 -0)
📝 backend/open_webui/apps/socket/main.py (+2 -0)
📝 backend/open_webui/apps/webui/main.py (+44 -7)

...and 80 more files

📄 Description

#6821 #5119 #5680 #2924 #2336 #6208 #2863 #668


🔄 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/6522 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 10/28/2024 **Status:** ✅ Merged **Merged:** 11/19/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`aa80df1`](https://github.com/open-webui/open-webui/commit/aa80df143176aa04a5143f4931dedd66f33ef532) refac: styling - [`2fdbab6`](https://github.com/open-webui/open-webui/commit/2fdbab6640d5521e84dcc7d53d3f2c87367d275b) Merge pull request #6761 from diegmonti/feat/permissions-policy - [`20d671d`](https://github.com/open-webui/open-webui/commit/20d671df39ffeff0e1ca80aab2b3ea7b3edb8270) Update translation.json - [`0a027aa`](https://github.com/open-webui/open-webui/commit/0a027aaa146e808c00db23ba18846118b585e930) Update translation.json - [`3ba9f2a`](https://github.com/open-webui/open-webui/commit/3ba9f2aae22920f399b2ad59fe8f6e91f320294f) Merge pull request #6811 from OriginalSimon/dev - [`ff9fdc2`](https://github.com/open-webui/open-webui/commit/ff9fdc2f88f3b94f0c3e23cf08fdb9be7390f84e) refac - [`638b350`](https://github.com/open-webui/open-webui/commit/638b350b5cd2aa91651d4dd155f9aee004dcee30) Fix missing comma in Ukrainian translation.json - [`e4d35a9`](https://github.com/open-webui/open-webui/commit/e4d35a9478c8197439a39ab6265bf9bf52bb830b) Fix DuckDuckGo's RateLimit exception (#6624) - [`94e432d`](https://github.com/open-webui/open-webui/commit/94e432d599a66eb083f0970b0b8300931dff2ae6) update fomatting and i18n - [`24f2152`](https://github.com/open-webui/open-webui/commit/24f2152493f2d30b65dd08b3be211388a5bd4f1a) Merge pull request #6840 from Peter-De-Ath/fix-translation-uk-UA ### 📊 Changes **261 files changed** (+28909 additions, -14926 deletions) <details> <summary>View changed files</summary> 📝 `.dockerignore` (+2 -1) 📝 `CHANGELOG.md` (+49 -0) 📝 `README.md` (+1 -1) 📝 `backend/open_webui/apps/audio/main.py` (+74 -2) 📝 `backend/open_webui/apps/images/main.py` (+13 -2) 📝 `backend/open_webui/apps/ollama/main.py` (+352 -151) 📝 `backend/open_webui/apps/openai/main.py` (+276 -121) 📝 `backend/open_webui/apps/retrieval/loaders/main.py` (+1 -1) 📝 `backend/open_webui/apps/retrieval/main.py` (+144 -20) 📝 `backend/open_webui/apps/retrieval/utils.py` (+76 -57) 📝 `backend/open_webui/apps/retrieval/vector/connector.py` (+8 -0) 📝 `backend/open_webui/apps/retrieval/vector/dbs/chroma.py` (+15 -2) ➕ `backend/open_webui/apps/retrieval/vector/dbs/opensearch.py` (+178 -0) ➕ `backend/open_webui/apps/retrieval/vector/dbs/pgvector.py` (+354 -0) 📝 `backend/open_webui/apps/retrieval/vector/dbs/qdrant.py` (+7 -2) ➕ `backend/open_webui/apps/retrieval/web/bing.py` (+73 -0) 📝 `backend/open_webui/apps/retrieval/web/jina_search.py` (+2 -4) ➕ `backend/open_webui/apps/retrieval/web/testdata/bing.json` (+58 -0) 📝 `backend/open_webui/apps/socket/main.py` (+2 -0) 📝 `backend/open_webui/apps/webui/main.py` (+44 -7) _...and 80 more files_ </details> ### 📄 Description #6821 #5119 #5680 #2924 #2336 #6208 #2863 #668 - [x] Apply access control to arena models - [x] RAG query generation - [x] #6767 --- <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 2025-11-11 18:03:26 -06: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#8695