mirror of
https://github.com/kennethreitz/langchain.git
synced 2026-06-05 23:00:18 +00:00
Fix exporting GCP Vertex Matching Engine from vectorstores (#5793)
The Vertex Matching Engine docs include [the line](https://github.com/hwchase17/langchain/blob/b177a29d3f942eeccf85814f0f628c32509b9b6a/docs/modules/indexes/vectorstores/examples/matchingengine.ipynb?short_path=54ebfde#L32) `from langchain.vectorstores import MatchingEngine` which doesn't work as it wasn't added to the vectorestores module exports. - @dev2049
This commit is contained in:
@@ -10,6 +10,7 @@ from langchain.vectorstores.docarray import DocArrayHnswSearch, DocArrayInMemory
|
||||
from langchain.vectorstores.elastic_vector_search import ElasticVectorSearch
|
||||
from langchain.vectorstores.faiss import FAISS
|
||||
from langchain.vectorstores.lancedb import LanceDB
|
||||
from langchain.vectorstores.matching_engine import MatchingEngine
|
||||
from langchain.vectorstores.milvus import Milvus
|
||||
from langchain.vectorstores.mongodb_atlas import MongoDBAtlasVectorSearch
|
||||
from langchain.vectorstores.myscale import MyScale, MyScaleSettings
|
||||
@@ -56,4 +57,5 @@ __all__ = [
|
||||
"Clickhouse",
|
||||
"ClickhouseSettings",
|
||||
"Tigris",
|
||||
"MatchingEngine",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user