[PR #6002] [MERGED] 0.3.33 #21810

Closed
opened 2026-04-20 03:43:55 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/6002
Author: @tjbck
Created: 10/8/2024
Status: Merged
Merged: 10/24/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

246 files changed (+19067 additions, -6714 deletions)

View changed files

📝 CHANGELOG.md (+33 -0)
📝 Dockerfile (+11 -1)
📝 TROUBLESHOOTING.md (+1 -1)
📝 backend/open_webui/apps/audio/main.py (+39 -24)
📝 backend/open_webui/apps/images/utils/comfyui.py (+18 -6)
📝 backend/open_webui/apps/ollama/main.py (+29 -55)
📝 backend/open_webui/apps/openai/main.py (+6 -5)
📝 backend/open_webui/apps/retrieval/main.py (+69 -60)
📝 backend/open_webui/apps/retrieval/utils.py (+93 -58)
📝 backend/open_webui/apps/retrieval/vector/connector.py (+4 -0)
📝 backend/open_webui/apps/retrieval/vector/dbs/chroma.py (+6 -2)
backend/open_webui/apps/retrieval/vector/dbs/qdrant.py (+179 -0)
📝 backend/open_webui/apps/webui/main.py (+66 -2)
📝 backend/open_webui/apps/webui/models/chats.py (+438 -19)
backend/open_webui/apps/webui/models/feedbacks.py (+254 -0)
📝 backend/open_webui/apps/webui/models/files.py (+51 -4)
backend/open_webui/apps/webui/models/folders.py (+271 -0)
📝 backend/open_webui/apps/webui/models/knowledge.py (+16 -0)
📝 backend/open_webui/apps/webui/models/tags.py (+23 -176)
📝 backend/open_webui/apps/webui/routers/auths.py (+70 -6)

...and 80 more files

📄 Description

#6105 #6102 #6103 #5997 #5906 #1690 #6275

  • option to disable new updates info toast
  • refac files to save path in its own field
  • knowledge mobile view
  • rating share support for community leaderboard
  • arena model

🔄 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/6002 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 10/8/2024 **Status:** ✅ Merged **Merged:** 10/24/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`24f149f`](https://github.com/open-webui/open-webui/commit/24f149f686117ccae41ae73a11193d8a8c22b0cf) refac: pinned chat behaviour - [`98ba3f8`](https://github.com/open-webui/open-webui/commit/98ba3f84285f9e13cba529d001f7c2ea4c7dce68) refac: styling - [`bf00438`](https://github.com/open-webui/open-webui/commit/bf0043881a7e985d90b0c49a5efa7c1f39194f25) refac - [`86c961e`](https://github.com/open-webui/open-webui/commit/86c961e342f59d113596e47496520d2356f70f62) fix - [`69d0472`](https://github.com/open-webui/open-webui/commit/69d04728984be7cd84815abce8dd6d6cf7804b8e) refac: styling - [`0131afe`](https://github.com/open-webui/open-webui/commit/0131afe66772c29e577078d8ff9a4974cd562fc3) refac: styling - [`b5f4602`](https://github.com/open-webui/open-webui/commit/b5f46023d48f4e26d9f5c1800d29374cb213ad73) Update translation.json - [`2af9727`](https://github.com/open-webui/open-webui/commit/2af9727bd361900f3b367a48dfbded02f23bc163) Merge branch 'open-webui:dev' into dev - [`2f2af94`](https://github.com/open-webui/open-webui/commit/2f2af94d731cdee8eda4cd0b57446cc4dbb67e2d) Merge pull request #6194 from OriginalSimon/dev - [`eef9045`](https://github.com/open-webui/open-webui/commit/eef9045dccb93b47b76db9e5b0f57b5d0783953d) chore: format ### 📊 Changes **246 files changed** (+19067 additions, -6714 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+33 -0) 📝 `Dockerfile` (+11 -1) 📝 `TROUBLESHOOTING.md` (+1 -1) 📝 `backend/open_webui/apps/audio/main.py` (+39 -24) 📝 `backend/open_webui/apps/images/utils/comfyui.py` (+18 -6) 📝 `backend/open_webui/apps/ollama/main.py` (+29 -55) 📝 `backend/open_webui/apps/openai/main.py` (+6 -5) 📝 `backend/open_webui/apps/retrieval/main.py` (+69 -60) 📝 `backend/open_webui/apps/retrieval/utils.py` (+93 -58) 📝 `backend/open_webui/apps/retrieval/vector/connector.py` (+4 -0) 📝 `backend/open_webui/apps/retrieval/vector/dbs/chroma.py` (+6 -2) ➕ `backend/open_webui/apps/retrieval/vector/dbs/qdrant.py` (+179 -0) 📝 `backend/open_webui/apps/webui/main.py` (+66 -2) 📝 `backend/open_webui/apps/webui/models/chats.py` (+438 -19) ➕ `backend/open_webui/apps/webui/models/feedbacks.py` (+254 -0) 📝 `backend/open_webui/apps/webui/models/files.py` (+51 -4) ➕ `backend/open_webui/apps/webui/models/folders.py` (+271 -0) 📝 `backend/open_webui/apps/webui/models/knowledge.py` (+16 -0) 📝 `backend/open_webui/apps/webui/models/tags.py` (+23 -176) 📝 `backend/open_webui/apps/webui/routers/auths.py` (+70 -6) _...and 80 more files_ </details> ### 📄 Description #6105 #6102 #6103 #5997 #5906 #1690 #6275 - [x] option to disable new updates info toast - [x] refac files to save path in its own field - [x] knowledge mobile view - [x] rating share support for community leaderboard - [x] arena model --- <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-04-20 03:43:55 -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#21810