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.
Adds documents to the vector store, embedding them first through the
embeddings
instance.
Array of documents to embed and add.
A promise resolving to an array of document IDs or void, based on implementation.
Adds precomputed vectors and corresponding documents to the vector store.
An array of vectors representing each document.
Array of documents associated with each vector.
Optional
metadatas: Record<string, any>[]Optional
ids: string[]A promise resolving to an array of document IDs or void, based on implementation.
Creates a VectorStoreRetriever
instance with flexible configuration options.
Optional
kOrFields: number | Partial<VectorStoreRetrieverInput<Neo4jVectorStore>>If a number is provided, it sets the k
parameter (number of items to retrieve).
Optional
filter: string | objectOptional 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.
A promise resolving to an array of DocumentInterface
instances representing similar documents.
Performs a similarity search using a vector query and returns results along with their similarity scores.
Number of similar results to return.
Vector representing the search query.
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.
A promise resolving to an array of tuples, each containing a document and its similarity score.
Static
fromCreates 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.
A promise that resolves to a new VectorStore
instance.
Static
fromStatic
fromStatic
fromCreates 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.
A promise that resolves to a new VectorStore
instance.
Static
initialize
Security
Security note: Make sure that the database connection uses credentials that are narrowly-scoped to only include necessary permissions. Failure to do so may result in data corruption or loss, since the calling code may attempt commands that would result in deletion, mutation of data if appropriately prompted or reading sensitive data if such data is present in the database. The best way to guard against such negative outcomes is to (as appropriate) limit the permissions granted to the credentials used with this tool. For example, creating read only users for the database is a good way to ensure that the calling code cannot mutate or delete data.
Link
See https://js.langchain.com/docs/security for more information.