mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-18 18:34:27 -04:00
c7ca350cd3
In LangChain, all module classes are enumerated in the `__init__.py` file of the correspondent module. But some classes were missed and were not included in the module `__init__.py` This PR: - added the missed classes to the module `__init__.py` files - `__init__.py:__all_` variable value (a list of the class names) was sorted - `langchain.tools.sql_database.tool.QueryCheckerTool` was renamed into the `QuerySQLCheckerTool` because it conflicted with `langchain.tools.spark_sql.tool.QueryCheckerTool` - changes to `pyproject.toml`: - added `pgvector` to `pyproject.toml:extended_testing` - added `pandas` to `pyproject.toml:[tool.poetry.group.test.dependencies]` - commented out the `streamlit` from `collbacks/__init__.py`, It is because now the `streamlit` requires Python >=3.7, !=3.9.7 - fixed duplicate names in `tools` - fixed correspondent ut-s #### Who can review? @hwchase17 @dev2049
70 lines
2.4 KiB
Python
70 lines
2.4 KiB
Python
"""Wrappers on top of vector stores."""
|
|
from langchain.vectorstores.analyticdb import AnalyticDB
|
|
from langchain.vectorstores.annoy import Annoy
|
|
from langchain.vectorstores.atlas import AtlasDB
|
|
from langchain.vectorstores.awadb import AwaDB
|
|
from langchain.vectorstores.azuresearch import AzureSearch
|
|
from langchain.vectorstores.base import VectorStore
|
|
from langchain.vectorstores.chroma import Chroma
|
|
from langchain.vectorstores.clickhouse import Clickhouse, ClickhouseSettings
|
|
from langchain.vectorstores.deeplake import DeepLake
|
|
from langchain.vectorstores.docarray import DocArrayHnswSearch, DocArrayInMemorySearch
|
|
from langchain.vectorstores.elastic_vector_search import ElasticVectorSearch
|
|
from langchain.vectorstores.faiss import FAISS
|
|
from langchain.vectorstores.hologres import Hologres
|
|
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
|
|
from langchain.vectorstores.opensearch_vector_search import OpenSearchVectorSearch
|
|
from langchain.vectorstores.pinecone import Pinecone
|
|
from langchain.vectorstores.qdrant import Qdrant
|
|
from langchain.vectorstores.redis import Redis
|
|
from langchain.vectorstores.singlestoredb import SingleStoreDB
|
|
from langchain.vectorstores.sklearn import SKLearnVectorStore
|
|
from langchain.vectorstores.supabase import SupabaseVectorStore
|
|
from langchain.vectorstores.tair import Tair
|
|
from langchain.vectorstores.tigris import Tigris
|
|
from langchain.vectorstores.typesense import Typesense
|
|
from langchain.vectorstores.vectara import Vectara
|
|
from langchain.vectorstores.weaviate import Weaviate
|
|
from langchain.vectorstores.zilliz import Zilliz
|
|
|
|
__all__ = [
|
|
"AnalyticDB",
|
|
"Annoy",
|
|
"AtlasDB",
|
|
"AwaDB",
|
|
"AzureSearch",
|
|
"Chroma",
|
|
"Clickhouse",
|
|
"ClickhouseSettings",
|
|
"DeepLake",
|
|
"DocArrayHnswSearch",
|
|
"DocArrayInMemorySearch",
|
|
"ElasticVectorSearch",
|
|
"FAISS",
|
|
"Hologres",
|
|
"LanceDB",
|
|
"MatchingEngine",
|
|
"Milvus",
|
|
"MongoDBAtlasVectorSearch",
|
|
"MyScale",
|
|
"MyScaleSettings",
|
|
"OpenSearchVectorSearch",
|
|
"Pinecone",
|
|
"Qdrant",
|
|
"Redis",
|
|
"SKLearnVectorStore",
|
|
"SingleStoreDB",
|
|
"SupabaseVectorStore",
|
|
"Tair",
|
|
"Tigris",
|
|
"Typesense",
|
|
"Vectara",
|
|
"VectorStore",
|
|
"Weaviate",
|
|
"Zilliz",
|
|
]
|