[PR #5744] [MERGED] 0.3.31 #8545

Closed
opened 2025-11-11 17:59:23 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/5744
Author: @tjbck
Created: 9/26/2024
Status: Merged
Merged: 10/7/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

186 files changed (+9332 additions, -2714 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.md (+4 -0)
📝 .github/ISSUE_TEMPLATE/feature_request.md (+6 -0)
📝 .github/workflows/format-backend.yaml (+1 -1)
📝 .github/workflows/format-build-frontend.yaml (+2 -2)
📝 .github/workflows/integration-test.yml (+4 -1)
📝 .github/workflows/lint-backend.disabled (+1 -1)
📝 CHANGELOG.md (+36 -0)
📝 Dockerfile (+4 -4)
📝 README.md (+3 -3)
📝 backend/open_webui/apps/audio/main.py (+137 -96)
📝 backend/open_webui/apps/ollama/main.py (+5 -2)
📝 backend/open_webui/apps/openai/main.py (+10 -6)
backend/open_webui/apps/retrieval/loaders/main.py (+190 -0)
📝 backend/open_webui/apps/retrieval/main.py (+411 -685)
backend/open_webui/apps/retrieval/models/colbert.py (+81 -0)
📝 backend/open_webui/apps/retrieval/utils.py (+59 -47)
📝 backend/open_webui/apps/retrieval/vector/connector.py (+4 -4)
📝 backend/open_webui/apps/retrieval/vector/dbs/chroma.py (+54 -19)
📝 backend/open_webui/apps/retrieval/vector/dbs/milvus.py (+94 -13)
📝 backend/open_webui/apps/retrieval/vector/main.py (+0 -0)

...and 80 more files

📄 Description

Resolves #3129 #3527

  • Milvus compatibilty
  • SVG pan zoom
  • Full-screen artifacts
  • Processing animation\
  • assign a Collection to a Model
  • collection search

🔄 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/5744 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 9/26/2024 **Status:** ✅ Merged **Merged:** 10/7/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`550075b`](https://github.com/open-webui/open-webui/commit/550075bba4313e9398b555ebc98a4018f7e89901) fix: action button not working - [`b3517c6`](https://github.com/open-webui/open-webui/commit/b3517c63e8b7138e96acf51a66fa32fe6107cca4) fix: multi model chat infinite loop issue - [`d784d5c`](https://github.com/open-webui/open-webui/commit/d784d5c367de970d2ae55d075afd15b65548ad39) refac - [`f2ec020`](https://github.com/open-webui/open-webui/commit/f2ec020b644780382676725ccd020cbc496d1f16) refac: styling - [`92dd173`](https://github.com/open-webui/open-webui/commit/92dd173b27fdbdd3683f9919e2a4f020120aa80f) refac - [`1d8b3b8`](https://github.com/open-webui/open-webui/commit/1d8b3b8c51fe72be3a4d656d5325a59dcab4d406) refac - [`6d764ee`](https://github.com/open-webui/open-webui/commit/6d764ee55ef6c685fd64b089200de76a49844970) feat: retrieval whole document mode - [`677c36c`](https://github.com/open-webui/open-webui/commit/677c36c3aa9df947145fcdb08c8c5af0bcc5e44c) refac - [`6afc686`](https://github.com/open-webui/open-webui/commit/6afc686e17d3943df3c693afac1372ffa0488638) refac - [`f7aba20`](https://github.com/open-webui/open-webui/commit/f7aba20d79c637534bc74a4d05a1c8aadd1de946) refac ### 📊 Changes **186 files changed** (+9332 additions, -2714 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.md` (+4 -0) 📝 `.github/ISSUE_TEMPLATE/feature_request.md` (+6 -0) 📝 `.github/workflows/format-backend.yaml` (+1 -1) 📝 `.github/workflows/format-build-frontend.yaml` (+2 -2) 📝 `.github/workflows/integration-test.yml` (+4 -1) 📝 `.github/workflows/lint-backend.disabled` (+1 -1) 📝 `CHANGELOG.md` (+36 -0) 📝 `Dockerfile` (+4 -4) 📝 `README.md` (+3 -3) 📝 `backend/open_webui/apps/audio/main.py` (+137 -96) 📝 `backend/open_webui/apps/ollama/main.py` (+5 -2) 📝 `backend/open_webui/apps/openai/main.py` (+10 -6) ➕ `backend/open_webui/apps/retrieval/loaders/main.py` (+190 -0) 📝 `backend/open_webui/apps/retrieval/main.py` (+411 -685) ➕ `backend/open_webui/apps/retrieval/models/colbert.py` (+81 -0) 📝 `backend/open_webui/apps/retrieval/utils.py` (+59 -47) 📝 `backend/open_webui/apps/retrieval/vector/connector.py` (+4 -4) 📝 `backend/open_webui/apps/retrieval/vector/dbs/chroma.py` (+54 -19) 📝 `backend/open_webui/apps/retrieval/vector/dbs/milvus.py` (+94 -13) 📝 `backend/open_webui/apps/retrieval/vector/main.py` (+0 -0) _...and 80 more files_ </details> ### 📄 Description Resolves #3129 #3527 - [x] Milvus compatibilty - [x] SVG pan zoom - [x] Full-screen artifacts - [x] Processing animation\\ - [x] assign a Collection to a Model - [x] collection search --- <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 17:59:23 -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#8545