[PR #14441] [MERGED] 0.6.12 #10268

Closed
opened 2025-11-11 19:00:32 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/14441
Author: @tjbck
Created: 5/28/2025
Status: Merged
Merged: 5/28/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • fc2202a i18n: Update zh-CN
  • 14bf579 i18n: Fix zh-CN
  • 7988e0c i18n: Improve zh-CN
  • a9405cc feat: Marker api content extraction support
  • e12a79c fix: handle json output format correctly
  • 19bb358 fix: add Datalab Marker API to Content Extraction Engine Dropdown
  • fcb03df Update catalan translation.json
  • 098ec43 i18n: update zh-TW
  • 4995bfe fix: tts read aloud
  • 14c3d0c Prevent duplicate function module loads with caching helper and refactor

📊 Changes

88 files changed (+2706 additions, -426 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+2 -2)
📝 CHANGELOG.md (+22 -0)
📝 README.md (+11 -1)
📝 backend/open_webui/config.py (+55 -0)
📝 backend/open_webui/functions.py (+5 -4)
📝 backend/open_webui/main.py (+24 -0)
backend/open_webui/retrieval/loaders/datalab_marker.py (+251 -0)
📝 backend/open_webui/retrieval/loaders/main.py (+46 -1)
📝 backend/open_webui/routers/functions.py (+17 -9)
📝 backend/open_webui/routers/retrieval.py (+82 -0)
📝 backend/open_webui/routers/tools.py (+79 -0)
📝 backend/open_webui/static/assets/pdf-style.css (+0 -5)
📝 backend/open_webui/utils/chat.py (+5 -3)
📝 backend/open_webui/utils/filter.py (+11 -7)
📝 backend/open_webui/utils/middleware.py (+10 -24)
📝 backend/open_webui/utils/misc.py (+2 -2)
📝 backend/open_webui/utils/models.py (+42 -28)
📝 backend/open_webui/utils/payload.py (+19 -3)
📝 backend/open_webui/utils/plugin.py (+57 -1)
📝 package-lock.json (+2 -2)

...and 68 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/14441 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 5/28/2025 **Status:** ✅ Merged **Merged:** 5/28/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`fc2202a`](https://github.com/open-webui/open-webui/commit/fc2202ad76f1142f99ec75b3885301305e59d479) i18n: Update zh-CN - [`14bf579`](https://github.com/open-webui/open-webui/commit/14bf579e9c5d8321e1ff680797e62c64d396aace) i18n: Fix zh-CN - [`7988e0c`](https://github.com/open-webui/open-webui/commit/7988e0c6e290414c154f707588f3d7521193a478) i18n: Improve zh-CN - [`a9405cc`](https://github.com/open-webui/open-webui/commit/a9405cc10103d1cd2f91e235250051a1eea2d09c) feat: Marker api content extraction support - [`e12a79c`](https://github.com/open-webui/open-webui/commit/e12a79c0e2d6651ce8d2748f1973634a5b138f53) fix: handle json output format correctly - [`19bb358`](https://github.com/open-webui/open-webui/commit/19bb3589ee4116dfb45e10c03b391b201e58571d) fix: add `Datalab Marker API` to Content Extraction Engine Dropdown - [`fcb03df`](https://github.com/open-webui/open-webui/commit/fcb03df9ce5da57807c590911577034d8bd421c7) Update catalan translation.json - [`098ec43`](https://github.com/open-webui/open-webui/commit/098ec4341391c5491ae0adfa820487488b72200b) i18n: update zh-TW - [`4995bfe`](https://github.com/open-webui/open-webui/commit/4995bfe571e85679994adeb2ea862675fed0c844) fix: tts read aloud - [`14c3d0c`](https://github.com/open-webui/open-webui/commit/14c3d0c2d14a49da7942863430e11920fdec1598) Prevent duplicate function module loads with caching helper and refactor ### 📊 Changes **88 files changed** (+2706 additions, -426 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+2 -2) 📝 `CHANGELOG.md` (+22 -0) 📝 `README.md` (+11 -1) 📝 `backend/open_webui/config.py` (+55 -0) 📝 `backend/open_webui/functions.py` (+5 -4) 📝 `backend/open_webui/main.py` (+24 -0) ➕ `backend/open_webui/retrieval/loaders/datalab_marker.py` (+251 -0) 📝 `backend/open_webui/retrieval/loaders/main.py` (+46 -1) 📝 `backend/open_webui/routers/functions.py` (+17 -9) 📝 `backend/open_webui/routers/retrieval.py` (+82 -0) 📝 `backend/open_webui/routers/tools.py` (+79 -0) 📝 `backend/open_webui/static/assets/pdf-style.css` (+0 -5) 📝 `backend/open_webui/utils/chat.py` (+5 -3) 📝 `backend/open_webui/utils/filter.py` (+11 -7) 📝 `backend/open_webui/utils/middleware.py` (+10 -24) 📝 `backend/open_webui/utils/misc.py` (+2 -2) 📝 `backend/open_webui/utils/models.py` (+42 -28) 📝 `backend/open_webui/utils/payload.py` (+19 -3) 📝 `backend/open_webui/utils/plugin.py` (+57 -1) 📝 `package-lock.json` (+2 -2) _...and 68 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 2025-11-11 19:00:32 -06: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#10268