[PR #9480] [MERGED] 0.5.11 #93416

Closed
opened 2026-05-15 19:13:03 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/9480
Author: @tjbck
Created: 2/6/2025
Status: Merged
Merged: 2/13/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 5df474a Add support for Deepgram STT
  • a004bf2 Merge branch into dev
  • 98ba0c3 build(deps-dev): bump vitest
  • 6870395 feat(ui): implement domain filter list for web search settings
  • 34b62e7 fix: check for email claim before skipping userinfo endpoint
  • 397595d Merge pull request #9456 from mitomac/fix-oidc-email-claim-new
  • c676303 enh: automatically remove incorrect backticks before code_interpreter tags
  • 74b971b refac: clean up solution for correcting code_interpreter backticks
  • fd6b039 Added a query method for OpenSearch vector db.
  • 80e123f fix : O3 also does not support the max_tokens parameter, so title generation is not possible when using the O3 model

📊 Changes

140 files changed (+5769 additions, -1826 deletions)

View changed files

📝 CHANGELOG.md (+28 -0)
📝 README.md (+1 -1)
📝 backend/open_webui/config.py (+74 -3)
📝 backend/open_webui/env.py (+1 -0)
📝 backend/open_webui/main.py (+88 -14)
📝 backend/open_webui/models/chats.py (+1 -1)
📝 backend/open_webui/models/users.py (+18 -0)
📝 backend/open_webui/retrieval/vector/dbs/opensearch.py (+28 -0)
backend/open_webui/retrieval/web/bocha.py (+65 -0)
📝 backend/open_webui/retrieval/web/google_pse.py (+34 -15)
📝 backend/open_webui/retrieval/web/jina_search.py (+13 -4)
📝 backend/open_webui/routers/audio.py (+68 -0)
📝 backend/open_webui/routers/configs.py (+92 -0)
📝 backend/open_webui/routers/files.py (+16 -20)
📝 backend/open_webui/routers/images.py (+46 -69)
📝 backend/open_webui/routers/ollama.py (+73 -46)
📝 backend/open_webui/routers/openai.py (+6 -6)
📝 backend/open_webui/routers/retrieval.py (+24 -0)
📝 backend/open_webui/routers/tasks.py (+54 -8)
📝 backend/open_webui/routers/users.py (+1 -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/9480 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 2/6/2025 **Status:** ✅ Merged **Merged:** 2/13/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`5df474a`](https://github.com/open-webui/open-webui/commit/5df474abb997f0fb50493a4a0620a6546828bee3) Add support for Deepgram STT - [`a004bf2`](https://github.com/open-webui/open-webui/commit/a004bf2a6daf4f318eae228dcd2f3d1fcd4f8fc0) Merge branch into dev - [`98ba0c3`](https://github.com/open-webui/open-webui/commit/98ba0c37b9862c1f893a4eb078a7f37588ebdcff) build(deps-dev): bump vitest - [`6870395`](https://github.com/open-webui/open-webui/commit/68703951e8abbdbed469953ad9beaa22806b5da2) feat(ui): implement domain filter list for web search settings - [`34b62e7`](https://github.com/open-webui/open-webui/commit/34b62e71cc1b0c3d98e7bc2b9d1091e2fbf1f0d2) fix: check for email claim before skipping userinfo endpoint - [`397595d`](https://github.com/open-webui/open-webui/commit/397595de9d12522b27ed71662611b47f6b1c3ced) Merge pull request #9456 from mitomac/fix-oidc-email-claim-new - [`c676303`](https://github.com/open-webui/open-webui/commit/c676303a55b9c78800efbd7fd70c84b4ccc356ed) enh: automatically remove incorrect backticks before code_interpreter tags - [`74b971b`](https://github.com/open-webui/open-webui/commit/74b971b88861b26c9be76cd11c068de4336187b0) refac: clean up solution for correcting code_interpreter backticks - [`fd6b039`](https://github.com/open-webui/open-webui/commit/fd6b0398591aa59b31879bef1f701ec18cb93fd8) Added a query method for OpenSearch vector db. - [`80e123f`](https://github.com/open-webui/open-webui/commit/80e123f58f1c8c807aad29489e394be38a73f393) fix : O3 also does not support the max_tokens parameter, so title generation is not possible when using the O3 model ### 📊 Changes **140 files changed** (+5769 additions, -1826 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+28 -0) 📝 `README.md` (+1 -1) 📝 `backend/open_webui/config.py` (+74 -3) 📝 `backend/open_webui/env.py` (+1 -0) 📝 `backend/open_webui/main.py` (+88 -14) 📝 `backend/open_webui/models/chats.py` (+1 -1) 📝 `backend/open_webui/models/users.py` (+18 -0) 📝 `backend/open_webui/retrieval/vector/dbs/opensearch.py` (+28 -0) ➕ `backend/open_webui/retrieval/web/bocha.py` (+65 -0) 📝 `backend/open_webui/retrieval/web/google_pse.py` (+34 -15) 📝 `backend/open_webui/retrieval/web/jina_search.py` (+13 -4) 📝 `backend/open_webui/routers/audio.py` (+68 -0) 📝 `backend/open_webui/routers/configs.py` (+92 -0) 📝 `backend/open_webui/routers/files.py` (+16 -20) 📝 `backend/open_webui/routers/images.py` (+46 -69) 📝 `backend/open_webui/routers/ollama.py` (+73 -46) 📝 `backend/open_webui/routers/openai.py` (+6 -6) 📝 `backend/open_webui/routers/retrieval.py` (+24 -0) 📝 `backend/open_webui/routers/tasks.py` (+54 -8) 📝 `backend/open_webui/routers/users.py` (+1 -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-05-15 19:13:03 -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#93416