AbstractInitializes a new vector store with embeddings and database configuration.
Instance of EmbeddingsInterface used to embed queries.
Configuration settings for the database or storage system.
Defines the filter type used in search and delete operations. Can be an object for structured conditions or a string for simpler filtering.
Embeddings interface for generating vector embeddings from text queries, enabling vector-based similarity searches.
AbstractaddAdds documents to the vector store, embedding them first through the
embeddings instance.
Array of documents to embed and add.
Optionaloptions: AddDocumentOptionsOptional configuration for embedding and storing documents.
A promise resolving to an array of document IDs or void, based on implementation.
AbstractaddAdds precomputed vectors and corresponding documents to the vector store.
An array of vectors representing each document.
Array of documents associated with each vector.
Optionaloptions: AddDocumentOptionsOptional configuration for adding vectors, such as indexing.
A promise resolving to an array of document IDs or void, based on implementation.
Creates a VectorStoreRetriever instance with flexible configuration options.
OptionalkOrFields: number | Partial<VectorStoreRetrieverInput<VectorStore>>If a number is provided, it sets the k parameter (number of items to retrieve).
Optionalfilter: string | objectOptional filter criteria to limit the items retrieved based on the specified filter type.
Optionalcallbacks: CallbacksOptional callbacks that may be triggered at specific stages of the retrieval process.
Optionaltags: string[]Tags to categorize or label the VectorStoreRetriever. Defaults to an empty array if not provided.
Optionalmetadata: Record<string, unknown>Additional metadata as key-value pairs to add contextual information for the retrieval process.
Optionalverbose: booleanIf true, enables detailed logging for the retrieval process. Defaults to false.
VectorStoreRetriever instance based on the provided parameters.OptionalmaxReturn documents selected using the maximal marginal relevance. Maximal marginal relevance optimizes for similarity to the query AND diversity among selected documents.
Text to look up documents similar to.
Searches for documents similar to a text query by embedding the query and performing a similarity search on the resulting vector.
Text query for finding similar documents.
Number of similar results to return. Defaults to 4.
Optional filter based on FilterType.
Optional callbacks for monitoring search progress
A promise resolving to an array of DocumentInterface instances representing similar documents.
AbstractsimilarityPerforms a similarity search using a vector query and returns results along with their similarity scores.
Vector representing the search query.
Number of similar results to return.
Optionalfilter: string | objectOptional filter based on FilterType to restrict results.
A promise resolving to an array of tuples containing documents and their similarity scores.
Searches for documents similar to a text query by embedding the query, and returns results with similarity scores.
Text query for finding similar documents.
Number of similar results to return. Defaults to 4.
Optional filter based on FilterType.
Optional callbacks for monitoring search progress
A promise resolving to an array of tuples, each containing a document and its similarity score.
StaticfromCreates a VectorStore instance from an array of documents, using the specified
embeddings and database configuration.
Subclasses must implement this method to define how documents are embedded and stored. Throws an error if not overridden.
Array of DocumentInterface instances representing the documents to be stored.
Instance of EmbeddingsInterface to embed the documents.
Database configuration settings.
A promise that resolves to a new VectorStore instance.
StaticfromCreates a VectorStore instance from an array of text strings and optional
metadata, using the specified embeddings and database configuration.
Subclasses must implement this method to define how text and metadata are embedded and stored in the vector store. Throws an error if not overridden.
Array of strings representing the text documents to be stored.
Metadata for the texts, either as an array (one for each text) or a single object (applied to all texts).
Instance of EmbeddingsInterface to embed the texts.
Database configuration settings.
A promise that resolves to a new VectorStore instance.
Abstract class representing a vector storage system for performing similarity searches on embedded documents.
VectorStoreprovides methods for adding precomputed vectors or documents, removing documents based on criteria, and performing similarity searches with optional scoring. Subclasses are responsible for implementing specific storage mechanisms and the exact behavior of certain abstract methods.Abstract
Implements
VectorStoreInterface