Optional
autoOptional
numOptional
partitionCreates a collection in the Milvus database.
Array of vectors to be added to the new collection.
Array of Document instances to be added to the new collection.
Promise resolving to void.
Ensures that a collection exists in the Milvus database.
Optional
vectors: number[][]Optional array of vectors to be used if a new collection needs to be created.
Optional
documents: Document[]Optional array of Document instances to be used if a new collection needs to be created.
Promise resolving to void.
Searches for vectors in the Milvus database that are similar to a given vector.
Vector to compare with the vectors in the database.
Number of similar vectors to return.
Optional
filter: stringOptional filter to apply to the search.
Promise resolving to an array of tuples, each containing a Document instance and a similarity score.
Static
fromCreates a Milvus instance from a set of Document instances.
Array of Document instances to be added to the database.
Embeddings instance used to generate vector embeddings for the documents.
Optional
dbConfig: MilvusLibArgsOptional configuration for the Milvus database.
Promise resolving to a new Milvus instance.
Static
fromCreates a Milvus instance from an existing collection in the Milvus database.
Embeddings instance used to generate vector embeddings for the documents in the collection.
Configuration for the Milvus database.
Promise resolving to a new Milvus instance.
Static
fromCreates a Milvus instance from a set of texts and their associated metadata.
Array of texts to be added to the database.
Array of metadata objects associated with the texts.
Embeddings instance used to generate vector embeddings for the texts.
Optional
dbConfig: MilvusLibArgsOptional configuration for the Milvus database.
Promise resolving to a new Milvus instance.
Generated using TypeDoc
Class for interacting with a Milvus database. Extends the VectorStore class.