[PR #13097] [CLOSED] Open webui 85 #9896

Closed
opened 2025-11-11 18:34:20 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/13097
Author: @shadowfaxproject
Created: 4/21/2025
Status: Closed

Base: mainHead: open-webui-85


📝 Commits (10+)

  • acd5101 open-webui-3 Remove technical pop-up from first visit.
  • 104da63 open-webui-3 Remove technical pop-up from first visit.
  • bd8dda2 open-webui-36 Remove (Open WebUI) from title.
  • 027fd1e open-webui-63 Change default placeholder message.
  • f634778 open-webui-68 Change AI-response-wait animation from default to something else.
  • 8607838 open-webui-69 Replace open/close buttons with arrows.
  • 391224f open-webui-6 Remove bottom-left user-icon.
  • c59dda9 open-webui-66 Change tooltip 'New Chat' to 'New Gift Chat'.
  • 5c946e2 open-webui-58 Change input-box to show 3 things: text-input-box, record-voice/headphones, start/stop. Align them on the same level.
  • afd43f2 open-webui-82 Remove model-config for users from open-webui page.

📊 Changes

34 files changed (+1014 additions, -914 deletions)

View changed files

📝 backend/open_webui/config.py (+1 -0)
📝 backend/open_webui/env.py (+1 -2)
📝 backend/open_webui/main.py (+8 -1)
📝 backend/open_webui/models/chats.py (+5 -5)
📝 backend/open_webui/routers/auths.py (+19 -28)
📝 backend/open_webui/routers/tasks.py (+25 -5)
backend/open_webui/static/chat-waiting-mb-dark.gif (+0 -0)
backend/open_webui/static/chat-waiting-mb-light.gif (+0 -0)
📝 backend/open_webui/test/apps/webui/routers/test_chats.py (+8 -8)
📝 backend/open_webui/utils/middleware.py (+5 -14)
📝 backend/open_webui/utils/task.py (+3 -3)
📝 backend/start.sh (+16 -1)
📝 src/lib/apis/index.ts (+1 -1)
📝 src/lib/components/chat/Chat.svelte (+2 -2)
📝 src/lib/components/chat/ChatPlaceholder.svelte (+1 -1)
📝 src/lib/components/chat/MessageInput.svelte (+285 -439)
📝 src/lib/components/chat/Messages/ResponseMessage.svelte (+161 -70)
📝 src/lib/components/chat/Messages/Skeleton.svelte (+15 -43)
📝 src/lib/components/chat/Navbar.svelte (+96 -34)
📝 src/lib/components/chat/Placeholder.svelte (+1 -1)

...and 14 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/13097 **Author:** [@shadowfaxproject](https://github.com/shadowfaxproject) **Created:** 4/21/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `open-webui-85` --- ### 📝 Commits (10+) - [`acd5101`](https://github.com/open-webui/open-webui/commit/acd5101cf6a4d51338fa812cd25f5fc51b2d40d4) open-webui-3 Remove technical pop-up from first visit. - [`104da63`](https://github.com/open-webui/open-webui/commit/104da637a9a1341a0ccc3eb4e85328ff5cb8e851) open-webui-3 Remove technical pop-up from first visit. - [`bd8dda2`](https://github.com/open-webui/open-webui/commit/bd8dda2b1351bd38d3d477eeafdbabc9e23e951b) open-webui-36 Remove (Open WebUI) from title. - [`027fd1e`](https://github.com/open-webui/open-webui/commit/027fd1e42a938e72d9c17040eeee564be8360a2a) open-webui-63 Change default placeholder message. - [`f634778`](https://github.com/open-webui/open-webui/commit/f634778019428a0d95bc7498698e6a044f189d75) open-webui-68 Change AI-response-wait animation from default to something else. - [`8607838`](https://github.com/open-webui/open-webui/commit/86078388b2c67fb380866da8169210d415c0b3fa) open-webui-69 Replace open/close buttons with arrows. - [`391224f`](https://github.com/open-webui/open-webui/commit/391224ff518d97514945146b696701b45f6a15b0) open-webui-6 Remove bottom-left user-icon. - [`c59dda9`](https://github.com/open-webui/open-webui/commit/c59dda937afe028bdc45b2da7ca8213f2f0cbc5a) open-webui-66 Change tooltip 'New Chat' to 'New Gift Chat'. - [`5c946e2`](https://github.com/open-webui/open-webui/commit/5c946e2be1e6d1f62084e40d4cff3b00a2bc5ed5) open-webui-58 Change input-box to show 3 things: text-input-box, record-voice/headphones, start/stop. Align them on the same level. - [`afd43f2`](https://github.com/open-webui/open-webui/commit/afd43f2542fb5d5c86ee33bc898aed226da82134) open-webui-82 Remove model-config for users from open-webui page. ### 📊 Changes **34 files changed** (+1014 additions, -914 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/config.py` (+1 -0) 📝 `backend/open_webui/env.py` (+1 -2) 📝 `backend/open_webui/main.py` (+8 -1) 📝 `backend/open_webui/models/chats.py` (+5 -5) 📝 `backend/open_webui/routers/auths.py` (+19 -28) 📝 `backend/open_webui/routers/tasks.py` (+25 -5) ➕ `backend/open_webui/static/chat-waiting-mb-dark.gif` (+0 -0) ➕ `backend/open_webui/static/chat-waiting-mb-light.gif` (+0 -0) 📝 `backend/open_webui/test/apps/webui/routers/test_chats.py` (+8 -8) 📝 `backend/open_webui/utils/middleware.py` (+5 -14) 📝 `backend/open_webui/utils/task.py` (+3 -3) 📝 `backend/start.sh` (+16 -1) 📝 `src/lib/apis/index.ts` (+1 -1) 📝 `src/lib/components/chat/Chat.svelte` (+2 -2) 📝 `src/lib/components/chat/ChatPlaceholder.svelte` (+1 -1) 📝 `src/lib/components/chat/MessageInput.svelte` (+285 -439) 📝 `src/lib/components/chat/Messages/ResponseMessage.svelte` (+161 -70) 📝 `src/lib/components/chat/Messages/Skeleton.svelte` (+15 -43) 📝 `src/lib/components/chat/Navbar.svelte` (+96 -34) 📝 `src/lib/components/chat/Placeholder.svelte` (+1 -1) _...and 14 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 18:34:20 -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#9896