Type alias MongoDBAtlasVectorSearchLibArgs
 
MongoDBAtlasVectorSearchLibArgs: { 
    collection: Collection<MongoDBDocument>; 
    embeddingKey?: string; 
    indexName?: string; 
    textKey?: string; 
}
Type declaration
- 
Readonlycollection: Collection<MongoDBDocument>
- 
OptionalReadonlyembeddingKey?: string
- 
OptionalReadonlyindexName?: string
- 
OptionalReadonlytextKey?: string
 
 
Type that defines the arguments required to initialize the MongoDBAtlasVectorSearch class. It includes the MongoDB collection, index name, text key, and embedding key.