[PR #1405] [CLOSED] fix whitemode hover #7458

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/1405
Author: @jannikstdl
Created: 4/3/2024
Status: Closed

Base: mainHead: fix-whitemode-hover


📝 Commits (10+)

  • 50bec32 Dockerfile optimisation
  • 384b7e8 changed from bullseye to bookworm + removed unused steps
  • 62ab163 Update Dockerfile
  • 29e48b1 Exposed port 8080
  • 75a40de Create Dockerfile-cuda
  • f6cef31 Optimize Dockerfile for CUDA support
  • e3b1cbb Parametrize CUDA_VERSION in Dockerfile
  • c004ecd Refactor Dockerfile for CPU and CUDA builds
  • c5948d3 Updated Dockerfile for CUDA backend
  • 5abe008 cuda support

📊 Changes

40 files changed (+1860 additions, -470 deletions)

View changed files

📝 .github/workflows/docker-build.yaml (+26 -10)
📝 Dockerfile (+88 -53)
📝 README.md (+59 -0)
📝 backend/apps/audio/main.py (+6 -1)
📝 backend/apps/ollama/main.py (+6 -0)
📝 backend/apps/rag/main.py (+3 -13)
📝 backend/apps/web/internal/db.py (+4 -1)
backend/apps/web/internal/migrations/001_initial_schema.py (+149 -0)
backend/apps/web/internal/migrations/002_add_local_sharing.py (+48 -0)
backend/apps/web/internal/migrations/003_add_auth_api_key.py (+48 -0)
backend/apps/web/internal/migrations/README.md (+21 -0)
📝 backend/apps/web/main.py (+2 -1)
📝 backend/apps/web/models/auths.py (+26 -0)
📝 backend/apps/web/models/chats.py (+93 -1)
📝 backend/apps/web/models/users.py (+25 -0)
📝 backend/apps/web/routers/auths.py (+62 -8)
📝 backend/apps/web/routers/chats.py (+72 -0)
📝 backend/config.py (+20 -6)
📝 backend/constants.py (+4 -1)
📝 backend/main.py (+16 -0)

...and 20 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/1405 **Author:** [@jannikstdl](https://github.com/jannikstdl) **Created:** 4/3/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix-whitemode-hover` --- ### 📝 Commits (10+) - [`50bec32`](https://github.com/open-webui/open-webui/commit/50bec3215338876270c139df2f52845e03023c26) Dockerfile optimisation - [`384b7e8`](https://github.com/open-webui/open-webui/commit/384b7e8462d6499f32226e94f54b61e24867af7c) changed from bullseye to bookworm + removed unused steps - [`62ab163`](https://github.com/open-webui/open-webui/commit/62ab163316d736cf3c0b3bd2b9389e5c3426225c) Update Dockerfile - [`29e48b1`](https://github.com/open-webui/open-webui/commit/29e48b1c1f9bf83cce58e6ea6bc6f620eef9a5f8) Exposed port 8080 - [`75a40de`](https://github.com/open-webui/open-webui/commit/75a40dead6d201b5ea1a242afb8d73962602d22e) Create Dockerfile-cuda - [`f6cef31`](https://github.com/open-webui/open-webui/commit/f6cef312f2386aebee19da62692c635e8f88c1df) Optimize Dockerfile for CUDA support - [`e3b1cbb`](https://github.com/open-webui/open-webui/commit/e3b1cbbb86997881f5984b7a6afa2716cf898a61) Parametrize CUDA_VERSION in Dockerfile - [`c004ecd`](https://github.com/open-webui/open-webui/commit/c004ecdccc8cffc42776626f91d42ebba193bd7d) Refactor Dockerfile for CPU and CUDA builds - [`c5948d3`](https://github.com/open-webui/open-webui/commit/c5948d3e2ca4bc226753691d438de04352e032cc) Updated Dockerfile for CUDA backend - [`5abe008`](https://github.com/open-webui/open-webui/commit/5abe0089cb7bf67b639ee241be3f824d58e86cee) cuda support ### 📊 Changes **40 files changed** (+1860 additions, -470 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/docker-build.yaml` (+26 -10) 📝 `Dockerfile` (+88 -53) 📝 `README.md` (+59 -0) 📝 `backend/apps/audio/main.py` (+6 -1) 📝 `backend/apps/ollama/main.py` (+6 -0) 📝 `backend/apps/rag/main.py` (+3 -13) 📝 `backend/apps/web/internal/db.py` (+4 -1) ➕ `backend/apps/web/internal/migrations/001_initial_schema.py` (+149 -0) ➕ `backend/apps/web/internal/migrations/002_add_local_sharing.py` (+48 -0) ➕ `backend/apps/web/internal/migrations/003_add_auth_api_key.py` (+48 -0) ➕ `backend/apps/web/internal/migrations/README.md` (+21 -0) 📝 `backend/apps/web/main.py` (+2 -1) 📝 `backend/apps/web/models/auths.py` (+26 -0) 📝 `backend/apps/web/models/chats.py` (+93 -1) 📝 `backend/apps/web/models/users.py` (+25 -0) 📝 `backend/apps/web/routers/auths.py` (+62 -8) 📝 `backend/apps/web/routers/chats.py` (+72 -0) 📝 `backend/config.py` (+20 -6) 📝 `backend/constants.py` (+4 -1) 📝 `backend/main.py` (+16 -0) _...and 20 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 17:26:59 -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#7458