[PR #6413] [MERGED] 0.3.34 #8675

Closed
opened 2025-11-11 18:02:44 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/6413
Author: @tjbck
Created: 10/25/2024
Status: Merged
Merged: 10/26/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 46a97e6 fix: tags custom prompt issue
  • 2346133 fix: boolean values don't need to be accessed by .value
  • b4acf68 update the GenerateChatCompletionForm stream to be defaulted to true.
  • 4443392 Modify and Add Dutch translations
  • bbc9825 Add: nl-NL Translations
  • a1469ca Add: i18n Dutch translations
  • ad952b9 Merge pull request #6399 from Natedorr/main
  • 9b030f6 Merge pull request #6392 from nodomain/patch-1
  • af34565 Merge pull request #6409 from MarcRevo/nl-translations-mb
  • 0b38584 refac: rich text input paste behaviour

📊 Changes

73 files changed (+1036 additions, -363 deletions)

View changed files

📝 CHANGELOG.md (+22 -0)
📝 Dockerfile (+1 -1)
📝 backend/open_webui/apps/audio/main.py (+2 -1)
📝 backend/open_webui/apps/ollama/main.py (+1 -1)
📝 backend/open_webui/apps/retrieval/main.py (+7 -1)
📝 backend/open_webui/apps/webui/routers/evaluations.py (+27 -15)
📝 backend/open_webui/apps/webui/routers/knowledge.py (+33 -8)
📝 backend/open_webui/main.py (+7 -3)
📝 backend/open_webui/storage/provider.py (+6 -5)
📝 backend/open_webui/utils/oauth.py (+2 -2)
📝 backend/open_webui/utils/security_headers.py (+1 -1)
📝 package-lock.json (+2 -2)
📝 package.json (+1 -1)
📝 src/app.css (+1 -1)
📝 src/lib/apis/evaluations/index.ts (+31 -0)
📝 src/lib/components/admin/Evaluations.svelte (+61 -17)
📝 src/lib/components/admin/Settings/Interface.svelte (+2 -2)
📝 src/lib/components/chat/MessageInput.svelte (+223 -48)
📝 src/lib/components/chat/MessageInput/Commands/Prompts.svelte (+12 -3)
📝 src/lib/components/chat/MessageInput/VoiceRecording.svelte (+161 -127)

...and 53 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/6413 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 10/25/2024 **Status:** ✅ Merged **Merged:** 10/26/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`46a97e6`](https://github.com/open-webui/open-webui/commit/46a97e62c7b095b0a87b890f9449742382800f53) fix: tags custom prompt issue - [`2346133`](https://github.com/open-webui/open-webui/commit/23461332b916e53f1c6ec3661975565ca3394d8e) fix: boolean values don't need to be accessed by .value - [`b4acf68`](https://github.com/open-webui/open-webui/commit/b4acf689e3e62830eb745fe19bf088a3b254e9fb) update the GenerateChatCompletionForm stream to be defaulted to true. - [`4443392`](https://github.com/open-webui/open-webui/commit/44433929e73796a14ffcf71d2654a30e694333db) Modify and Add Dutch translations - [`bbc9825`](https://github.com/open-webui/open-webui/commit/bbc98259a57bf7c123641884738627393a9a72ed) Add: nl-NL Translations - [`a1469ca`](https://github.com/open-webui/open-webui/commit/a1469cae59657c1c659d5ffea675ca70665c6b01) Add: i18n Dutch translations - [`ad952b9`](https://github.com/open-webui/open-webui/commit/ad952b9394426d0e006f3cf9beda5e1470724cb8) Merge pull request #6399 from Natedorr/main - [`9b030f6`](https://github.com/open-webui/open-webui/commit/9b030f6ad6fb8d97aba34832e868bbba7d100c97) Merge pull request #6392 from nodomain/patch-1 - [`af34565`](https://github.com/open-webui/open-webui/commit/af3456511be31b70b271f3cba62854a4dbe591fe) Merge pull request #6409 from MarcRevo/nl-translations-mb - [`0b38584`](https://github.com/open-webui/open-webui/commit/0b38584e52c0e90e2eaf08c4540360d5251d309c) refac: rich text input paste behaviour ### 📊 Changes **73 files changed** (+1036 additions, -363 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+22 -0) 📝 `Dockerfile` (+1 -1) 📝 `backend/open_webui/apps/audio/main.py` (+2 -1) 📝 `backend/open_webui/apps/ollama/main.py` (+1 -1) 📝 `backend/open_webui/apps/retrieval/main.py` (+7 -1) 📝 `backend/open_webui/apps/webui/routers/evaluations.py` (+27 -15) 📝 `backend/open_webui/apps/webui/routers/knowledge.py` (+33 -8) 📝 `backend/open_webui/main.py` (+7 -3) 📝 `backend/open_webui/storage/provider.py` (+6 -5) 📝 `backend/open_webui/utils/oauth.py` (+2 -2) 📝 `backend/open_webui/utils/security_headers.py` (+1 -1) 📝 `package-lock.json` (+2 -2) 📝 `package.json` (+1 -1) 📝 `src/app.css` (+1 -1) 📝 `src/lib/apis/evaluations/index.ts` (+31 -0) 📝 `src/lib/components/admin/Evaluations.svelte` (+61 -17) 📝 `src/lib/components/admin/Settings/Interface.svelte` (+2 -2) 📝 `src/lib/components/chat/MessageInput.svelte` (+223 -48) 📝 `src/lib/components/chat/MessageInput/Commands/Prompts.svelte` (+12 -3) 📝 `src/lib/components/chat/MessageInput/VoiceRecording.svelte` (+161 -127) _...and 53 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:02:44 -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#8675