Skip to content

Commit

Permalink
feat: add Milvus as a choice of vectorstore. (#1389)
Browse files Browse the repository at this point in the history
* unit tests passed

* add tests

* final format linting needed

* pre pr done

* add description to code

* codespell keep origin

* final edits
  • Loading branch information
ericljx2020-gmail authored Oct 16, 2024
1 parent df06bec commit 2bc45ef
Show file tree
Hide file tree
Showing 5 changed files with 700 additions and 322 deletions.
3 changes: 2 additions & 1 deletion pandasai/ee/vectorstores/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from .chroma import ChromaDB
from .lanceDB import LanceDB
from .milvus import Milvus
from .qdrant import Qdrant

__all__ = ["ChromaDB", "Qdrant", "LanceDB"]
__all__ = ["ChromaDB", "Qdrant", "LanceDB", "Milvus"]
Loading

0 comments on commit 2bc45ef

Please sign in to comment.