[PR #11728] [MERGED] 0.6 #22784

Closed
opened 2026-04-20 04:23:55 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/11728
Author: @tjbck
Created: 3/15/2025
Status: Merged
Merged: 4/1/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • b02e6c6 Deps: Update fake-useragent to v2.1.0
  • b6664f5 feat: pip options in tools/functions install requirements
  • 53292e7 allow string valves to include newlines
  • 4025d61 Merge pull request #11636 from OliveiraHermogenes/fix-api-audio-mimetype-check
  • 8588b52 Merge pull request #11605 from melroy89/update_fake_useragent
  • 4b1899b chore: dependency
  • 74da9c4 fix: firefox input height issue
  • 53448b3 Fix: Promote keep_alive to top-level in payload for Ollama API on dev branch
  • 04046ed Alternative Temp Fix: Uncomment to Keep Alive Forever
  • 8bc797f feat: Add renderer for Markdown alerts

📊 Changes

186 files changed (+11153 additions, -2803 deletions)

View changed files

📝 .github/pull_request_template.md (+3 -3)
📝 CHANGELOG.md (+49 -0)
📝 Dockerfile (+1 -1)
📝 backend/open_webui/config.py (+121 -4)
📝 backend/open_webui/env.py (+33 -15)
📝 backend/open_webui/functions.py (+3 -0)
📝 backend/open_webui/main.py (+62 -9)
📝 backend/open_webui/models/folders.py (+13 -6)
📝 backend/open_webui/retrieval/loaders/main.py (+54 -2)
backend/open_webui/retrieval/loaders/tavily.py (+93 -0)
📝 backend/open_webui/retrieval/utils.py (+155 -65)
📝 backend/open_webui/retrieval/vector/dbs/chroma.py (+20 -7)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+4 -1)
📝 backend/open_webui/retrieval/vector/dbs/opensearch.py (+110 -65)
📝 backend/open_webui/retrieval/vector/dbs/pgvector.py (+3 -1)
📝 backend/open_webui/retrieval/vector/dbs/qdrant.py (+2 -1)
📝 backend/open_webui/retrieval/web/utils.py (+172 -76)
📝 backend/open_webui/routers/audio.py (+3 -1)
📝 backend/open_webui/routers/auths.py (+8 -3)
📝 backend/open_webui/routers/chats.py (+103 -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.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/11728 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 3/15/2025 **Status:** ✅ Merged **Merged:** 4/1/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`b02e6c6`](https://github.com/open-webui/open-webui/commit/b02e6c6734a791d165b506d8c33c7aa3745b9c36) Deps: Update fake-useragent to v2.1.0 - [`b6664f5`](https://github.com/open-webui/open-webui/commit/b6664f5ae8d785bc2ed1ead4451c86a3791114b7) feat: pip options in tools/functions install requirements - [`53292e7`](https://github.com/open-webui/open-webui/commit/53292e7d12aac1d3ba1ab0dd39fe860c60755a65) allow string valves to include newlines - [`4025d61`](https://github.com/open-webui/open-webui/commit/4025d61c3355756097b43c7c6fcd731bfdeff948) Merge pull request #11636 from OliveiraHermogenes/fix-api-audio-mimetype-check - [`8588b52`](https://github.com/open-webui/open-webui/commit/8588b52fd6088bf1dd371bdcb76e1e891200baae) Merge pull request #11605 from melroy89/update_fake_useragent - [`4b1899b`](https://github.com/open-webui/open-webui/commit/4b1899bfcacd3bbefd9233da10f3d1dd196a6c84) chore: dependency - [`74da9c4`](https://github.com/open-webui/open-webui/commit/74da9c4e545df04a61cd019420a8f280e5b7e66d) fix: firefox input height issue - [`53448b3`](https://github.com/open-webui/open-webui/commit/53448b3f0addff177f9bf704dd5b1d5443ea3d74) Fix: Promote keep_alive to top-level in payload for Ollama API on dev branch - [`04046ed`](https://github.com/open-webui/open-webui/commit/04046ed6c854ed611dac33e7bcd145ce37d571d0) Alternative Temp Fix: Uncomment to Keep Alive Forever - [`8bc797f`](https://github.com/open-webui/open-webui/commit/8bc797fe6a54b9e73930da6cd7a4fb903122aa7a) feat: Add renderer for Markdown alerts ### 📊 Changes **186 files changed** (+11153 additions, -2803 deletions) <details> <summary>View changed files</summary> 📝 `.github/pull_request_template.md` (+3 -3) 📝 `CHANGELOG.md` (+49 -0) 📝 `Dockerfile` (+1 -1) 📝 `backend/open_webui/config.py` (+121 -4) 📝 `backend/open_webui/env.py` (+33 -15) 📝 `backend/open_webui/functions.py` (+3 -0) 📝 `backend/open_webui/main.py` (+62 -9) 📝 `backend/open_webui/models/folders.py` (+13 -6) 📝 `backend/open_webui/retrieval/loaders/main.py` (+54 -2) ➕ `backend/open_webui/retrieval/loaders/tavily.py` (+93 -0) 📝 `backend/open_webui/retrieval/utils.py` (+155 -65) 📝 `backend/open_webui/retrieval/vector/dbs/chroma.py` (+20 -7) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+4 -1) 📝 `backend/open_webui/retrieval/vector/dbs/opensearch.py` (+110 -65) 📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+3 -1) 📝 `backend/open_webui/retrieval/vector/dbs/qdrant.py` (+2 -1) 📝 `backend/open_webui/retrieval/web/utils.py` (+172 -76) 📝 `backend/open_webui/routers/audio.py` (+3 -1) 📝 `backend/open_webui/routers/auths.py` (+8 -3) 📝 `backend/open_webui/routers/chats.py` (+103 -0) _...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:23:55 -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#22784