ManticoreSearchSettings#
- class langchain_community.vectorstores.manticore_search.ManticoreSearchSettings[source]#
Bases:
BaseSettings
Create a new model by parsing and validating input data from keyword arguments.
Raises ValidationError if the input data cannot be parsed to form a valid model.
- param column_map: Dict[str, str] = {'document': 'document', 'embedding': 'embedding', 'id': 'id', 'metadata': 'metadata', 'uuid': 'uuid'}#
- param hnsw_ef_construction: int = 100#
- param hnsw_m: int = 16#
- param hnsw_similarity: str = 'L2'#
- param host: str = 'localhost'#
- param knn_dims: int | None = None#
- param knn_type: str = 'hnsw'#
- param password: str | None = None#
- param port: int = 9308#
- param proto: str = 'http'#
- param table: str = 'langchain'#
- param username: str | None = None#
Examples using ManticoreSearchSettings