[PR #5861] [MERGED] feat: knowledge/projects #8563

Closed
opened 2025-11-11 17:59:51 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/5861
Author: @tjbck
Created: 10/1/2024
Status: Merged
Merged: 10/4/2024
Merged by: @tjbck

Base: devHead: projects


📝 Commits (10+)

📊 Changes

48 files changed (+2852 additions, -534 deletions)

View changed files

📝 backend/open_webui/apps/retrieval/main.py (+144 -53)
📝 backend/open_webui/apps/retrieval/utils.py (+14 -6)
📝 backend/open_webui/apps/retrieval/vector/dbs/chroma.py (+56 -18)
📝 backend/open_webui/apps/retrieval/vector/dbs/milvus.py (+43 -5)
📝 backend/open_webui/apps/webui/main.py (+3 -3)
📝 backend/open_webui/apps/webui/models/files.py (+51 -5)
backend/open_webui/apps/webui/models/knowledge.py (+152 -0)
📝 backend/open_webui/apps/webui/routers/files.py (+83 -19)
backend/open_webui/apps/webui/routers/knowledge.py (+320 -0)
📝 backend/open_webui/config.py (+0 -3)
📝 backend/open_webui/constants.py (+6 -1)
backend/open_webui/migrations/scripts/revision.py (+0 -19)
📝 backend/open_webui/migrations/util.py (+6 -0)
backend/open_webui/migrations/versions/6a39f3d8e55c_add_knowledge_table.py (+80 -0)
backend/open_webui/migrations/versions/c0fbf31ca0db_update_file_table.py (+32 -0)
📝 src/lib/apis/files/index.ts (+34 -0)
src/lib/apis/knowledge/index.ts (+276 -0)
📝 src/lib/apis/retrieval/index.ts (+7 -2)
📝 src/lib/components/AddFilesPlaceholder.svelte (+9 -1)
📝 src/lib/components/admin/Settings/Documents.svelte (+8 -6)

...and 28 more files

📄 Description

#3527


🔄 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/5861 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 10/1/2024 **Status:** ✅ Merged **Merged:** 10/4/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `projects` --- ### 📝 Commits (10+) - [`4752df9`](https://github.com/open-webui/open-webui/commit/4752df9bd8997b9dbd3f1ca88910b382514f6206) refac - [`5c9dd25`](https://github.com/open-webui/open-webui/commit/5c9dd25459b9176002d4b5a6768c7604fcf3ecdb) refac: files migration - [`a0fb4a9`](https://github.com/open-webui/open-webui/commit/a0fb4a9b848f0100e72f825353fbccb14550dcfa) refac - [`fb08323`](https://github.com/open-webui/open-webui/commit/fb083237cd145d6ceeef4cea4d85dbabad4e116b) refac - [`bf57dd8`](https://github.com/open-webui/open-webui/commit/bf57dd808e7e4be729eca565fb201595be95aeab) feat: project migration - [`c5eb0a9`](https://github.com/open-webui/open-webui/commit/c5eb0a973243d5f4e757e784b620d308364532c1) refac: documents -> projects - [`c2732a0`](https://github.com/open-webui/open-webui/commit/c2732a099081f9632ca8c4c511b77ffba0a96c5e) refac - [`1b7d363`](https://github.com/open-webui/open-webui/commit/1b7d363d32aae5e6583bf2c3b96108d8fcceb18f) refac - [`5933d7a`](https://github.com/open-webui/open-webui/commit/5933d7a216e8e3b8e58cd634ec26d2f134dd2b85) enh: sort by descending order - [`3e012f0`](https://github.com/open-webui/open-webui/commit/3e012f02193849eba6eeeab374dc3c10954c7201) refac ### 📊 Changes **48 files changed** (+2852 additions, -534 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/apps/retrieval/main.py` (+144 -53) 📝 `backend/open_webui/apps/retrieval/utils.py` (+14 -6) 📝 `backend/open_webui/apps/retrieval/vector/dbs/chroma.py` (+56 -18) 📝 `backend/open_webui/apps/retrieval/vector/dbs/milvus.py` (+43 -5) 📝 `backend/open_webui/apps/webui/main.py` (+3 -3) 📝 `backend/open_webui/apps/webui/models/files.py` (+51 -5) ➕ `backend/open_webui/apps/webui/models/knowledge.py` (+152 -0) 📝 `backend/open_webui/apps/webui/routers/files.py` (+83 -19) ➕ `backend/open_webui/apps/webui/routers/knowledge.py` (+320 -0) 📝 `backend/open_webui/config.py` (+0 -3) 📝 `backend/open_webui/constants.py` (+6 -1) ➖ `backend/open_webui/migrations/scripts/revision.py` (+0 -19) 📝 `backend/open_webui/migrations/util.py` (+6 -0) ➕ `backend/open_webui/migrations/versions/6a39f3d8e55c_add_knowledge_table.py` (+80 -0) ➕ `backend/open_webui/migrations/versions/c0fbf31ca0db_update_file_table.py` (+32 -0) 📝 `src/lib/apis/files/index.ts` (+34 -0) ➕ `src/lib/apis/knowledge/index.ts` (+276 -0) 📝 `src/lib/apis/retrieval/index.ts` (+7 -2) 📝 `src/lib/components/AddFilesPlaceholder.svelte` (+9 -1) 📝 `src/lib/components/admin/Settings/Documents.svelte` (+8 -6) _...and 28 more files_ </details> ### 📄 Description #3527 --- <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:59:51 -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#8563