Original PR: https://github.com/open-webui/open-webui/pull/1405 Author: @jannikstdl Created: 4/3/2024 Status: ❌ Closed
Base: main ← Head: fix-whitemode-hover
main
fix-whitemode-hover
50bec32
384b7e8
62ab163
29e48b1
75a40de
f6cef31
e3b1cbb
c004ecd
c5948d3
5abe008
40 files changed (+1860 additions, -470 deletions)
📝 .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)
.github/workflows/docker-build.yaml
Dockerfile
README.md
backend/apps/audio/main.py
backend/apps/ollama/main.py
backend/apps/rag/main.py
backend/apps/web/internal/db.py
backend/apps/web/internal/migrations/001_initial_schema.py
backend/apps/web/internal/migrations/002_add_local_sharing.py
backend/apps/web/internal/migrations/003_add_auth_api_key.py
backend/apps/web/internal/migrations/README.md
backend/apps/web/main.py
backend/apps/web/models/auths.py
backend/apps/web/models/chats.py
backend/apps/web/models/users.py
backend/apps/web/routers/auths.py
backend/apps/web/routers/chats.py
backend/config.py
backend/constants.py
backend/main.py
...and 20 more files
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/1405
Author: @jannikstdl
Created: 4/3/2024
Status: ❌ Closed
Base:
main← Head:fix-whitemode-hover📝 Commits (10+)
50bec32Dockerfile optimisation384b7e8changed from bullseye to bookworm + removed unused steps62ab163Update Dockerfile29e48b1Exposed port 808075a40deCreate Dockerfile-cudaf6cef31Optimize Dockerfile for CUDA supporte3b1cbbParametrize CUDA_VERSION in Dockerfilec004ecdRefactor Dockerfile for CPU and CUDA buildsc5948d3Updated Dockerfile for CUDA backend5abe008cuda 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.