[PR #24189] [CLOSED] Feat/ncp cloud db #50541

Closed
opened 2026-04-30 03:19:02 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/24189
Author: @jsdysw
Created: 4/28/2026
Status: Closed

Base: devHead: feat/ncp-cloud-db


📝 Commits (10+)

  • fe6783c Merge pull request #19030 from open-webui/dev
  • fc05e0a Merge pull request #19405 from open-webui/dev
  • e3faec6 Merge pull request #19416 from open-webui/dev
  • 9899293 Merge pull request #19448 from open-webui/dev
  • 140605e Merge pull request #19462 from open-webui/dev
  • 884a061 [12.04] 프론트엔드 채팅 버그 픽스
  • 53a54fd Merge pull request #1 from omnipotentlab/feature/ui/main
  • 5eb29e2 [12.06] 채팅 시작 화면 디자인 개선. (#2)
  • d73c204 [12.04] 프론트엔드 채팅 버그 픽스
  • 994b9e8 [12.06] 채팅 시작 화면 디자인 개선.

📊 Changes

276 files changed (+54359 additions, -7336 deletions)

View changed files

📝 .env.example (+24 -1)
📝 .github/workflows/build-release.disabled (+0 -0)
.github/workflows/deploy.yml (+45 -0)
📝 .github/workflows/docker-build.disabled (+0 -0)
📝 .github/workflows/format-backend.disabled (+0 -0)
📝 .github/workflows/format-build-frontend.yaml (+1 -10)
📝 .github/workflows/release-pypi.disabled (+0 -0)
📝 .gitignore (+8 -0)
SECURITY_PATCHES.md (+577 -0)
📝 backend/open_webui/config.py (+89 -0)
📝 backend/open_webui/env.py (+11 -3)
backend/open_webui/integrations/__init__.py (+3 -0)
backend/open_webui/integrations/langfuse_adapter.py (+1229 -0)
backend/open_webui/integrations/langfuse_tracing.py (+435 -0)
backend/open_webui/integrations/learning_spans.py (+958 -0)
backend/open_webui/integrations/llm_judge.py (+45 -0)
📝 backend/open_webui/main.py (+88 -3)
backend/open_webui/migrations/versions/add_attempts_table.py (+47 -0)
backend/open_webui/migrations/versions/add_chapter_id_to_chat.py (+26 -0)
backend/open_webui/migrations/versions/add_chat_settings_columns.py (+31 -0)

...and 80 more files

📄 Description


🔄 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/24189 **Author:** [@jsdysw](https://github.com/jsdysw) **Created:** 4/28/2026 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `feat/ncp-cloud-db` --- ### 📝 Commits (10+) - [`fe6783c`](https://github.com/open-webui/open-webui/commit/fe6783c16699911c7be17392596d579333fb110c) Merge pull request #19030 from open-webui/dev - [`fc05e0a`](https://github.com/open-webui/open-webui/commit/fc05e0a6c5d39da60b603b4d520f800d6e36f748) Merge pull request #19405 from open-webui/dev - [`e3faec6`](https://github.com/open-webui/open-webui/commit/e3faec62c58e3a83d89aa3df539feacefa125e0c) Merge pull request #19416 from open-webui/dev - [`9899293`](https://github.com/open-webui/open-webui/commit/9899293f050ad50ae12024cbebee7e018acd851e) Merge pull request #19448 from open-webui/dev - [`140605e`](https://github.com/open-webui/open-webui/commit/140605e660b8186a7d5c79fb3be6ffb147a2f498) Merge pull request #19462 from open-webui/dev - [`884a061`](https://github.com/open-webui/open-webui/commit/884a061058af5cba6ade46fbc16115ab21d5c6cf) [12.04] 프론트엔드 채팅 버그 픽스 - [`53a54fd`](https://github.com/open-webui/open-webui/commit/53a54fd49767d6f86db5c92caf35224417f22440) Merge pull request #1 from omnipotentlab/feature/ui/main - [`5eb29e2`](https://github.com/open-webui/open-webui/commit/5eb29e2da7ab15779c45da18c24ac197cab2dd94) [12.06] 채팅 시작 화면 디자인 개선. (#2) - [`d73c204`](https://github.com/open-webui/open-webui/commit/d73c20458b03051511c69e2370fd1fa3424e889f) [12.04] 프론트엔드 채팅 버그 픽스 - [`994b9e8`](https://github.com/open-webui/open-webui/commit/994b9e8867984e0a4ccc748a1633c8ea66b4f319) [12.06] 채팅 시작 화면 디자인 개선. ### 📊 Changes **276 files changed** (+54359 additions, -7336 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+24 -1) 📝 `.github/workflows/build-release.disabled` (+0 -0) ➕ `.github/workflows/deploy.yml` (+45 -0) 📝 `.github/workflows/docker-build.disabled` (+0 -0) 📝 `.github/workflows/format-backend.disabled` (+0 -0) 📝 `.github/workflows/format-build-frontend.yaml` (+1 -10) 📝 `.github/workflows/release-pypi.disabled` (+0 -0) 📝 `.gitignore` (+8 -0) ➕ `SECURITY_PATCHES.md` (+577 -0) 📝 `backend/open_webui/config.py` (+89 -0) 📝 `backend/open_webui/env.py` (+11 -3) ➕ `backend/open_webui/integrations/__init__.py` (+3 -0) ➕ `backend/open_webui/integrations/langfuse_adapter.py` (+1229 -0) ➕ `backend/open_webui/integrations/langfuse_tracing.py` (+435 -0) ➕ `backend/open_webui/integrations/learning_spans.py` (+958 -0) ➕ `backend/open_webui/integrations/llm_judge.py` (+45 -0) 📝 `backend/open_webui/main.py` (+88 -3) ➕ `backend/open_webui/migrations/versions/add_attempts_table.py` (+47 -0) ➕ `backend/open_webui/migrations/versions/add_chapter_id_to_chat.py` (+26 -0) ➕ `backend/open_webui/migrations/versions/add_chat_settings_columns.py` (+31 -0) _...and 80 more files_ </details> ### 📄 Description - --- <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-30 03:19:02 -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#50541