Azure Cosmos DB for MongoDB vCore vector store. To use this, you should have both:

  • the mongodb NPM package installed
  • a connection string associated with a MongoDB VCore Cluster

You do not need to create a database or collection, it will be created automatically.

Though you do need to create an index on the collection, which can be done using the createIndex method.

Hierarchy (view full)

Constructors

Properties

embeddingKey: string
indexName: string
textKey: string

Methods

  • Method for adding documents to the AzureCosmosDBVectorStore. It first converts the documents to texts and then adds them as vectors.

    Parameters

    • documents: Document[]

      The documents to add.

    Returns Promise<void>

    A promise that resolves when the documents have been added.

  • Method for adding vectors to the AzureCosmosDBVectorStore.

    Parameters

    • vectors: number[][]

      Vectors to be added.

    • documents: Document[]

      Corresponding documents to be added.

    Returns Promise<void>

    A promise that resolves when the vectors and documents have been added.

  • Closes any newly instanciated Azure Cosmos DB client. If the client was passed in the constructor, it will not be closed.

    Returns Promise<void>

    A promise that resolves when any newly instanciated Azure Cosmos DB client been closed.

  • Creates an index on the collection with the specified index name during instance construction.

    Setting the numLists parameter correctly is important for achieving good accuracy and performance. Since the vector store uses IVF as the indexing strategy, you should create the index only after you have loaded a large enough sample documents to ensure that the centroids for the respective buckets are faily distributed.

    We recommend that numLists is set to documentCount/1000 for up to 1 million documents and to sqrt(documentCount) for more than 1 million documents. As the number of items in your database grows, you should tune numLists to be larger in order to achieve good latency performance for vector search.

    If you're experimenting with a new scenario or creating a small demo, you can start with numLists set to 1 to perform a brute-force search across all vectors. This should provide you with the most accurate results from the vector search, however be aware that the search speed and latency will be slow. After your initial setup, you should go ahead and tune the numLists parameter using the above guidance.

    Parameters

    • numLists: number = 100

      This integer is the number of clusters that the inverted file (IVF) index uses to group the vector data. We recommend that numLists is set to documentCount/1000 for up to 1 million documents and to sqrt(documentCount) for more than 1 million documents. Using a numLists value of 1 is akin to performing brute-force search, which has limited performance

    • dimensions: number = 1536

      Number of dimensions for vector similarity. The maximum number of supported dimensions is 2000

    • similarity: AzureCosmosDBSimilarityType = AzureCosmosDBSimilarityType.COS

      Similarity metric to use with the IVF index. Possible options are:

      • CosmosDBSimilarityType.COS (cosine distance)
      • CosmosDBSimilarityType.L2 (Euclidean distance)
      • CosmosDBSimilarityType.IP (inner product)

    Returns Promise<void>

    A promise that resolves when the index has been created.

  • Removes specified documents from the AzureCosmosDBVectorStore.

    Parameters

    • Optional ids: string[]

      IDs of the documents to be removed. If no IDs are specified, all documents will be removed.

    Returns Promise<void>

    A promise that resolves when the documents have been removed.

  • Return documents selected using the maximal marginal relevance. Maximal marginal relevance optimizes for similarity to the query AND diversity among selected documents.

    Parameters

    • query: string

      Text to look up documents similar to.

    • options: MaxMarginalRelevanceSearchOptions<this["FilterType"]>

    Returns Promise<Document[]>

    List of documents selected by maximal marginal relevance.

  • Method that performs a similarity search on the vectors stored in the collection. It returns a list of documents and their corresponding similarity scores.

    Parameters

    • queryVector: number[]

      Query vector for the similarity search.

    • k: number = 4

    Returns Promise<[Document, number][]>

    Promise that resolves to a list of documents and their corresponding similarity scores.

  • Static method to create an instance of AzureCosmosDBVectorStore from a list of documents. It first converts the documents to vectors and then adds them to the collection.

    Parameters

    • docs: Document[]

      List of documents to be converted to vectors.

    • embeddings: EmbeddingsInterface

      Embeddings to be used for conversion.

    • dbConfig: AzureCosmosDBConfig

      Database configuration for Azure Cosmos DB for MongoDB vCore.

    Returns Promise<AzureCosmosDBVectorStore>

    Promise that resolves to a new instance of AzureCosmosDBVectorStore.

  • Static method to create an instance of AzureCosmosDBVectorStore from a list of texts. It first converts the texts to vectors and then adds them to the collection.

    Parameters

    • texts: string[]

      List of texts to be converted to vectors.

    • metadatas: object | object[]

      Metadata for the texts.

    • embeddings: EmbeddingsInterface

      Embeddings to be used for conversion.

    • dbConfig: AzureCosmosDBConfig

      Database configuration for Azure Cosmos DB for MongoDB vCore.

    Returns Promise<AzureCosmosDBVectorStore>

    Promise that resolves to a new instance of AzureCosmosDBVectorStore.

Generated using TypeDoc