Export data from Qdrant
Use the Qdrant REST API or Python SDK to extract your vectors, payloads, and IDs. Export to a portable format such as JSON, CSV, or NumPy arrays.
Prepare data for VectorAI DB
Map your exported fields to the VectorAI DB point structure: unique IDs, vector embeddings, and optional JSON metadata payloads. Ensure vector dimensions match the target collection configuration and that data types are compatible.
Install VectorAI DB
If you have not already set up VectorAI DB, follow the Docker installation guide to deploy it locally or on your server.
Ingest data into VectorAI DB
Use the Python SDK to create a collection with matching dimensions and distance metric, then insert your transformed vectors and metadata. Refer to the Python SDK quickstart for code examples.