[PR #1277] [MERGED] 0.1.115 #43674

Closed
opened 2026-04-29 17:44:08 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/1277
Author: @tjbck
Created: 3/24/2024
Status: Merged
Merged: 3/24/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • ae97a96 WIP feat: cancel model download
  • e6dd0bf Migrate to python logging module with env var control.
  • a1412d0 fix: delete duplicate function
  • 5a90e90 Merge pull request #1241 from 7a6ac0/duplicate_def
  • f74f2ea Merge conflicts
  • f675a18 enhance: i18n's zh-TW translation for About.svelte
  • 8935dca added Bulgarian Translation
  • 5f26b2a added bg-BG (Bulgarian)
  • f3c113c fix: languages order
  • c54fb92 Merge pull request #1249 from pazoff/dev

📊 Changes

53 files changed (+5406 additions, -5689 deletions)

View changed files

📝 .gitignore (+1 -1)
📝 CHANGELOG.md (+18 -0)
📝 backend/apps/audio/main.py (+8 -4)
📝 backend/apps/images/main.py (+107 -13)
backend/apps/images/utils/comfyui.py (+228 -0)
📝 backend/apps/litellm/main.py (+7 -2)
📝 backend/apps/ollama/main.py (+277 -37)
📝 backend/apps/openai/main.py (+13 -8)
📝 backend/apps/rag/main.py (+93 -42)
📝 backend/apps/rag/utils.py (+9 -3)
📝 backend/apps/web/internal/db.py (+5 -2)
📝 backend/apps/web/models/auths.py (+7 -2)
📝 backend/apps/web/models/chats.py (+0 -14)
📝 backend/apps/web/models/documents.py (+7 -2)
📝 backend/apps/web/models/tags.py (+9 -4)
📝 backend/apps/web/routers/chats.py (+7 -2)
📝 backend/apps/web/routers/users.py (+6 -1)
📝 backend/apps/web/routers/utils.py (+0 -149)
📝 backend/config.py (+35 -4)
📝 backend/main.py (+8 -2)

...and 33 more files

📄 Description

Resolves #1072 #1281 #1200 #526


🔄 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/1277 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 3/24/2024 **Status:** ✅ Merged **Merged:** 3/24/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`ae97a96`](https://github.com/open-webui/open-webui/commit/ae97a96379ed85d14e2b70cbd5ede233f1178534) WIP feat: cancel model download - [`e6dd0bf`](https://github.com/open-webui/open-webui/commit/e6dd0bfbe0a3cd3eff799146332084fc70e00cb5) Migrate to python logging module with env var control. - [`a1412d0`](https://github.com/open-webui/open-webui/commit/a1412d0b55d88980cdf93fa19f02ceae13a05d02) fix: delete duplicate function - [`5a90e90`](https://github.com/open-webui/open-webui/commit/5a90e90c0bc845ba651f3d7d0aaf4ee03de9f5ed) Merge pull request #1241 from 7a6ac0/duplicate_def - [`f74f2ea`](https://github.com/open-webui/open-webui/commit/f74f2ea76517041bab1e245650a4690793fe22f9) Merge conflicts - [`f675a18`](https://github.com/open-webui/open-webui/commit/f675a18b05735d860bc86b03de3cb243ea1d8b80) enhance: `i18n`'s zh-TW translation for `About.svelte` - [`8935dca`](https://github.com/open-webui/open-webui/commit/8935dca2792f2a1a54eee443cd80be6a47a9ebc4) added Bulgarian Translation - [`5f26b2a`](https://github.com/open-webui/open-webui/commit/5f26b2a9e308e7a26056297a5f7a0cdedbb362a0) added bg-BG (Bulgarian) - [`f3c113c`](https://github.com/open-webui/open-webui/commit/f3c113cb04d55725ba332043787e5cee97e32b06) fix: languages order - [`c54fb92`](https://github.com/open-webui/open-webui/commit/c54fb922631f15347087444702060f1c907a2926) Merge pull request #1249 from pazoff/dev ### 📊 Changes **53 files changed** (+5406 additions, -5689 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -1) 📝 `CHANGELOG.md` (+18 -0) 📝 `backend/apps/audio/main.py` (+8 -4) 📝 `backend/apps/images/main.py` (+107 -13) ➕ `backend/apps/images/utils/comfyui.py` (+228 -0) 📝 `backend/apps/litellm/main.py` (+7 -2) 📝 `backend/apps/ollama/main.py` (+277 -37) 📝 `backend/apps/openai/main.py` (+13 -8) 📝 `backend/apps/rag/main.py` (+93 -42) 📝 `backend/apps/rag/utils.py` (+9 -3) 📝 `backend/apps/web/internal/db.py` (+5 -2) 📝 `backend/apps/web/models/auths.py` (+7 -2) 📝 `backend/apps/web/models/chats.py` (+0 -14) 📝 `backend/apps/web/models/documents.py` (+7 -2) 📝 `backend/apps/web/models/tags.py` (+9 -4) 📝 `backend/apps/web/routers/chats.py` (+7 -2) 📝 `backend/apps/web/routers/users.py` (+6 -1) 📝 `backend/apps/web/routers/utils.py` (+0 -149) 📝 `backend/config.py` (+35 -4) 📝 `backend/main.py` (+8 -2) _...and 33 more files_ </details> ### 📄 Description Resolves #1072 #1281 #1200 #526 --- <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 2026-04-29 17:44:08 -05: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#43674