[PR #16888] [CLOSED] feat: hide tags generation in chat control #11069

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/16888
Author: @italic-jinxin
Created: 8/25/2025
Status: Closed

Base: mainHead: feat/hide-share


📝 Commits (9)

📊 Changes

116 files changed (+3435 additions, -524 deletions)

View changed files

📝 .eslintrc.cjs (+4 -1)
📝 Dockerfile (+3 -2)
📝 backend/dev.sh (+7 -1)
📝 backend/open_webui/config.py (+7 -9)
📝 backend/open_webui/env.py (+13 -4)
backend/open_webui/internal/migrations/019_add_user_data_key.py (+54 -0)
📝 backend/open_webui/main.py (+450 -292)
📝 backend/open_webui/models/chats.py (+13 -1)
backend/open_webui/models/user_data_keys.py (+95 -0)
📝 backend/open_webui/models/users.py (+18 -4)
📝 backend/open_webui/routers/chats.py (+10 -6)
📝 backend/open_webui/routers/utils.py (+5 -0)
📝 backend/open_webui/static/apple-touch-icon.png (+0 -0)
backend/open_webui/static/custom.css (+0 -0)
📝 backend/open_webui/static/favicon.ico (+0 -0)
📝 backend/open_webui/static/favicon.png (+0 -0)
📝 backend/open_webui/static/favicon.svg (+4 -3)
📝 backend/open_webui/static/logo.png (+0 -0)
📝 backend/open_webui/static/splash.png (+0 -0)
backend/open_webui/utils/chat_encryption_proxy.py (+577 -0)

...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/16888 **Author:** [@italic-jinxin](https://github.com/italic-jinxin) **Created:** 8/25/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/hide-share` --- ### 📝 Commits (9) - [`d809d4b`](https://github.com/open-webui/open-webui/commit/d809d4b7381a619b94bf4d9c38591e7f7740de17) feat: model and message verification (#14) - [`5550267`](https://github.com/open-webui/open-webui/commit/555026759f1b9cf5889cc7e7be2110c983867c22) feat: welcome page (#12) - [`4852846`](https://github.com/open-webui/open-webui/commit/48528465b295b5a3cab38a17ee1c3226f324ca28) feat: disable some features (#16) - [`bdce54f`](https://github.com/open-webui/open-webui/commit/bdce54f530bab9ce8ed198c5e70e340cd581d95f) feat: disable more user ui features (#21) - [`efdb7ff`](https://github.com/open-webui/open-webui/commit/efdb7ff238524ba1a36bc5eb7796ab805cf1c402) feat: disable admin and user features (#22) - [`80c6e3e`](https://github.com/open-webui/open-webui/commit/80c6e3e1f615dba8f542664da2aeb9b77919c501) style: format frontend code (#23) - [`e3ea51d`](https://github.com/open-webui/open-webui/commit/e3ea51dea1982ba5f9ffb9280b6aafdb5d1a62e8) feat: encrypt chat history (#13) - [`babe99d`](https://github.com/open-webui/open-webui/commit/babe99d3757bb54ed18e3781e56730ccd871d722) chore: prettier version (#24) - [`571da0d`](https://github.com/open-webui/open-webui/commit/571da0d79c2341b1a5a7b79375561798488ff769) feat: hide tags in chat control ### 📊 Changes **116 files changed** (+3435 additions, -524 deletions) <details> <summary>View changed files</summary> 📝 `.eslintrc.cjs` (+4 -1) 📝 `Dockerfile` (+3 -2) 📝 `backend/dev.sh` (+7 -1) 📝 `backend/open_webui/config.py` (+7 -9) 📝 `backend/open_webui/env.py` (+13 -4) ➕ `backend/open_webui/internal/migrations/019_add_user_data_key.py` (+54 -0) 📝 `backend/open_webui/main.py` (+450 -292) 📝 `backend/open_webui/models/chats.py` (+13 -1) ➕ `backend/open_webui/models/user_data_keys.py` (+95 -0) 📝 `backend/open_webui/models/users.py` (+18 -4) 📝 `backend/open_webui/routers/chats.py` (+10 -6) 📝 `backend/open_webui/routers/utils.py` (+5 -0) 📝 `backend/open_webui/static/apple-touch-icon.png` (+0 -0) ➕ `backend/open_webui/static/custom.css` (+0 -0) 📝 `backend/open_webui/static/favicon.ico` (+0 -0) 📝 `backend/open_webui/static/favicon.png` (+0 -0) 📝 `backend/open_webui/static/favicon.svg` (+4 -3) 📝 `backend/open_webui/static/logo.png` (+0 -0) 📝 `backend/open_webui/static/splash.png` (+0 -0) ➕ `backend/open_webui/utils/chat_encryption_proxy.py` (+577 -0) _...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 2025-11-11 19:21:22 -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#11069