Configuration options for the AzureCosmosDBMongoDBVectorStore constructor.

interface AzureCosmosDBMongoDBConfig {
    client?: MongoClient;
    collectionName?: string;
    connectionString?: string;
    databaseName?: string;
    embeddingKey?: string;
    indexName?: string;
    indexOptions?: AzureCosmosDBMongoDBIndexOptions;
    textKey?: string;
}

Properties

client?: MongoClient
collectionName?: string
connectionString?: string
databaseName?: string
embeddingKey?: string
indexName?: string
textKey?: string