mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-19 13:26:32 -04:00
7 lines
275 B
Python
7 lines
275 B
Python
"""Wrappers on top of vector stores."""
|
|
from langchain.vectorstores.base import VectorStore
|
|
from langchain.vectorstores.elastic_vector_search import ElasticVectorSearch
|
|
from langchain.vectorstores.faiss import FAISS
|
|
|
|
__all__ = ["ElasticVectorSearch", "FAISS", "VectorStore"]
|