[PR #10939] [MERGED] 0.5.19 #22622

Closed
opened 2026-04-20 04:16:40 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/10939
Author: @tjbck
Created: 2/27/2025
Status: Merged
Merged: 3/5/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • cdc13e9 chore: Fix unnecessary whitespace issues
  • a381ffc revert
  • 4a2a12f feat: scaffolding for logit_bias
  • 8aa6415 include logit_bias in form_data
  • f865a23 Merge remote-tracking branch 'upstream/main'
  • b061775 feat: add perplexity integration to web search
  • d7b18b6 chore: use logging.getLevelNamesMapping()
  • febc9ab Merge remote-tracking branch 'upstream/main'
  • 203dfde Update deprecated msal-browser version to the latest
  • c5cfcc1 chore: cleanup

📊 Changes

139 files changed (+3694 additions, -1688 deletions)

View changed files

.github/ISSUE_TEMPLATE/bug_report.md (+0 -80)
.github/ISSUE_TEMPLATE/bug_report.yaml (+144 -0)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+7 -7)
📝 .github/workflows/docker-build.yaml (+3 -3)
📝 CHANGELOG.md (+18 -0)
📝 backend/open_webui/config.py (+28 -9)
📝 backend/open_webui/env.py (+13 -12)
📝 backend/open_webui/main.py (+19 -7)
📝 backend/open_webui/retrieval/utils.py (+7 -0)
📝 backend/open_webui/retrieval/vector/connector.py (+4 -0)
backend/open_webui/retrieval/vector/dbs/elasticsearch.py (+274 -0)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+2 -2)
📝 backend/open_webui/retrieval/vector/dbs/opensearch.py (+28 -21)
backend/open_webui/retrieval/web/perplexity.py (+87 -0)
📝 backend/open_webui/routers/audio.py (+1 -1)
📝 backend/open_webui/routers/auths.py (+12 -6)
📝 backend/open_webui/routers/functions.py (+1 -1)
📝 backend/open_webui/routers/images.py (+8 -2)
📝 backend/open_webui/routers/ollama.py (+3 -3)
📝 backend/open_webui/routers/openai.py (+5 -7)

...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/10939 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 2/27/2025 **Status:** ✅ Merged **Merged:** 3/5/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`cdc13e9`](https://github.com/open-webui/open-webui/commit/cdc13e9960842b93e16fb7fb3c1d4f1cf5681829) chore: Fix unnecessary whitespace issues - [`a381ffc`](https://github.com/open-webui/open-webui/commit/a381ffc58518cec12a13630c4c0f277122ceabb5) revert - [`4a2a12f`](https://github.com/open-webui/open-webui/commit/4a2a12fd21c15f1671f82315b7897a0f9af4f6f3) feat: scaffolding for logit_bias - [`8aa6415`](https://github.com/open-webui/open-webui/commit/8aa6415500bd2b7213aa1b655cbe386fb5457810) include logit_bias in form_data - [`f865a23`](https://github.com/open-webui/open-webui/commit/f865a23a185c0ef217f34ecce730c2167c256f8a) Merge remote-tracking branch 'upstream/main' - [`b061775`](https://github.com/open-webui/open-webui/commit/b0617759322e4d5c03b740a20a07a868c3e3e331) feat: add perplexity integration to web search - [`d7b18b6`](https://github.com/open-webui/open-webui/commit/d7b18b662b3c332c794f079d168657931db6e38e) chore: use logging.getLevelNamesMapping() - [`febc9ab`](https://github.com/open-webui/open-webui/commit/febc9ab88589b397f84e0c002506c75cd82318b8) Merge remote-tracking branch 'upstream/main' - [`203dfde`](https://github.com/open-webui/open-webui/commit/203dfdedf1e0e6b2fc9e176347a49003d3185b71) Update deprecated msal-browser version to the latest - [`c5cfcc1`](https://github.com/open-webui/open-webui/commit/c5cfcc1229ec39b232b77d0d08f3281bcdcc31d8) chore: cleanup ### 📊 Changes **139 files changed** (+3694 additions, -1688 deletions) <details> <summary>View changed files</summary> ➖ `.github/ISSUE_TEMPLATE/bug_report.md` (+0 -80) ➕ `.github/ISSUE_TEMPLATE/bug_report.yaml` (+144 -0) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+7 -7) 📝 `.github/workflows/docker-build.yaml` (+3 -3) 📝 `CHANGELOG.md` (+18 -0) 📝 `backend/open_webui/config.py` (+28 -9) 📝 `backend/open_webui/env.py` (+13 -12) 📝 `backend/open_webui/main.py` (+19 -7) 📝 `backend/open_webui/retrieval/utils.py` (+7 -0) 📝 `backend/open_webui/retrieval/vector/connector.py` (+4 -0) ➕ `backend/open_webui/retrieval/vector/dbs/elasticsearch.py` (+274 -0) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+2 -2) 📝 `backend/open_webui/retrieval/vector/dbs/opensearch.py` (+28 -21) ➕ `backend/open_webui/retrieval/web/perplexity.py` (+87 -0) 📝 `backend/open_webui/routers/audio.py` (+1 -1) 📝 `backend/open_webui/routers/auths.py` (+12 -6) 📝 `backend/open_webui/routers/functions.py` (+1 -1) 📝 `backend/open_webui/routers/images.py` (+8 -2) 📝 `backend/open_webui/routers/ollama.py` (+3 -3) 📝 `backend/open_webui/routers/openai.py` (+5 -7) _...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-20 04:16:41 -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#22622