This guide walks through a realistic end-to-end workflow using VectorAI DB collections. You will create a collection, insert points, search for similar vectors, update parameters, run maintenance tasks, and clean up all in a single connected example.Documentation Index
Fetch the complete documentation index at: https://docs.vectoraidb.actian.com/llms.txt
Use this file to discover all available pages before exploring further.
Before you begin, make sure you have a running VectorAI DB instance and the Python client library installed (
pip install actian-vectorai-client).- Create a collection with custom HNSW parameters.
- Insert points with payload metadata.
- Search for similar vectors with filtering.
- Update collection parameters.
- Inspect collection state and statistics.
- Run maintenance (flush and snapshot).
- Delete the collection.
Complete example
The following example uses aproduct_catalog collection with 128-dimensional vectors. Each step builds on the previous one, forming a complete lifecycle from creation through deletion.
Next steps
After completing this workflow, explore these related guides:- Create a collection — Configure collections with custom parameters.
- Insert points — Learn batch insertion patterns.
- Search operations — Apply advanced query techniques.
- Manage collection state — Perform maintenance operations.