[PR #5362] [MERGED] 0.3.22 #8469

Closed
opened 2025-11-11 17:57:26 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/5362
Author: @tjbck
Created: 9/12/2024
Status: Merged
Merged: 9/19/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 7f6dae4 More options for AUTOMATIC1111
  • cc1d3c4 i18n: Update Chinese translation
  • 698976a feat: add ENABLE_WEBSOCKET_SUPPORT to force socket.io to ignore websocket upgrades
  • 83a3e53 Add padding to compensate for iPhone nav bar
  • 8e6ea49 fix: incorrect casting of top_p and frequency_penalty
  • 82fbfd6 Improve kustomization usage
  • d15f57c Merge pull request #5266 from KarlLee830/translate
  • b407f24 Merge pull request #5277 from msurma/dev
  • fc83901 Merge pull request #5275 from sebdanielsson/safe-area
  • 601982f fix: lengthy chat title delete ui issue

📊 Changes

118 files changed (+3761 additions, -1095 deletions)

View changed files

📝 CHANGELOG.md (+28 -0)
📝 Dockerfile (+7 -2)
📝 backend/open_webui/__init__.py (+13 -0)
📝 backend/open_webui/apps/audio/main.py (+70 -4)
📝 backend/open_webui/apps/images/main.py (+40 -0)
📝 backend/open_webui/apps/ollama/main.py (+54 -2)
📝 backend/open_webui/apps/openai/main.py (+15 -12)
📝 backend/open_webui/apps/rag/main.py (+143 -48)
📝 backend/open_webui/apps/rag/utils.py (+121 -83)
backend/open_webui/apps/rag/vector/connector.py (+10 -0)
backend/open_webui/apps/rag/vector/dbs/chroma.py (+122 -0)
backend/open_webui/apps/rag/vector/dbs/milvus.py (+205 -0)
backend/open_webui/apps/rag/vector/main.py (+19 -0)
📝 backend/open_webui/apps/socket/main.py (+14 -6)
📝 backend/open_webui/apps/webui/routers/auths.py (+2 -2)
📝 backend/open_webui/apps/webui/routers/memories.py (+52 -41)
📝 backend/open_webui/apps/webui/routers/models.py (+12 -20)
📝 backend/open_webui/apps/webui/utils.py (+22 -3)
📝 backend/open_webui/config.py (+87 -91)
📝 backend/open_webui/env.py (+29 -0)

...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/5362 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 9/12/2024 **Status:** ✅ Merged **Merged:** 9/19/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`7f6dae4`](https://github.com/open-webui/open-webui/commit/7f6dae41f02c11f1ebb7436b061c2d31025c1752) More options for AUTOMATIC1111 - [`cc1d3c4`](https://github.com/open-webui/open-webui/commit/cc1d3c48e0568bcfd532637ed7b4351223da5982) i18n: Update Chinese translation - [`698976a`](https://github.com/open-webui/open-webui/commit/698976add087cc6b4976d6333efa9d2383c39f22) feat: add ENABLE_WEBSOCKET_SUPPORT to force socket.io to ignore websocket upgrades - [`83a3e53`](https://github.com/open-webui/open-webui/commit/83a3e53d8d24d82829a89d2274b9290a6b9f8b60) Add padding to compensate for iPhone nav bar - [`8e6ea49`](https://github.com/open-webui/open-webui/commit/8e6ea49e0ec3eb68a1844d5b9ec12479ce00a230) fix: incorrect casting of top_p and frequency_penalty - [`82fbfd6`](https://github.com/open-webui/open-webui/commit/82fbfd69a5a3e4a78975136286676831c44387d7) Improve `kustomization` usage - [`d15f57c`](https://github.com/open-webui/open-webui/commit/d15f57cfff695c456ae05881728dd55077ba8741) Merge pull request #5266 from KarlLee830/translate - [`b407f24`](https://github.com/open-webui/open-webui/commit/b407f24950ae22288eba91a978672cd3664be9bd) Merge pull request #5277 from msurma/dev - [`fc83901`](https://github.com/open-webui/open-webui/commit/fc839011f65c27012f0aa378fb5149f74780ac02) Merge pull request #5275 from sebdanielsson/safe-area - [`601982f`](https://github.com/open-webui/open-webui/commit/601982f52bc1e1915ce377712df3a9084930ba5a) fix: lengthy chat title delete ui issue ### 📊 Changes **118 files changed** (+3761 additions, -1095 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+28 -0) 📝 `Dockerfile` (+7 -2) 📝 `backend/open_webui/__init__.py` (+13 -0) 📝 `backend/open_webui/apps/audio/main.py` (+70 -4) 📝 `backend/open_webui/apps/images/main.py` (+40 -0) 📝 `backend/open_webui/apps/ollama/main.py` (+54 -2) 📝 `backend/open_webui/apps/openai/main.py` (+15 -12) 📝 `backend/open_webui/apps/rag/main.py` (+143 -48) 📝 `backend/open_webui/apps/rag/utils.py` (+121 -83) ➕ `backend/open_webui/apps/rag/vector/connector.py` (+10 -0) ➕ `backend/open_webui/apps/rag/vector/dbs/chroma.py` (+122 -0) ➕ `backend/open_webui/apps/rag/vector/dbs/milvus.py` (+205 -0) ➕ `backend/open_webui/apps/rag/vector/main.py` (+19 -0) 📝 `backend/open_webui/apps/socket/main.py` (+14 -6) 📝 `backend/open_webui/apps/webui/routers/auths.py` (+2 -2) 📝 `backend/open_webui/apps/webui/routers/memories.py` (+52 -41) 📝 `backend/open_webui/apps/webui/routers/models.py` (+12 -20) 📝 `backend/open_webui/apps/webui/utils.py` (+22 -3) 📝 `backend/open_webui/config.py` (+87 -91) 📝 `backend/open_webui/env.py` (+29 -0) _...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 2025-11-11 17:57: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#8469