Vec
Chroma-backed vector API for Smallplate
Plate-Vec is the Smallplate vector service. It exposes a plate-scoped HTTP API, validates requests with Smallplate auth, and proxies vector operations to internal Chroma.
Base URL
[base-url]/[plate-id]/...Every endpoint is scoped by plateID.
What this section covers
- Authentication
- Core and Databases
- Collections
- Records and Query
- Embedding Profiles and Defaults
- Aliases and Search Shortcuts
- Import, Export, and Operations
- Errors and Validation
Response format
Success envelope:
{
"ok": true,
"data": {
"any": "payload"
}
}Error envelope:
{
"ok": false,
"error": {
"code": "invalid_request",
"message": "human readable message"
}
}