[PR #10469] [MERGED] 0.5.17 #61400

Closed
opened 2026-05-06 04:54:48 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/10469
Author: @tjbck
Created: 2/20/2025
Status: Merged
Merged: 2/27/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 35f3824 feat: Implement Document Intelligence as Content Extraction Engine
  • 6d62e71 Add x-Open-Webui headers for ollama + more for openai
  • 0606256 black formatting
  • 1a2d81b Update main.py
  • 39c6ecb feat: add audit logger middleware and custom logger using loguru
  • 08df5f6 Update catalan translation.json
  • a8859a8 Fix on ollama to openai conversion - stream can return a single message with content
  • 1332a0d Update zh-CN translation
  • 8629f6b Merge pull request #10466 from HuangruiChu/main
  • 2697a4d Merge pull request #10460 from aleixdorca/dev

📊 Changes

138 files changed (+5226 additions, -3072 deletions)

View changed files

📝 CHANGELOG.md (+21 -0)
📝 backend/open_webui/config.py (+63 -23)
📝 backend/open_webui/env.py (+22 -0)
📝 backend/open_webui/functions.py (+6 -3)
📝 backend/open_webui/main.py (+38 -4)
📝 backend/open_webui/models/chats.py (+9 -5)
📝 backend/open_webui/models/feedbacks.py (+1 -1)
📝 backend/open_webui/models/files.py (+1 -1)
📝 backend/open_webui/models/folders.py (+1 -1)
📝 backend/open_webui/models/functions.py (+8 -4)
📝 backend/open_webui/models/models.py (+2 -3)
📝 backend/open_webui/models/tags.py (+1 -1)
📝 backend/open_webui/models/tools.py (+8 -4)
📝 backend/open_webui/retrieval/loaders/main.py (+23 -0)
📝 backend/open_webui/retrieval/models/colbert.py (+7 -1)
📝 backend/open_webui/retrieval/utils.py (+79 -35)
📝 backend/open_webui/retrieval/vector/dbs/chroma.py (+6 -2)
📝 backend/open_webui/retrieval/vector/dbs/milvus.py (+10 -4)
📝 backend/open_webui/retrieval/vector/dbs/pgvector.py (+23 -15)
📝 backend/open_webui/retrieval/vector/dbs/qdrant.py (+7 -2)

...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/10469 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 2/20/2025 **Status:** ✅ Merged **Merged:** 2/27/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`35f3824`](https://github.com/open-webui/open-webui/commit/35f3824932833fe77ef3bce54b86803cda4838a6) feat: Implement Document Intelligence as Content Extraction Engine - [`6d62e71`](https://github.com/open-webui/open-webui/commit/6d62e71c3431f3305a3802970bf5a18055a7fe39) Add x-Open-Webui headers for ollama + more for openai - [`0606256`](https://github.com/open-webui/open-webui/commit/06062568c7f24a6c3a7e76c9070c11941b4018d5) black formatting - [`1a2d81b`](https://github.com/open-webui/open-webui/commit/1a2d81bc01ecfbd0578902196834ab317f1e8d5a) Update main.py - [`39c6ecb`](https://github.com/open-webui/open-webui/commit/39c6ecb50d79111048fef7710edd935a6b98aea4) feat: add audit logger middleware and custom logger using loguru - [`08df5f6`](https://github.com/open-webui/open-webui/commit/08df5f6d7cc43d478d96fd00c801db773e0ebe3d) Update catalan translation.json - [`a8859a8`](https://github.com/open-webui/open-webui/commit/a8859a81454a55f80c15a72a3c87507ef23459a0) Fix on ollama to openai conversion - stream can return a single message with content - [`1332a0d`](https://github.com/open-webui/open-webui/commit/1332a0d3815c46bff5d4bf55c6ce1f6373cdd5f2) Update zh-CN translation - [`8629f6b`](https://github.com/open-webui/open-webui/commit/8629f6b0f3a84dc4e9831fb071e7fc0241aeca23) Merge pull request #10466 from HuangruiChu/main - [`2697a4d`](https://github.com/open-webui/open-webui/commit/2697a4d7f8e1905a60beb5bdb31bdd9adb79ec82) Merge pull request #10460 from aleixdorca/dev ### 📊 Changes **138 files changed** (+5226 additions, -3072 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+21 -0) 📝 `backend/open_webui/config.py` (+63 -23) 📝 `backend/open_webui/env.py` (+22 -0) 📝 `backend/open_webui/functions.py` (+6 -3) 📝 `backend/open_webui/main.py` (+38 -4) 📝 `backend/open_webui/models/chats.py` (+9 -5) 📝 `backend/open_webui/models/feedbacks.py` (+1 -1) 📝 `backend/open_webui/models/files.py` (+1 -1) 📝 `backend/open_webui/models/folders.py` (+1 -1) 📝 `backend/open_webui/models/functions.py` (+8 -4) 📝 `backend/open_webui/models/models.py` (+2 -3) 📝 `backend/open_webui/models/tags.py` (+1 -1) 📝 `backend/open_webui/models/tools.py` (+8 -4) 📝 `backend/open_webui/retrieval/loaders/main.py` (+23 -0) 📝 `backend/open_webui/retrieval/models/colbert.py` (+7 -1) 📝 `backend/open_webui/retrieval/utils.py` (+79 -35) 📝 `backend/open_webui/retrieval/vector/dbs/chroma.py` (+6 -2) 📝 `backend/open_webui/retrieval/vector/dbs/milvus.py` (+10 -4) 📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+23 -15) 📝 `backend/open_webui/retrieval/vector/dbs/qdrant.py` (+7 -2) _...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 04:54:48 -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#61400