Accessing the web UI
Once your Docker Compose stack is running, open your browser and navigate to:
Overview
The web UI is divided into two main sections.| Section | Description |
|---|---|
| Console | Execute REST API calls and inspect raw responses. |
| Collections | Browse, manage, and search your vector collections. |
Console
The Console lets you interact with the VectorAI DB REST API directly from the browser. Use it to run ad-hoc requests, test queries, and inspect API responses without leaving the interface. You can issue requests against any available API endpoint and view the full JSON response alongside HTTP status codes.Collections
The Collections section gives you a visual overview of all collections currently stored in VectorAI DB. From here you can perform the following actions.- View all existing collections and their configuration.
- Inspect vector count, dimension size, and distance metric for each collection.
- Browse individual vectors and their associated payloads.
- Run similarity searches against a collection using a vector or an existing record’s ID.
- Delete collections you no longer need.
Browsing vectors
Select any collection from the list to open its detail view. The detail view displays a paginated table of all stored vectors along with their payload fields. You can scroll through records or filter by payload values to locate specific entries.Running a search
To run a similarity search from the UI:Set search parameters
Configure
top_k to control how many results to return. Optionally apply payload filters to narrow results.Next steps
Explore these resources to learn more about working with VectorAI DB.Python SDK
Use the Python SDK for programmatic access to VectorAI DB
REST API
Explore the full REST API reference
Core Concepts
Learn about collections, vectors, and payloads
Troubleshooting
Resolve common issues with VectorAI DB