[PR #17985] [CLOSED] 0.6.33 #24627

Closed
opened 2026-04-20 05:30:19 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/17985
Author: @tjbck
Created: 10/2/2025
Status: Closed

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

68 files changed (+1797 additions, -756 deletions)

View changed files

📝 .github/pull_request_template.md (+5 -4)
📝 backend/open_webui/config.py (+35 -10)
📝 backend/open_webui/main.py (+57 -22)
📝 backend/open_webui/models/files.py (+3 -1)
📝 backend/open_webui/retrieval/loaders/main.py (+1 -3)
📝 backend/open_webui/routers/audio.py (+14 -4)
📝 backend/open_webui/routers/channels.py (+7 -7)
📝 backend/open_webui/routers/configs.py (+2 -2)
📝 backend/open_webui/routers/ollama.py (+4 -0)
📝 backend/open_webui/routers/openai.py (+3 -0)
📝 backend/open_webui/routers/retrieval.py (+12 -1)
📝 backend/open_webui/socket/main.py (+14 -8)
📝 backend/open_webui/tasks.py (+4 -1)
📝 backend/open_webui/utils/auth.py (+14 -11)
📝 backend/open_webui/utils/chat.py (+5 -1)
📝 backend/open_webui/utils/middleware.py (+128 -102)
📝 backend/open_webui/utils/misc.py (+8 -0)
📝 backend/open_webui/utils/oauth.py (+8 -2)
📝 backend/open_webui/utils/payload.py (+15 -4)
📝 backend/requirements.txt (+18 -19)

...and 48 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/17985 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 10/2/2025 **Status:** ❌ Closed **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 **68 files changed** (+1797 additions, -756 deletions) <details> <summary>View changed files</summary> 📝 `.github/pull_request_template.md` (+5 -4) 📝 `backend/open_webui/config.py` (+35 -10) 📝 `backend/open_webui/main.py` (+57 -22) 📝 `backend/open_webui/models/files.py` (+3 -1) 📝 `backend/open_webui/retrieval/loaders/main.py` (+1 -3) 📝 `backend/open_webui/routers/audio.py` (+14 -4) 📝 `backend/open_webui/routers/channels.py` (+7 -7) 📝 `backend/open_webui/routers/configs.py` (+2 -2) 📝 `backend/open_webui/routers/ollama.py` (+4 -0) 📝 `backend/open_webui/routers/openai.py` (+3 -0) 📝 `backend/open_webui/routers/retrieval.py` (+12 -1) 📝 `backend/open_webui/socket/main.py` (+14 -8) 📝 `backend/open_webui/tasks.py` (+4 -1) 📝 `backend/open_webui/utils/auth.py` (+14 -11) 📝 `backend/open_webui/utils/chat.py` (+5 -1) 📝 `backend/open_webui/utils/middleware.py` (+128 -102) 📝 `backend/open_webui/utils/misc.py` (+8 -0) 📝 `backend/open_webui/utils/oauth.py` (+8 -2) 📝 `backend/open_webui/utils/payload.py` (+15 -4) 📝 `backend/requirements.txt` (+18 -19) _...and 48 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 05:30:19 -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#24627