[PR #14675] [MERGED] 0.6.14 #23546

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

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

  • 0afe972 embeddings function added 100% OpenAI compatible
  • 24be96a Merge pull request #1 from open-webui/main
  • 7dde16d [i18n] Russian locale update
  • 5555d88 Update translation.json
  • 4ecf2a8 Update pinecone.py
  • cbc514e The translation might be confusing, in some cases for example tooltips over a radio button
  • 66bde32 Update pinecone.py
  • cf3635b Update mistral.py
  • 343dac9 Merge pull request #14522 from SadmL/patch-2
  • e41e375 refac: role update ui

📊 Changes

156 files changed (+5283 additions, -1822 deletions)

View changed files

📝 .env.example (+9 -0)
📝 .gitattributes (+49 -1)
📝 .github/workflows/docker-build.yaml (+177 -12)
📝 .prettierrc (+2 -1)
📝 CHANGELOG.md (+39 -0)
📝 README.md (+14 -2)
📝 backend/open_webui/config.py (+110 -17)
📝 backend/open_webui/constants.py (+1 -0)
📝 backend/open_webui/env.py (+2 -0)
📝 backend/open_webui/functions.py (+2 -6)
📝 backend/open_webui/main.py (+99 -8)
📝 backend/open_webui/models/users.py (+2 -1)
📝 backend/open_webui/retrieval/loaders/main.py (+33 -15)
📝 backend/open_webui/retrieval/loaders/mistral.py (+198 -64)
📝 backend/open_webui/retrieval/loaders/youtube.py (+30 -6)
📝 backend/open_webui/retrieval/vector/dbs/pgvector.py (+250 -81)
📝 backend/open_webui/retrieval/vector/dbs/pinecone.py (+81 -8)
📝 backend/open_webui/retrieval/web/perplexity.py (+20 -2)
📝 backend/open_webui/routers/images.py (+2 -2)
📝 backend/open_webui/routers/notes.py (+6 -9)

...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/14675 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 6/4/2025 **Status:** ✅ Merged **Merged:** 6/10/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`0afe972`](https://github.com/open-webui/open-webui/commit/0afe972bc6bf3b52a77832a32d39607570457826) embeddings function added 100% OpenAI compatible - [`24be96a`](https://github.com/open-webui/open-webui/commit/24be96a6d4a2024a18d49ea4692d7a77ade4f9b5) Merge pull request #1 from open-webui/main - [`7dde16d`](https://github.com/open-webui/open-webui/commit/7dde16d0ac2a645803671cfef4b98c8e0d8c446a) [i18n] Russian locale update - [`5555d88`](https://github.com/open-webui/open-webui/commit/5555d889d59b41e37d3e5a3daa23b088ecc9a960) Update translation.json - [`4ecf2a8`](https://github.com/open-webui/open-webui/commit/4ecf2a868553ba51f4e142fb3ba83c5abb07182d) Update pinecone.py - [`cbc514e`](https://github.com/open-webui/open-webui/commit/cbc514e68192885f210a7165b844b0eb91a53c34) The translation might be confusing, in some cases for example tooltips over a radio button - [`66bde32`](https://github.com/open-webui/open-webui/commit/66bde326230aa1069a6a73b18e00862d5be4316e) Update pinecone.py - [`cf3635b`](https://github.com/open-webui/open-webui/commit/cf3635ba25b2f7a2fa02914820fc46eaf3beec18) Update mistral.py - [`343dac9`](https://github.com/open-webui/open-webui/commit/343dac91c9b5a59fc51f939abc1361a632104dd4) Merge pull request #14522 from SadmL/patch-2 - [`e41e375`](https://github.com/open-webui/open-webui/commit/e41e375aab0c7e7955b797aa4b53b8c9f4dd9196) refac: role update ui ### 📊 Changes **156 files changed** (+5283 additions, -1822 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+9 -0) 📝 `.gitattributes` (+49 -1) 📝 `.github/workflows/docker-build.yaml` (+177 -12) 📝 `.prettierrc` (+2 -1) 📝 `CHANGELOG.md` (+39 -0) 📝 `README.md` (+14 -2) 📝 `backend/open_webui/config.py` (+110 -17) 📝 `backend/open_webui/constants.py` (+1 -0) 📝 `backend/open_webui/env.py` (+2 -0) 📝 `backend/open_webui/functions.py` (+2 -6) 📝 `backend/open_webui/main.py` (+99 -8) 📝 `backend/open_webui/models/users.py` (+2 -1) 📝 `backend/open_webui/retrieval/loaders/main.py` (+33 -15) 📝 `backend/open_webui/retrieval/loaders/mistral.py` (+198 -64) 📝 `backend/open_webui/retrieval/loaders/youtube.py` (+30 -6) 📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+250 -81) 📝 `backend/open_webui/retrieval/vector/dbs/pinecone.py` (+81 -8) 📝 `backend/open_webui/retrieval/web/perplexity.py` (+20 -2) 📝 `backend/open_webui/routers/images.py` (+2 -2) 📝 `backend/open_webui/routers/notes.py` (+6 -9) _...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 04:53:28 -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#23546