[PR #14194] [MERGED] 0.6.11 #39038

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

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

  • 23991c3 i18n: update zh-TW
  • c1066d7 i18n: update ko-KR
  • 1d0921d [i18n] Russian locale update
  • c9bbfae Merge pull request #14033 from SadmL/patch-2
  • 438eb90 Merge pull request #14024 from hurxxxx/i18n/update-ko-KR
  • ef3232a Merge pull request #14023 from TiancongLx/dev
  • 5613cda Merge pull request #14048 from open-webui/main
  • d6ad96a fix: use get method for title and snippet in search results
  • 897727c Merge branch 'open-webui:main' into web_search_optional_fields
  • fd2ff5e i18n german update 1

📊 Changes

160 files changed (+6114 additions, -3424 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+29 -8)
📝 CHANGELOG.md (+48 -0)
📝 backend/open_webui/config.py (+12 -0)
📝 backend/open_webui/env.py (+4 -0)
📝 backend/open_webui/functions.py (+2 -5)
📝 backend/open_webui/internal/wrappers.py (+2 -2)
📝 backend/open_webui/main.py (+9 -2)
📝 backend/open_webui/models/auths.py (+8 -4)
📝 backend/open_webui/models/chats.py (+53 -10)
📝 backend/open_webui/models/functions.py (+48 -0)
📝 backend/open_webui/models/groups.py (+38 -0)
📝 backend/open_webui/retrieval/loaders/main.py (+1 -1)
📝 backend/open_webui/retrieval/loaders/mistral.py (+476 -68)
backend/open_webui/retrieval/models/base_reranker.py (+8 -0)
📝 backend/open_webui/retrieval/models/colbert.py (+3 -1)
📝 backend/open_webui/retrieval/models/external.py (+3 -1)
📝 backend/open_webui/retrieval/utils.py (+19 -3)
📝 backend/open_webui/retrieval/vector/dbs/pinecone.py (+20 -45)
📝 backend/open_webui/retrieval/web/searchapi.py (+3 -1)
📝 backend/open_webui/retrieval/web/serpapi.py (+3 -1)

...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/14194 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 5/22/2025 **Status:** ✅ Merged **Merged:** 5/26/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`23991c3`](https://github.com/open-webui/open-webui/commit/23991c32c560ee9527c3bacfd45fba4de7884038) i18n: update zh-TW - [`c1066d7`](https://github.com/open-webui/open-webui/commit/c1066d7e081bd0d2a46f0af650da085b222c0973) i18n: update ko-KR - [`1d0921d`](https://github.com/open-webui/open-webui/commit/1d0921de0ddeccbc1b12aa7fca199462c1d82875) [i18n] Russian locale update - [`c9bbfae`](https://github.com/open-webui/open-webui/commit/c9bbfaee9d20eeb943b3fa81954419b2367446c1) Merge pull request #14033 from SadmL/patch-2 - [`438eb90`](https://github.com/open-webui/open-webui/commit/438eb906717de0ae51a8722db70295a6528b1eba) Merge pull request #14024 from hurxxxx/i18n/update-ko-KR - [`ef3232a`](https://github.com/open-webui/open-webui/commit/ef3232a24fad23cab2fc27b35217c9c15924b51a) Merge pull request #14023 from TiancongLx/dev - [`5613cda`](https://github.com/open-webui/open-webui/commit/5613cda5cf0342f81d1bd10b3fafb7a867adbb9b) Merge pull request #14048 from open-webui/main - [`d6ad96a`](https://github.com/open-webui/open-webui/commit/d6ad96affbb664658d5287fb93d7b2d8f55200fa) fix: use get method for title and snippet in search results - [`897727c`](https://github.com/open-webui/open-webui/commit/897727c7ebc262b2e26774adfbd2e4f99d464c4d) Merge branch 'open-webui:main' into web_search_optional_fields - [`fd2ff5e`](https://github.com/open-webui/open-webui/commit/fd2ff5e7775c930cb31c3bef1f82e3e079f40d65) i18n german update 1 ### 📊 Changes **160 files changed** (+6114 additions, -3424 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+29 -8) 📝 `CHANGELOG.md` (+48 -0) 📝 `backend/open_webui/config.py` (+12 -0) 📝 `backend/open_webui/env.py` (+4 -0) 📝 `backend/open_webui/functions.py` (+2 -5) 📝 `backend/open_webui/internal/wrappers.py` (+2 -2) 📝 `backend/open_webui/main.py` (+9 -2) 📝 `backend/open_webui/models/auths.py` (+8 -4) 📝 `backend/open_webui/models/chats.py` (+53 -10) 📝 `backend/open_webui/models/functions.py` (+48 -0) 📝 `backend/open_webui/models/groups.py` (+38 -0) 📝 `backend/open_webui/retrieval/loaders/main.py` (+1 -1) 📝 `backend/open_webui/retrieval/loaders/mistral.py` (+476 -68) ➕ `backend/open_webui/retrieval/models/base_reranker.py` (+8 -0) 📝 `backend/open_webui/retrieval/models/colbert.py` (+3 -1) 📝 `backend/open_webui/retrieval/models/external.py` (+3 -1) 📝 `backend/open_webui/retrieval/utils.py` (+19 -3) 📝 `backend/open_webui/retrieval/vector/dbs/pinecone.py` (+20 -45) 📝 `backend/open_webui/retrieval/web/searchapi.py` (+3 -1) 📝 `backend/open_webui/retrieval/web/serpapi.py` (+3 -1) _...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 2026-04-25 11:46:26 -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#39038