[PR #18136] [MERGED] 0.6.34 #63533

Closed
opened 2026-05-06 08:21:45 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/18136
Author: @tjbck
Created: 10/8/2025
Status: Merged
Merged: 10/8/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • c6d8049 feat: improve ollama model management experience
  • 8df74dd fix
  • 3b1197a i18n: improve Chinese translation
  • 3389f0e fix: handle non‑UTF8 chars in third‑party responses without error
  • a395af3 German translation of new strings in i18n
  • c9c0dd3 log web search queries only with level 'debug' instead of 'info'
  • 0a928d6 Tool calls now only include text and dont inlcude other content like image b64
  • 2a3f57b fix onedrive
  • b15db79 Merge pull request #17902 from Classic298/patch-1
  • b387880 Merge pull request #17897 from jmleksan/fix/tool-task-only-include-text

📊 Changes

156 files changed (+6072 additions, -3148 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+2 -0)
📝 .github/pull_request_template.md (+5 -4)
📝 CHANGELOG.md (+69 -0)
📝 backend/open_webui/config.py (+40 -10)
📝 backend/open_webui/env.py (+8 -2)
📝 backend/open_webui/main.py (+70 -27)
📝 backend/open_webui/models/files.py (+3 -1)
📝 backend/open_webui/models/functions.py (+27 -1)
📝 backend/open_webui/retrieval/loaders/main.py (+1 -3)
📝 backend/open_webui/retrieval/loaders/youtube.py (+7 -0)
📝 backend/open_webui/retrieval/utils.py (+44 -2)
📝 backend/open_webui/retrieval/web/utils.py (+2 -1)
📝 backend/open_webui/routers/audio.py (+14 -4)
📝 backend/open_webui/routers/channels.py (+37 -21)
📝 backend/open_webui/routers/configs.py (+2 -2)
📝 backend/open_webui/routers/folders.py (+35 -20)
📝 backend/open_webui/routers/functions.py (+6 -0)
📝 backend/open_webui/routers/ollama.py (+4 -0)
📝 backend/open_webui/routers/openai.py (+3 -0)
📝 backend/open_webui/routers/retrieval.py (+46 -53)

...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/18136 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 10/8/2025 **Status:** ✅ Merged **Merged:** 10/8/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`c6d8049`](https://github.com/open-webui/open-webui/commit/c6d80496abe7fb5d3a122332025334f04b5a989a) feat: improve ollama model management experience - [`8df74dd`](https://github.com/open-webui/open-webui/commit/8df74dde80271d7b0083e73677c90401910c5516) fix - [`3b1197a`](https://github.com/open-webui/open-webui/commit/3b1197a1bb8d33ac0fe072c0970fd4cdd64cdcbc) i18n: improve Chinese translation - [`3389f0e`](https://github.com/open-webui/open-webui/commit/3389f0eece512f91ee6daa358f9feaee1b2cd66f) fix: handle non‑UTF8 chars in third‑party responses without error - [`a395af3`](https://github.com/open-webui/open-webui/commit/a395af31b1b8eec8ebe2da9b557a65ae5ceef4ac) German translation of new strings in i18n - [`c9c0dd3`](https://github.com/open-webui/open-webui/commit/c9c0dd367f3a09e01edb61b62256779d5bb75904) log web search queries only with level 'debug' instead of 'info' - [`0a928d6`](https://github.com/open-webui/open-webui/commit/0a928d6e9d0036bbfadc58729e72b4d2dabf5bdb) Tool calls now only include text and dont inlcude other content like image b64 - [`2a3f57b`](https://github.com/open-webui/open-webui/commit/2a3f57bc61740edd533304086dfdfb5486c6b903) fix onedrive - [`b15db79`](https://github.com/open-webui/open-webui/commit/b15db795e1677560d8377490e9a9ebf47e0f8e5c) Merge pull request #17902 from Classic298/patch-1 - [`b387880`](https://github.com/open-webui/open-webui/commit/b387880194d66b9cddfac3f8a0440cd7284a50cc) Merge pull request #17897 from jmleksan/fix/tool-task-only-include-text ### 📊 Changes **156 files changed** (+6072 additions, -3148 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+2 -0) 📝 `.github/pull_request_template.md` (+5 -4) 📝 `CHANGELOG.md` (+69 -0) 📝 `backend/open_webui/config.py` (+40 -10) 📝 `backend/open_webui/env.py` (+8 -2) 📝 `backend/open_webui/main.py` (+70 -27) 📝 `backend/open_webui/models/files.py` (+3 -1) 📝 `backend/open_webui/models/functions.py` (+27 -1) 📝 `backend/open_webui/retrieval/loaders/main.py` (+1 -3) 📝 `backend/open_webui/retrieval/loaders/youtube.py` (+7 -0) 📝 `backend/open_webui/retrieval/utils.py` (+44 -2) 📝 `backend/open_webui/retrieval/web/utils.py` (+2 -1) 📝 `backend/open_webui/routers/audio.py` (+14 -4) 📝 `backend/open_webui/routers/channels.py` (+37 -21) 📝 `backend/open_webui/routers/configs.py` (+2 -2) 📝 `backend/open_webui/routers/folders.py` (+35 -20) 📝 `backend/open_webui/routers/functions.py` (+6 -0) 📝 `backend/open_webui/routers/ollama.py` (+4 -0) 📝 `backend/open_webui/routers/openai.py` (+3 -0) 📝 `backend/open_webui/routers/retrieval.py` (+46 -53) _...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-06 08:21:45 -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#63533