[PR #3669] [MERGED] dev #21310

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/3669
Author: @tjbck
Created: 7/6/2024
Status: Merged
Merged: 7/6/2024
Merged by: @tjbck

Base: dev-migrationHead: dev-migration-session


📝 Commits (10+)

📊 Changes

24 files changed (+1177 additions, -725 deletions)

View changed files

📝 backend/apps/webui/internal/db.py (+47 -0)
backend/apps/webui/internal/wrappers.py (+72 -0)
📝 backend/apps/webui/main.py (+76 -0)
📝 backend/apps/webui/models/auths.py (+52 -41)
📝 backend/apps/webui/models/chats.py (+188 -142)
📝 backend/apps/webui/models/documents.py (+54 -42)
📝 backend/apps/webui/models/files.py (+48 -36)
📝 backend/apps/webui/models/functions.py (+103 -81)
📝 backend/apps/webui/models/memories.py (+74 -58)
📝 backend/apps/webui/models/models.py (+32 -23)
📝 backend/apps/webui/models/prompts.py (+32 -22)
📝 backend/apps/webui/models/tags.py (+120 -102)
📝 backend/apps/webui/models/tools.py (+53 -41)
📝 backend/apps/webui/models/users.py (+92 -73)
📝 backend/main.py (+5 -1)
📝 src/lib/components/admin/Settings.svelte (+15 -2)
📝 src/lib/components/admin/Settings/Models.svelte (+8 -6)
📝 src/lib/components/chat/Chat.svelte (+19 -11)
📝 src/lib/components/chat/Messages/ResponseMessage/WebSearchResults.svelte (+15 -22)
📝 src/lib/components/chat/SettingsModal.svelte (+35 -4)

...and 4 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/3669 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 7/6/2024 **Status:** ✅ Merged **Merged:** 7/6/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev-migration` ← **Head:** `dev-migration-session` --- ### 📝 Commits (10+) - [`4e433d9`](https://github.com/open-webui/open-webui/commit/4e433d9015b2d744bc0efdc504d2a8865f0bc5e1) wip: citations via __event_emitter__ - [`f6dcffa`](https://github.com/open-webui/open-webui/commit/f6dcffab135bc0be3036970ab1bec6c9ed70a91d) fix: pinned chat delete issue - [`8646460`](https://github.com/open-webui/open-webui/commit/864646094e248d1ee3ed9f09e12312ec241b3217) refac - [`37a5d2c`](https://github.com/open-webui/open-webui/commit/37a5d2c06b78098ed70f52e9fefdc824ad96d531) Update db.py - [`8fe2a7b`](https://github.com/open-webui/open-webui/commit/8fe2a7bb75e222f49f177437a0e1b5279b23a37e) fix - [`8b13755`](https://github.com/open-webui/open-webui/commit/8b13755d5634d76840077c8bdcac6def93d86a70) Update auths.py - [`9a6cbaf`](https://github.com/open-webui/open-webui/commit/9a6cbafdef7a1a44c7e3ad914996204d07c4a77e) fix: user valves - [`740b6f5`](https://github.com/open-webui/open-webui/commit/740b6f5c17533350ae002f62e0097d8730350c04) fix: pull model - [`0527755`](https://github.com/open-webui/open-webui/commit/05277556005230847f552b55c2d896ecd57fe281) use data field - [`d20601d`](https://github.com/open-webui/open-webui/commit/d20601dc475034d51a7617ba9ceedb84fdbacabf) feat: Add custom Collapsible component for collapsible content ### 📊 Changes **24 files changed** (+1177 additions, -725 deletions) <details> <summary>View changed files</summary> 📝 `backend/apps/webui/internal/db.py` (+47 -0) ➕ `backend/apps/webui/internal/wrappers.py` (+72 -0) 📝 `backend/apps/webui/main.py` (+76 -0) 📝 `backend/apps/webui/models/auths.py` (+52 -41) 📝 `backend/apps/webui/models/chats.py` (+188 -142) 📝 `backend/apps/webui/models/documents.py` (+54 -42) 📝 `backend/apps/webui/models/files.py` (+48 -36) 📝 `backend/apps/webui/models/functions.py` (+103 -81) 📝 `backend/apps/webui/models/memories.py` (+74 -58) 📝 `backend/apps/webui/models/models.py` (+32 -23) 📝 `backend/apps/webui/models/prompts.py` (+32 -22) 📝 `backend/apps/webui/models/tags.py` (+120 -102) 📝 `backend/apps/webui/models/tools.py` (+53 -41) 📝 `backend/apps/webui/models/users.py` (+92 -73) 📝 `backend/main.py` (+5 -1) 📝 `src/lib/components/admin/Settings.svelte` (+15 -2) 📝 `src/lib/components/admin/Settings/Models.svelte` (+8 -6) 📝 `src/lib/components/chat/Chat.svelte` (+19 -11) 📝 `src/lib/components/chat/Messages/ResponseMessage/WebSearchResults.svelte` (+15 -22) 📝 `src/lib/components/chat/SettingsModal.svelte` (+35 -4) _...and 4 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 2026-04-20 03:26:30 -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#21310