Method to add vectors to the Qdrant database. Each vector is associated with a document, which is stored as the payload for a point in the database.
addVectors(
vectors: number[][],
documents: Document<Record<string, any>>[],
documentOptions: QdrantAddDocumentOptions
): Promise<void>| Name | Type | Description |
|---|---|---|
vectors* | number[][] | Array of vectors to be added to the Qdrant database. |
documents* | Document<Record<string, any>>[] | Array of |
documentOptions | QdrantAddDocumentOptions | Optional |