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.
Returns the average of cosine distances between vectors a and b
first vector
second vector
Method to add documents to the memory vector store. It extracts the text from each document, generates embeddings for them, and adds the resulting vectors to the store.
Array of Document
instances to be added to the store.
Promise that resolves when all documents have been added.
Method to add vectors to the memory vector store. It creates
MemoryVector
instances for each vector and document pair and adds
them to the store.
Array of vectors to be added to the store.
Array of Document
instances corresponding to the vectors.
Promise that resolves when all vectors have been added.
Creates a VectorStoreRetriever
instance with flexible configuration options.
Optional
kOrFields: number | Partial<VectorStoreRetrieverInput<FakeVectorStore>>If a number is provided, it sets the k
parameter (number of items to retrieve).
Optional
filter: ((doc: Document<Record<string, any>>) => boolean)Optional filter criteria to limit the items retrieved based on the specified filter type.
Optional
callbacks: CallbacksOptional callbacks that may be triggered at specific stages of the retrieval process.
Optional
tags: string[]Tags to categorize or label the VectorStoreRetriever
. Defaults to an empty array if not provided.
Optional
metadata: Record<string, unknown>Additional metadata as key-value pairs to add contextual information for the retrieval process.
Optional
verbose: booleanIf true
, enables detailed logging for the retrieval process. Defaults to false
.
VectorStoreRetriever
instance based on the provided parameters.Optional
maxReturn 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.
Method to perform a similarity search in the memory vector store. It
calculates the similarity between the query vector and each vector in
the store, sorts the results by similarity, and returns the top k
results along with their scores.
Query vector to compare against the vectors in the store.
Number of top results to return.
Optional
filter: ((doc: Document<Record<string, any>>) => boolean)Optional filter function to apply to the vectors before performing the search.
Promise that resolves with an array of tuples, each containing a Document
and its similarity score.
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.
Static
fromStatic method to create a FakeVectorStore
instance from an array of
Document
instances. It adds the documents to the store.
Array of Document
instances to be added to the store.
Embeddings
instance used to generate embeddings for the documents.
Optional
dbConfig: FakeVectorStoreArgsOptional FakeVectorStoreArgs
to configure the FakeVectorStore
instance.
Promise that resolves with a new FakeVectorStore
instance.
Static
fromStatic method to create a FakeVectorStore
instance from an existing
index. It creates a new FakeVectorStore
instance without adding any
documents or vectors.
Embeddings
instance used to generate embeddings for the documents.
Optional
dbConfig: FakeVectorStoreArgsOptional FakeVectorStoreArgs
to configure the FakeVectorStore
instance.
Promise that resolves with a new FakeVectorStore
instance.
Static
fromStatic method to create a FakeVectorStore
instance from an array of
texts. It creates a Document
for each text and metadata pair, and
adds them to the store.
Array of texts to be added to the store.
Array or single object of metadata corresponding to the texts.
Embeddings
instance used to generate embeddings for the texts.
Optional
dbConfig: FakeVectorStoreArgsOptional FakeVectorStoreArgs
to configure the FakeVectorStore
instance.
Promise that resolves with a new FakeVectorStore
instance.
Class that extends
VectorStore
to store vectors in memory. Provides methods for adding documents, performing similarity searches, and creating instances from texts, documents, or an existing index.