A namespace is the isolation boundary for your vectors, documents, and indexes.Documentation Index
Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Create a Namespace
Parameters
Unique identifier. Lowercase with hyphens (e.g.,
product-search).Must be
"standalone".Named vector indexes. Each document references these names when providing vectors.
| Field | Type | Description |
|---|---|---|
name | string | Index name (e.g., text_embedding) |
dimension | integer | Must match your model’s output dimension |
metric | string | cosine (default), dot, or euclidean |
Text Indexes (BM25)
Add full-text keyword search on payload fields. Existing documents are backfilled automatically.Payload Indexes
Speed up filtered searches by indexing frequently queried payload fields.keyword, integer, float, bool, datetime, geo.
Other Operations
| Operation | Method | Endpoint |
|---|---|---|
| Get info | GET | /v1/namespaces/{id} |
| Delete | DELETE | /v1/namespaces/{id} |
| Clone | POST | /v1/namespaces/{id}/clone |
| Usage metrics | GET | /v1/namespaces/{id}/usage |
| Vector metadata | PUT | /v1/namespaces/{id}/vector-metadata |

