[PR #18402] [MERGED] 0.6.35 #24780

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/18402
Author: @tjbck
Created: 10/17/2025
Status: Merged
Merged: 11/6/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • d13a35a fix: auto show artifacts when opening a conversation
  • a9c4e4b fix: auto show artifacts when opening a conversation
  • eff4022 i18n: add more greek translations
  • 27e85e4 Merge pull request #18372 from Tsafaras/i18n/more-greek-translations
  • f170f37 i18n: improve zh-CN translation
  • 7c393bc i18n: improve zh-TW translation
  • 185e01e German translation of new strings in i18n
  • a483d41 Patch 1 (#22)
  • c0a91b5 Update translation.json (pt-BR)
  • f97e739 Merge pull request #18394 from joaoback/patch-13

📊 Changes

183 files changed (+8353 additions, -6878 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+6 -2)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+23 -6)
📝 .github/pull_request_template.md (+10 -5)
📝 CHANGELOG.md (+87 -0)
📝 README.md (+1 -38)
📝 backend/open_webui/config.py (+133 -41)
📝 backend/open_webui/main.py (+149 -14)
📝 backend/open_webui/models/chats.py (+11 -3)
📝 backend/open_webui/models/oauth_sessions.py (+11 -0)
📝 backend/open_webui/retrieval/loaders/external_document.py (+7 -0)
📝 backend/open_webui/retrieval/loaders/main.py (+7 -19)
📝 backend/open_webui/retrieval/loaders/mistral.py (+12 -10)
📝 backend/open_webui/retrieval/loaders/youtube.py (+4 -4)
📝 backend/open_webui/retrieval/utils.py (+42 -36)
📝 backend/open_webui/retrieval/web/firecrawl.py (+9 -18)
📝 backend/open_webui/retrieval/web/google_pse.py (+5 -0)
📝 backend/open_webui/retrieval/web/utils.py (+81 -46)
📝 backend/open_webui/routers/audio.py (+202 -4)
📝 backend/open_webui/routers/auths.py (+9 -0)
📝 backend/open_webui/routers/configs.py (+19 -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/18402 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 10/17/2025 **Status:** ✅ Merged **Merged:** 11/6/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`d13a35a`](https://github.com/open-webui/open-webui/commit/d13a35ab96bd24b4c760f76ab66c5e12ad13abac) fix: auto show artifacts when opening a conversation - [`a9c4e4b`](https://github.com/open-webui/open-webui/commit/a9c4e4b422a4908cbaca21c3b3436124df6face8) fix: auto show artifacts when opening a conversation - [`eff4022`](https://github.com/open-webui/open-webui/commit/eff40229fe085fdfae9215315481b3c9d26ee9c4) i18n: add more greek translations - [`27e85e4`](https://github.com/open-webui/open-webui/commit/27e85e448b821c28cec03c8996486579162888fe) Merge pull request #18372 from Tsafaras/i18n/more-greek-translations - [`f170f37`](https://github.com/open-webui/open-webui/commit/f170f37ba4cb510a97a58968da3070aab1c84129) i18n: improve zh-CN translation - [`7c393bc`](https://github.com/open-webui/open-webui/commit/7c393bc1666c0810da78d4eea08cac3f90c34fda) i18n: improve zh-TW translation - [`185e01e`](https://github.com/open-webui/open-webui/commit/185e01eecc748995020af93ed63765c5f9f36e79) German translation of new strings in i18n - [`a483d41`](https://github.com/open-webui/open-webui/commit/a483d41de21158e2e04d231a40f8abfd945a9c42) Patch 1 (#22) - [`c0a91b5`](https://github.com/open-webui/open-webui/commit/c0a91b566b4d2bf91a40cd0fdd3a9b16df445091) Update translation.json (pt-BR) - [`f97e739`](https://github.com/open-webui/open-webui/commit/f97e73962a9148b615cd1993f90ba06a15095290) Merge pull request #18394 from joaoback/patch-13 ### 📊 Changes **183 files changed** (+8353 additions, -6878 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+6 -2) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+23 -6) 📝 `.github/pull_request_template.md` (+10 -5) 📝 `CHANGELOG.md` (+87 -0) 📝 `README.md` (+1 -38) 📝 `backend/open_webui/config.py` (+133 -41) 📝 `backend/open_webui/main.py` (+149 -14) 📝 `backend/open_webui/models/chats.py` (+11 -3) 📝 `backend/open_webui/models/oauth_sessions.py` (+11 -0) 📝 `backend/open_webui/retrieval/loaders/external_document.py` (+7 -0) 📝 `backend/open_webui/retrieval/loaders/main.py` (+7 -19) 📝 `backend/open_webui/retrieval/loaders/mistral.py` (+12 -10) 📝 `backend/open_webui/retrieval/loaders/youtube.py` (+4 -4) 📝 `backend/open_webui/retrieval/utils.py` (+42 -36) 📝 `backend/open_webui/retrieval/web/firecrawl.py` (+9 -18) 📝 `backend/open_webui/retrieval/web/google_pse.py` (+5 -0) 📝 `backend/open_webui/retrieval/web/utils.py` (+81 -46) 📝 `backend/open_webui/routers/audio.py` (+202 -4) 📝 `backend/open_webui/routers/auths.py` (+9 -0) 📝 `backend/open_webui/routers/configs.py` (+19 -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-04-20 05:35:20 -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#24780