Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add matrixone.py #29749

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions libs/langchain/langchain/vectorstores/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,79 +26,80 @@
from langchain._api import create_importer

if TYPE_CHECKING:
from langchain_community.vectorstores import (
FAISS,
AlibabaCloudOpenSearch,
AlibabaCloudOpenSearchSettings,
AnalyticDB,
Annoy,
AstraDB,
AtlasDB,
AwaDB,
AzureCosmosDBVectorSearch,
AzureSearch,
Bagel,
Cassandra,
Chroma,
Clarifai,
Clickhouse,
ClickhouseSettings,
DashVector,
DatabricksVectorSearch,
DeepLake,
Dingo,
DocArrayHnswSearch,
DocArrayInMemorySearch,
DuckDB,
EcloudESVectorStore,
ElasticKnnSearch,
ElasticsearchStore,
ElasticVectorSearch,
Epsilla,
Hologres,
LanceDB,
LLMRails,
Marqo,
MatchingEngine,
Meilisearch,
Milvus,
MomentoVectorIndex,
MongoDBAtlasVectorSearch,
MyScale,
MyScaleSettings,
Neo4jVector,
NeuralDBClientVectorStore,
NeuralDBVectorStore,
OpenSearchVectorSearch,
PGEmbedding,
PGVector,
Pinecone,
Qdrant,
Redis,
Rockset,
ScaNN,
SemaDB,
SingleStoreDB,
SKLearnVectorStore,
SQLiteVSS,
StarRocks,
SupabaseVectorStore,
Tair,
TencentVectorDB,
Tigris,
TileDB,
TimescaleVector,
Typesense,
USearch,
Vald,
Vearch,
Vectara,
VespaStore,
Weaviate,
Yellowbrick,
ZepVectorStore,
Zilliz,
Matrixone,
)

Check failure on line 102 in libs/langchain/langchain/vectorstores/__init__.py

View workflow job for this annotation

GitHub Actions / cd libs/langchain / make lint #3.13

Ruff (I001)

langchain/vectorstores/__init__.py:29:5: I001 Import block is un-sorted or un-formatted

Check failure on line 102 in libs/langchain/langchain/vectorstores/__init__.py

View workflow job for this annotation

GitHub Actions / cd libs/langchain / make lint #3.9

Ruff (I001)

langchain/vectorstores/__init__.py:29:5: I001 Import block is un-sorted or un-formatted

# Create a way to dynamically look up deprecated imports.
# Used to consolidate logic for raising deprecation warnings and
Expand Down Expand Up @@ -176,6 +177,7 @@
"Yellowbrick": "langchain_community.vectorstores",
"ZepVectorStore": "langchain_community.vectorstores",
"Zilliz": "langchain_community.vectorstores",
"Matrixone": "langchain_community.vectorstores",
}

_import_attribute = create_importer(__package__, deprecated_lookups=DEPRECATED_LOOKUP)
Expand Down Expand Up @@ -259,4 +261,5 @@
"Yellowbrick",
"ZepVectorStore",
"Zilliz",
"Matrixone",
]
Loading
Loading