[PR #10355] [CLOSED] Ca/change-const #9301

Closed
opened 2025-11-11 18:19:15 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/10355
Author: @CenaAshoori
Created: 2/19/2025
Status: Closed

Base: mainHead: ca/change-const


📝 Commits (10+)

  • 300ae39 Update - manifest & images
  • 2d2d528 Ca/use-own-apikeys (#3)
  • 52822f3 fix get_all_models (#4)
  • 470abb5 new file added
  • dd22102 add runui.sh file
  • d617c0a change github action ci/cd for docker image
  • c942451 Merge pull request #5 from AiBrary-dev/ca/add-docker-for-render
  • 4638660 Merge branch 'main' into release
  • f2fad35 change docker workflow
  • e09c305 Merge pull request #7 from AiBrary-dev/ca/add-docker-for-render

📊 Changes

38 files changed (+603 additions, -89 deletions)

View changed files

.github/workflows/custom-docker.yaml (+41 -0)
📝 .github/workflows/docker-build.yaml (+1 -1)
📝 .gitignore (+2 -0)
📝 backend/open_webui/main.py (+3 -3)
📝 backend/open_webui/models/auths.py (+4 -0)
📝 backend/open_webui/retrieval/utils.py (+1 -1)
📝 backend/open_webui/routers/audio.py (+4 -6)
📝 backend/open_webui/routers/auths.py (+137 -34)
📝 backend/open_webui/routers/images.py (+1 -3)
📝 backend/open_webui/routers/ollama.py (+1 -1)
📝 backend/open_webui/routers/openai.py (+12 -15)
📝 backend/open_webui/routers/pipelines.py (+1 -1)
📝 backend/open_webui/static/favicon.png (+0 -0)
📝 backend/open_webui/static/logo.png (+0 -0)
📝 backend/open_webui/static/splash.png (+0 -0)
backend/open_webui/utils/get_apikey_by_email.py (+20 -0)
📝 backend/open_webui/utils/models.py (+5 -5)
📝 backend/open_webui/utils/oauth.py (+9 -1)
backend/requirements_no_ollama.txt (+108 -0)
docker-compose-only-open-webui.yaml (+27 -0)

...and 18 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/10355 **Author:** [@CenaAshoori](https://github.com/CenaAshoori) **Created:** 2/19/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `ca/change-const` --- ### 📝 Commits (10+) - [`300ae39`](https://github.com/open-webui/open-webui/commit/300ae3998cdcf484af1a933d1eb57a5dfa1e0464) Update - manifest & images - [`2d2d528`](https://github.com/open-webui/open-webui/commit/2d2d528dd9e653db61364dc65b12db3b21cc8346) Ca/use-own-apikeys (#3) - [`52822f3`](https://github.com/open-webui/open-webui/commit/52822f3a9da49299b743c0ee9109addd640ed2ba) fix get_all_models (#4) - [`470abb5`](https://github.com/open-webui/open-webui/commit/470abb5bd5515ba3b77f396ce530979c12a2fc0a) new file added - [`dd22102`](https://github.com/open-webui/open-webui/commit/dd22102c798b47b1ed35086626a97b53f37752b7) add runui.sh file - [`d617c0a`](https://github.com/open-webui/open-webui/commit/d617c0a9f2332fafd4250cd0c617ccaba9d4a5c5) change github action ci/cd for docker image - [`c942451`](https://github.com/open-webui/open-webui/commit/c942451ac54c1781fa90e18e982cec7a2640b56e) Merge pull request #5 from AiBrary-dev/ca/add-docker-for-render - [`4638660`](https://github.com/open-webui/open-webui/commit/46386609081969b5bdb301f7adf2453a4a8aba05) Merge branch 'main' into release - [`f2fad35`](https://github.com/open-webui/open-webui/commit/f2fad35fb05bd4664b12ee45606e5e84a88b1bd5) change docker workflow - [`e09c305`](https://github.com/open-webui/open-webui/commit/e09c3058693b3f89968c7f28dfc4ecbfbb5ddf79) Merge pull request #7 from AiBrary-dev/ca/add-docker-for-render ### 📊 Changes **38 files changed** (+603 additions, -89 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/custom-docker.yaml` (+41 -0) 📝 `.github/workflows/docker-build.yaml` (+1 -1) 📝 `.gitignore` (+2 -0) 📝 `backend/open_webui/main.py` (+3 -3) 📝 `backend/open_webui/models/auths.py` (+4 -0) 📝 `backend/open_webui/retrieval/utils.py` (+1 -1) 📝 `backend/open_webui/routers/audio.py` (+4 -6) 📝 `backend/open_webui/routers/auths.py` (+137 -34) 📝 `backend/open_webui/routers/images.py` (+1 -3) 📝 `backend/open_webui/routers/ollama.py` (+1 -1) 📝 `backend/open_webui/routers/openai.py` (+12 -15) 📝 `backend/open_webui/routers/pipelines.py` (+1 -1) 📝 `backend/open_webui/static/favicon.png` (+0 -0) 📝 `backend/open_webui/static/logo.png` (+0 -0) 📝 `backend/open_webui/static/splash.png` (+0 -0) ➕ `backend/open_webui/utils/get_apikey_by_email.py` (+20 -0) 📝 `backend/open_webui/utils/models.py` (+5 -5) 📝 `backend/open_webui/utils/oauth.py` (+9 -1) ➕ `backend/requirements_no_ollama.txt` (+108 -0) ➕ `docker-compose-only-open-webui.yaml` (+27 -0) _...and 18 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:19:15 -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#9301