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: main ← Head: dev
main
dev
7f6dae4
cc1d3c4
698976a
83a3e53
8e6ea49
82fbfd6
kustomization
d15f57c
b407f24
fc83901
601982f
118 files changed (+3761 additions, -1095 deletions)
📝 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)
CHANGELOG.md
Dockerfile
backend/open_webui/__init__.py
backend/open_webui/apps/audio/main.py
backend/open_webui/apps/images/main.py
backend/open_webui/apps/ollama/main.py
backend/open_webui/apps/openai/main.py
backend/open_webui/apps/rag/main.py
backend/open_webui/apps/rag/utils.py
backend/open_webui/apps/rag/vector/connector.py
backend/open_webui/apps/rag/vector/dbs/chroma.py
backend/open_webui/apps/rag/vector/dbs/milvus.py
backend/open_webui/apps/rag/vector/main.py
backend/open_webui/apps/socket/main.py
backend/open_webui/apps/webui/routers/auths.py
backend/open_webui/apps/webui/routers/memories.py
backend/open_webui/apps/webui/routers/models.py
backend/open_webui/apps/webui/utils.py
backend/open_webui/config.py
backend/open_webui/env.py
...and 80 more files
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 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:
main← Head:dev📝 Commits (10+)
7f6dae4More options for AUTOMATIC1111cc1d3c4i18n: Update Chinese translation698976afeat: add ENABLE_WEBSOCKET_SUPPORT to force socket.io to ignore websocket upgrades83a3e53Add padding to compensate for iPhone nav bar8e6ea49fix: incorrect casting of top_p and frequency_penalty82fbfd6Improvekustomizationusaged15f57cMerge pull request #5266 from KarlLee830/translateb407f24Merge pull request #5277 from msurma/devfc83901Merge pull request #5275 from sebdanielsson/safe-area601982ffix: 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.