[PR #1555] [MERGED] 0.1.119 #7501

Closed
opened 2025-11-11 17:28:30 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/1555
Author: @tjbck
Created: 4/15/2024
Status: Merged
Merged: 4/16/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 429242b Introduce Whisper model auto-update control.
  • 81c8717 Format fix
  • 3b8ea55 Add IMAGE_GENERATION_ENABLED env var
  • ff01398 Format fix
  • 872ea83 feat: admin panel user list pagination
  • 8a9cf44 feat: combine with search result
  • 1d8496e Fixed malformed date format
  • 18a3f06 Merge pull request #1505 from Fusseldieb/patch-1
  • 6623ecb Comment fix config.py ln 412
  • 79a4abc Comment spelling mistake fix

📊 Changes

41 files changed (+1452 additions, -284 deletions)

View changed files

📝 CHANGELOG.md (+20 -0)
📝 Dockerfile (+4 -3)
📝 backend/apps/audio/main.py (+19 -6)
📝 backend/apps/images/main.py (+8 -2)
📝 backend/apps/ollama/main.py (+82 -8)
📝 backend/apps/rag/main.py (+178 -41)
📝 backend/apps/rag/utils.py (+130 -16)
📝 backend/config.py (+55 -42)
📝 backend/main.py (+4 -0)
📝 kubernetes/helm/templates/_helpers.tpl (+1 -1)
📝 package-lock.json (+2 -2)
📝 package.json (+1 -1)
📝 src/app.html (+1 -1)
📝 src/lib/apis/ollama/index.ts (+28 -1)
📝 src/lib/apis/openai/index.ts (+2 -1)
📝 src/lib/apis/rag/index.ts (+11 -4)
📝 src/lib/components/ChangelogModal.svelte (+1 -0)
📝 src/lib/components/chat/Messages/ResponseMessage.svelte (+5 -1)
📝 src/lib/components/chat/ModelSelector/Selector.svelte (+1 -1)
📝 src/lib/components/chat/Settings/Models.svelte (+1 -1)

...and 21 more files

📄 Description

Resolves #1338 #679 #886 #1578 #1557


🔄 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/1555 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 4/15/2024 **Status:** ✅ Merged **Merged:** 4/16/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`429242b`](https://github.com/open-webui/open-webui/commit/429242b4d3bb6e24badfc403f690540b3b44cd6f) Introduce Whisper model auto-update control. - [`81c8717`](https://github.com/open-webui/open-webui/commit/81c8717d75170a5d5a8526dea35894060105d222) Format fix - [`3b8ea55`](https://github.com/open-webui/open-webui/commit/3b8ea55bc8ec0cd00b31001e431021c39b174150) Add IMAGE_GENERATION_ENABLED env var - [`ff01398`](https://github.com/open-webui/open-webui/commit/ff0139881212d636232880f7b5bf1656104f0e0d) Format fix - [`872ea83`](https://github.com/open-webui/open-webui/commit/872ea83c50a38cacea30c77cd0e64ea67f36d2aa) feat: admin panel user list pagination - [`8a9cf44`](https://github.com/open-webui/open-webui/commit/8a9cf44dbc2c7c377659dfcbeb39905575edfeea) feat: combine with search result - [`1d8496e`](https://github.com/open-webui/open-webui/commit/1d8496eabb5fa69ace5fd57a001b5722096a6246) Fixed malformed date format - [`18a3f06`](https://github.com/open-webui/open-webui/commit/18a3f06a623bf49fbe2b76fe1abc733f19ea29a2) Merge pull request #1505 from Fusseldieb/patch-1 - [`6623ecb`](https://github.com/open-webui/open-webui/commit/6623ecb3028e8c360ec750852a141c86d8b4b4ce) Comment fix config.py ln 412 - [`79a4abc`](https://github.com/open-webui/open-webui/commit/79a4abc3ec978cc5d635c0570418fb5978aeb890) Comment spelling mistake fix ### 📊 Changes **41 files changed** (+1452 additions, -284 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+20 -0) 📝 `Dockerfile` (+4 -3) 📝 `backend/apps/audio/main.py` (+19 -6) 📝 `backend/apps/images/main.py` (+8 -2) 📝 `backend/apps/ollama/main.py` (+82 -8) 📝 `backend/apps/rag/main.py` (+178 -41) 📝 `backend/apps/rag/utils.py` (+130 -16) 📝 `backend/config.py` (+55 -42) 📝 `backend/main.py` (+4 -0) 📝 `kubernetes/helm/templates/_helpers.tpl` (+1 -1) 📝 `package-lock.json` (+2 -2) 📝 `package.json` (+1 -1) 📝 `src/app.html` (+1 -1) 📝 `src/lib/apis/ollama/index.ts` (+28 -1) 📝 `src/lib/apis/openai/index.ts` (+2 -1) 📝 `src/lib/apis/rag/index.ts` (+11 -4) 📝 `src/lib/components/ChangelogModal.svelte` (+1 -0) 📝 `src/lib/components/chat/Messages/ResponseMessage.svelte` (+5 -1) 📝 `src/lib/components/chat/ModelSelector/Selector.svelte` (+1 -1) 📝 `src/lib/components/chat/Settings/Models.svelte` (+1 -1) _...and 21 more files_ </details> ### 📄 Description Resolves #1338 #679 #886 #1578 #1557 --- <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:28:30 -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#7501