[PR #15401] [CLOSED] Feature/role names #10607

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/15401
Author: @cableman
Created: 6/30/2025
Status: Closed

Base: mainHead: feature/role-names


📝 Commits (10+)

  • a7772b4 Italian translation improved
  • 8572494 Update Controls.svelte
  • 9f936a0 Update General.svelte
  • 4f9ce28 Update ChatPlaceholder.svelte
  • 9d37350 Update Markdown.svelte
  • 0882433 Update Controls.svelte
  • 5261d3d Update General.svelte
  • f7920df Fix non-ascii error issue on ENABLE_FORWARD_USER_INFO_HEADERS
  • 8a63a60 Fix typo on ollama patch
  • 135b57c Update Placeholder.svelte

📊 Changes

192 files changed (+4491 additions, -3064 deletions)

View changed files

📝 backend/open_webui/config.py (+52 -5)
📝 backend/open_webui/env.py (+33 -5)
📝 backend/open_webui/internal/db.py (+19 -13)
📝 backend/open_webui/main.py (+42 -4)
📝 backend/open_webui/retrieval/loaders/main.py (+3 -1)
📝 backend/open_webui/retrieval/utils.py (+44 -36)
📝 backend/open_webui/retrieval/vector/dbs/opensearch.py (+6 -3)
📝 backend/open_webui/retrieval/vector/dbs/qdrant.py (+21 -1)
📝 backend/open_webui/retrieval/vector/dbs/qdrant_multitenancy.py (+21 -1)
📝 backend/open_webui/retrieval/web/brave.py (+3 -1)
📝 backend/open_webui/routers/audio.py (+14 -9)
📝 backend/open_webui/routers/auths.py (+1 -0)
📝 backend/open_webui/routers/chats.py (+4 -2)
📝 backend/open_webui/routers/configs.py (+12 -7)
📝 backend/open_webui/routers/files.py (+8 -7)
📝 backend/open_webui/routers/images.py (+22 -6)
📝 backend/open_webui/routers/ollama.py (+39 -37)
📝 backend/open_webui/routers/openai.py (+55 -44)
📝 backend/open_webui/routers/retrieval.py (+17 -0)
📝 backend/open_webui/socket/main.py (+22 -4)

...and 80 more files

📄 Description

Ticket: https://leantime.itkdev.dk/#/tickets/showTicket/4856


🔄 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/15401 **Author:** [@cableman](https://github.com/cableman) **Created:** 6/30/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/role-names` --- ### 📝 Commits (10+) - [`a7772b4`](https://github.com/open-webui/open-webui/commit/a7772b4b35b4ccc68c25085a23c95b946cbf8b4c) Italian translation improved - [`8572494`](https://github.com/open-webui/open-webui/commit/85724940ee9870981bad735b76dc2526088aca96) Update Controls.svelte - [`9f936a0`](https://github.com/open-webui/open-webui/commit/9f936a0c19491b9e1a2adf00c7b81ad0dd58a67f) Update General.svelte - [`4f9ce28`](https://github.com/open-webui/open-webui/commit/4f9ce28a15736876d4b4a6a590210bf364ce45bc) Update ChatPlaceholder.svelte - [`9d37350`](https://github.com/open-webui/open-webui/commit/9d37350b97917df296c662c8a33564bdd78c04ed) Update Markdown.svelte - [`0882433`](https://github.com/open-webui/open-webui/commit/088243349d0915dd3d89fe0834a675133c7e007d) Update Controls.svelte - [`5261d3d`](https://github.com/open-webui/open-webui/commit/5261d3d31eafe993e45d34a5cc9532dd4a023761) Update General.svelte - [`f7920df`](https://github.com/open-webui/open-webui/commit/f7920df8707af24d59a0c7a03266742743be2562) Fix non-ascii error issue on ENABLE_FORWARD_USER_INFO_HEADERS - [`8a63a60`](https://github.com/open-webui/open-webui/commit/8a63a601de7f07e9c75a85b125fe0375b3feb6e7) Fix typo on ollama patch - [`135b57c`](https://github.com/open-webui/open-webui/commit/135b57ca8e55134efb92c35af60f1b850a65deb9) Update Placeholder.svelte ### 📊 Changes **192 files changed** (+4491 additions, -3064 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/config.py` (+52 -5) 📝 `backend/open_webui/env.py` (+33 -5) 📝 `backend/open_webui/internal/db.py` (+19 -13) 📝 `backend/open_webui/main.py` (+42 -4) 📝 `backend/open_webui/retrieval/loaders/main.py` (+3 -1) 📝 `backend/open_webui/retrieval/utils.py` (+44 -36) 📝 `backend/open_webui/retrieval/vector/dbs/opensearch.py` (+6 -3) 📝 `backend/open_webui/retrieval/vector/dbs/qdrant.py` (+21 -1) 📝 `backend/open_webui/retrieval/vector/dbs/qdrant_multitenancy.py` (+21 -1) 📝 `backend/open_webui/retrieval/web/brave.py` (+3 -1) 📝 `backend/open_webui/routers/audio.py` (+14 -9) 📝 `backend/open_webui/routers/auths.py` (+1 -0) 📝 `backend/open_webui/routers/chats.py` (+4 -2) 📝 `backend/open_webui/routers/configs.py` (+12 -7) 📝 `backend/open_webui/routers/files.py` (+8 -7) 📝 `backend/open_webui/routers/images.py` (+22 -6) 📝 `backend/open_webui/routers/ollama.py` (+39 -37) 📝 `backend/open_webui/routers/openai.py` (+55 -44) 📝 `backend/open_webui/routers/retrieval.py` (+17 -0) 📝 `backend/open_webui/socket/main.py` (+22 -4) _...and 80 more files_ </details> ### 📄 Description Ticket: https://leantime.itkdev.dk/#/tickets/showTicket/4856 --- <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:09:05 -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#10607