[PR #997] [MERGED] Feat/vector db manage #22825

Closed
opened 2026-02-21 20:19:50 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/997
Author: @JohnJyong
Created: 8/24/2023
Status: Merged
Merged: 8/24/2023
Merged by: @JohnJyong

Base: mainHead: feat/vector-db-manage


📝 Commits (10+)

  • 032534a qdrant support
  • d38ad0c qdrant support
  • 8145d1f Merge branch 'main' into feat/vector-db-manage
  • 06a65a2 Merge branch 'main' into feat/vector-db-manage
  • 2eb8774 add create qdrant
  • de3c6f4 Update build-api-image.yml
  • 90d8a6a add create qdrant
  • ea540c2 Merge remote-tracking branch 'origin/feat/vector-db-manage' into feat/vector-db-manage
  • 60243d2 add create qdrant
  • 14b1fb7 Merge branch 'main' into feat/vector-db-manage

📊 Changes

8 files changed (+1975 additions, -10 deletions)

View changed files

📝 api/commands.py (+68 -0)
📝 api/core/data_loader/loader/excel.py (+1 -1)
📝 api/core/index/vector_index/base.py (+46 -0)
api/core/index/vector_index/milvus_vector_index.py (+114 -0)
api/core/index/vector_index/qdrant.py (+1691 -0)
📝 api/core/index/vector_index/qdrant_vector_index.py (+15 -8)
api/core/vector_store/milvus_vector_store.py (+38 -0)
📝 api/core/vector_store/qdrant_vector_store.py (+2 -1)

📄 Description

add qdrant support


🔄 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/langgenius/dify/pull/997 **Author:** [@JohnJyong](https://github.com/JohnJyong) **Created:** 8/24/2023 **Status:** ✅ Merged **Merged:** 8/24/2023 **Merged by:** [@JohnJyong](https://github.com/JohnJyong) **Base:** `main` ← **Head:** `feat/vector-db-manage` --- ### 📝 Commits (10+) - [`032534a`](https://github.com/langgenius/dify/commit/032534a9113e33f16ee9c499eb6a608faff025d7) qdrant support - [`d38ad0c`](https://github.com/langgenius/dify/commit/d38ad0c691dd750d2a46728d5021bf1e55740185) qdrant support - [`8145d1f`](https://github.com/langgenius/dify/commit/8145d1fc008e2e6ca26093b32c01f6beb763dcad) Merge branch 'main' into feat/vector-db-manage - [`06a65a2`](https://github.com/langgenius/dify/commit/06a65a2a99aa14a976fb41e3c6be52c38114fe04) Merge branch 'main' into feat/vector-db-manage - [`2eb8774`](https://github.com/langgenius/dify/commit/2eb87746c154d6d541e28bb4f75ed6330252d753) add create qdrant - [`de3c6f4`](https://github.com/langgenius/dify/commit/de3c6f40bc426990dfe9d8eaa418d8053bdb9718) Update build-api-image.yml - [`90d8a6a`](https://github.com/langgenius/dify/commit/90d8a6a8d586e4eff0ec3eb5e131718a2ca15cd0) add create qdrant - [`ea540c2`](https://github.com/langgenius/dify/commit/ea540c2c093ad40096b47faac1723a660145fe75) Merge remote-tracking branch 'origin/feat/vector-db-manage' into feat/vector-db-manage - [`60243d2`](https://github.com/langgenius/dify/commit/60243d200eddb175fc3b577d1514ee09ce091527) add create qdrant - [`14b1fb7`](https://github.com/langgenius/dify/commit/14b1fb7569deb67143da7ec1e48246888046b83e) Merge branch 'main' into feat/vector-db-manage ### 📊 Changes **8 files changed** (+1975 additions, -10 deletions) <details> <summary>View changed files</summary> 📝 `api/commands.py` (+68 -0) 📝 `api/core/data_loader/loader/excel.py` (+1 -1) 📝 `api/core/index/vector_index/base.py` (+46 -0) ➕ `api/core/index/vector_index/milvus_vector_index.py` (+114 -0) ➕ `api/core/index/vector_index/qdrant.py` (+1691 -0) 📝 `api/core/index/vector_index/qdrant_vector_index.py` (+15 -8) ➕ `api/core/vector_store/milvus_vector_store.py` (+38 -0) 📝 `api/core/vector_store/qdrant_vector_store.py` (+2 -1) </details> ### 📄 Description add qdrant support --- <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-21 20:19:50 -05:00
yindo closed this issue 2026-02-21 20:19:50 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22825