OpenAdapterOpenAdapter
Vector DB

Vector DB

Built-in vector storage for embeddings, search, and RAG — uses your existing API key.

OpenAdapter ships a multi-tenant vector store you can use directly with your gateway API key. The gateway proxies /v1/vectors/* calls through to the upstream vector service after auto-provisioning a tenant for your account on the first call.

What you get

  • Per-user tenancy — a vector tenant is created automatically the first time you hit any /v1/vectors/* endpoint. You never see the upstream key; the gateway substitutes it for you.
  • Collections scoped to your account
  • Upsert / search for points with vectors + payloads
  • Embeddings at /v1/embeddings, OpenAI-compatible, so you can stay end-to-end in OpenAdapter
  • Single bill — vector calls draw from the same quota as chat. Each vector API call costs 0.05 of one request.

Quick map

EndpointPurpose
GET /v1/vectors/collectionsList your collections
POST /v1/vectors/collectionsCreate a collection
GET /v1/vectors/collections/{name}Collection metadata
DELETE /v1/vectors/collections/{name}Drop a collection
POST /v1/vectors/collections/{name}/pointsUpsert vectors
POST /v1/vectors/collections/{name}/searchVector similarity search
POST /v1/embeddingsGenerate embeddings (OpenAI-compatible)

Topics

On this page