Skip to content

Commit

Permalink
CrateDB: Vector Store
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Oct 29, 2024
1 parent 94e5765 commit 379ce72
Show file tree
Hide file tree
Showing 9 changed files with 1,361 additions and 0 deletions.
1 change: 1 addition & 0 deletions libs/community/extended_testing_deps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ requests-toolbelt>=1.0.0,<2
rspace_client>=2.5.0,<3
scikit-learn>=1.2.2,<2
simsimd>=5.0.0,<6
sqlalchemy-cratedb>=0.40.0,<1
sqlite-vss>=0.1.2,<0.2
sqlite-vec>=0.1.0,<0.2
sseclient-py>=1.8.0,<2
Expand Down
5 changes: 5 additions & 0 deletions libs/community/langchain_community/vectorstores/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@
from langchain_community.vectorstores.couchbase import (
CouchbaseVectorStore,
)
from langchain_community.vectorstores.cratedb import (
CrateDBVectorSearch,
)
from langchain_community.vectorstores.dashvector import (
DashVector,
)
Expand Down Expand Up @@ -334,6 +337,7 @@
"Clickhouse",
"ClickhouseSettings",
"CouchbaseVectorStore",
"CrateDBVectorSearch",
"DashVector",
"DatabricksVectorSearch",
"DeepLake",
Expand Down Expand Up @@ -438,6 +442,7 @@
"Clickhouse": "langchain_community.vectorstores.clickhouse",
"ClickhouseSettings": "langchain_community.vectorstores.clickhouse",
"CouchbaseVectorStore": "langchain_community.vectorstores.couchbase",
"CrateDBVectorSearch": "langchain_community.vectorstores.cratedb",
"DashVector": "langchain_community.vectorstores.dashvector",
"DatabricksVectorSearch": "langchain_community.vectorstores.databricks_vector_search", # noqa: E501
"DeepLake": "langchain_community.vectorstores.deeplake",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from .base import CrateDBVectorSearch
from .extended import CrateDBVectorSearchMultiCollection

__all__ = [
"CrateDBVectorSearch",
"CrateDBVectorSearchMultiCollection",
]
Loading

0 comments on commit 379ce72

Please sign in to comment.