[PR #14486] [MERGED] 0.6.13 #39117

Closed
opened 2026-04-25 11:51:31 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/14486
Author: @tjbck
Created: 5/29/2025
Status: Merged
Merged: 5/29/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 42be1f9 Add Azure OpenAI embedding support
  • 01eedd3 Handles undefined message case in message list creation
  • 2c723e1 i18n: Update & Improve zh-CN
  • 309380b Update fi-FI translation.json
  • d43bbca refac/fix: open webui params handling
  • 155518e Merge pull request #14478 from Kylapaallikko/dev
  • bd4e010 Merge pull request #14477 from qingchunnh/Update_zh-CN-25529
  • 2553679 doc: typo
  • f1507f2 Merge pull request #14472 from Davixk/fix/chat-loading-error
  • a214e63 Update Korean translation - Documentation

📊 Changes

23 files changed (+524 additions, -230 deletions)

View changed files

📝 CHANGELOG.md (+16 -0)
📝 README.md (+1 -1)
📝 backend/open_webui/config.py (+16 -0)
📝 backend/open_webui/functions.py (+7 -2)
📝 backend/open_webui/main.py (+22 -2)
📝 backend/open_webui/retrieval/utils.py (+83 -31)
📝 backend/open_webui/routers/audio.py (+3 -6)
📝 backend/open_webui/routers/ollama.py (+8 -5)
📝 backend/open_webui/routers/openai.py (+6 -2)
📝 backend/open_webui/routers/retrieval.py (+63 -5)
📝 backend/open_webui/utils/middleware.py (+34 -7)
📝 backend/open_webui/utils/payload.py (+48 -2)
📝 package-lock.json (+2 -2)
📝 package.json (+1 -1)
📝 src/lib/apis/retrieval/index.ts (+7 -0)
📝 src/lib/components/admin/Settings/Documents.svelte (+45 -2)
📝 src/lib/components/workspace/Prompts/PromptEditor.svelte (+1 -1)
📝 src/lib/i18n/locales/fi-FI/translation.json (+49 -49)
📝 src/lib/i18n/locales/ko-KR/translation.json (+1 -1)
📝 src/lib/i18n/locales/zh-CN/translation.json (+76 -76)

...and 3 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/14486 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 5/29/2025 **Status:** ✅ Merged **Merged:** 5/29/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`42be1f9`](https://github.com/open-webui/open-webui/commit/42be1f956ac04d1166996e36eae48c38a52bfcfc) Add Azure OpenAI embedding support - [`01eedd3`](https://github.com/open-webui/open-webui/commit/01eedd36bc899847db00f0e2b413d6f2d0f65ccb) Handles undefined message case in message list creation - [`2c723e1`](https://github.com/open-webui/open-webui/commit/2c723e1f28cd44316faed86a56f2de342f3eddcc) i18n: Update & Improve zh-CN - [`309380b`](https://github.com/open-webui/open-webui/commit/309380b098aae770fd200d2ba957c29677bdc8a8) Update fi-FI translation.json - [`d43bbca`](https://github.com/open-webui/open-webui/commit/d43bbcae28dcb3d5a75545fb696b0e9f838ce560) refac/fix: open webui params handling - [`155518e`](https://github.com/open-webui/open-webui/commit/155518e788873344cfefa75cbf5db76bc582cf66) Merge pull request #14478 from Kylapaallikko/dev - [`bd4e010`](https://github.com/open-webui/open-webui/commit/bd4e010c76fc8d2259d77f026bdc45373fff3dff) Merge pull request #14477 from qingchunnh/Update_zh-CN-25529 - [`2553679`](https://github.com/open-webui/open-webui/commit/255367934b202a39da4ceedc1b65dc2f2b52e8cc) doc: typo - [`f1507f2`](https://github.com/open-webui/open-webui/commit/f1507f24589ae887dbe8ac6df2410d5d48fca3ff) Merge pull request #14472 from Davixk/fix/chat-loading-error - [`a214e63`](https://github.com/open-webui/open-webui/commit/a214e63cab710d24038a10326682b510857e75b7) Update Korean translation - Documentation ### 📊 Changes **23 files changed** (+524 additions, -230 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+16 -0) 📝 `README.md` (+1 -1) 📝 `backend/open_webui/config.py` (+16 -0) 📝 `backend/open_webui/functions.py` (+7 -2) 📝 `backend/open_webui/main.py` (+22 -2) 📝 `backend/open_webui/retrieval/utils.py` (+83 -31) 📝 `backend/open_webui/routers/audio.py` (+3 -6) 📝 `backend/open_webui/routers/ollama.py` (+8 -5) 📝 `backend/open_webui/routers/openai.py` (+6 -2) 📝 `backend/open_webui/routers/retrieval.py` (+63 -5) 📝 `backend/open_webui/utils/middleware.py` (+34 -7) 📝 `backend/open_webui/utils/payload.py` (+48 -2) 📝 `package-lock.json` (+2 -2) 📝 `package.json` (+1 -1) 📝 `src/lib/apis/retrieval/index.ts` (+7 -0) 📝 `src/lib/components/admin/Settings/Documents.svelte` (+45 -2) 📝 `src/lib/components/workspace/Prompts/PromptEditor.svelte` (+1 -1) 📝 `src/lib/i18n/locales/fi-FI/translation.json` (+49 -49) 📝 `src/lib/i18n/locales/ko-KR/translation.json` (+1 -1) 📝 `src/lib/i18n/locales/zh-CN/translation.json` (+76 -76) _...and 3 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-04-25 11:51:32 -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#39117