[PR #53] [MERGED] Qdrant support #117

Closed
opened 2026-02-15 16:30:20 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/vector-admin/pull/53
Author: @timothycarambat
Created: 9/20/2023
Status: Merged
Merged: 9/20/2023
Merged by: @timothycarambat

Base: masterHead: qdrant-support


📝 Commits (7)

📊 Changes

22 files changed (+1709 additions, -16 deletions)

View changed files

📝 .vscode/settings.json (+2 -1)
📝 backend/models/organizationConnection.js (+1 -1)
📝 backend/package.json (+1 -0)
📝 backend/utils/vectordatabases/providers/index.js (+5 -0)
backend/utils/vectordatabases/providers/qdrant/index.js (+242 -0)
📝 backend/utils/vectordatabases/validateNewDatabaseConnector.js (+22 -1)
📝 backend/utils/vectordatabases/validateUpdatedDatabaseConnector.js (+5 -0)
frontend/src/images/vectordbs/qdrant.png (+0 -0)
📝 frontend/src/pages/Dashboard/Connector/index.tsx (+150 -5)
📝 frontend/src/utils/constants.ts (+1 -0)
workers/functions/addQdrantDocuments/index.js (+107 -0)
workers/functions/cloneQDrantDocument/index.js (+116 -0)
workers/functions/cloneQDrantWorkspace/index.js (+146 -0)
📝 workers/functions/deleteDocument/index.js (+55 -0)
📝 workers/functions/deleteEmbedding/index.js (+54 -0)
📝 workers/functions/deleteWorkspace/index.js (+39 -0)
📝 workers/functions/newWorkspace/index.js (+40 -1)
workers/functions/syncQDrantCluster/index.js (+261 -0)
workers/functions/syncQDrantWorkspace/index.js (+244 -0)
📝 workers/functions/updateEmbedding/index.js (+112 -0)

...and 2 more files

📄 Description

resolves #52


🔄 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/Mintplex-Labs/vector-admin/pull/53 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 9/20/2023 **Status:** ✅ Merged **Merged:** 9/20/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `qdrant-support` --- ### 📝 Commits (7) - [`9e6bc03`](https://github.com/Mintplex-Labs/vector-admin/commit/9e6bc037a66197cd0ca639b278d8404312b1a3b3) WIP Qdrant support - [`7b1defc`](https://github.com/Mintplex-Labs/vector-admin/commit/7b1defcca0cbfbc6c1ed95131a8589bee05e2682) WIP Qdrant support - [`1e402d8`](https://github.com/Mintplex-Labs/vector-admin/commit/1e402d83b78d4e2c062f3256aa65b5dab48b2983) WIP Qdrant - [`8f9f51e`](https://github.com/Mintplex-Labs/vector-admin/commit/8f9f51ec45b86140e974aee8a7e0c2731b28f624) WIP QDrant - [`3eb6db3`](https://github.com/Mintplex-Labs/vector-admin/commit/3eb6db3398c3a8d78d1f8e3f1944cc2e3888eba1) WIP QDrant - [`9ea24a9`](https://github.com/Mintplex-Labs/vector-admin/commit/9ea24a96a4cff9c04820ed779a5921d8b1ba197d) Add documents via VDBMS to QDrant collections - [`a69494e`](https://github.com/Mintplex-Labs/vector-admin/commit/a69494e25bcada9a1d9e353c287e2dc05a0f5404) remove console logs ### 📊 Changes **22 files changed** (+1709 additions, -16 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+2 -1) 📝 `backend/models/organizationConnection.js` (+1 -1) 📝 `backend/package.json` (+1 -0) 📝 `backend/utils/vectordatabases/providers/index.js` (+5 -0) ➕ `backend/utils/vectordatabases/providers/qdrant/index.js` (+242 -0) 📝 `backend/utils/vectordatabases/validateNewDatabaseConnector.js` (+22 -1) 📝 `backend/utils/vectordatabases/validateUpdatedDatabaseConnector.js` (+5 -0) ➕ `frontend/src/images/vectordbs/qdrant.png` (+0 -0) 📝 `frontend/src/pages/Dashboard/Connector/index.tsx` (+150 -5) 📝 `frontend/src/utils/constants.ts` (+1 -0) ➕ `workers/functions/addQdrantDocuments/index.js` (+107 -0) ➕ `workers/functions/cloneQDrantDocument/index.js` (+116 -0) ➕ `workers/functions/cloneQDrantWorkspace/index.js` (+146 -0) 📝 `workers/functions/deleteDocument/index.js` (+55 -0) 📝 `workers/functions/deleteEmbedding/index.js` (+54 -0) 📝 `workers/functions/deleteWorkspace/index.js` (+39 -0) 📝 `workers/functions/newWorkspace/index.js` (+40 -1) ➕ `workers/functions/syncQDrantCluster/index.js` (+261 -0) ➕ `workers/functions/syncQDrantWorkspace/index.js` (+244 -0) 📝 `workers/functions/updateEmbedding/index.js` (+112 -0) _...and 2 more files_ </details> ### 📄 Description resolves #52 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 16:30:20 -05:00
yindo closed this issue 2026-02-15 16:30:20 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/vector-admin#117