TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/StarTrail-org/PixelRAG/llms.txt
Use this file to discover all available pages before exploring further.
/status endpoint returns a snapshot of the server’s current state, including the total number of indexed vectors, the embedding dimension, FAISS index parameters, the model name, and the sizes and build time of the index files on disk. Use it to verify that a server is pointing at the expected index and to retrieve the default nprobe value for search planning.
Method: GETPath:
/statusRequest body: none
Response
Total number of embedding vectors in the loaded index.
Embedding dimensionality. All query embeddings passed to
/search must match this dimension.Number of IVF clusters in the FAISS index. Larger values improve search speed on very large indexes.
Default number of IVF cells visited per query. Can be overridden per request via the
nprobe field in /search.HuggingFace model name or local path used by the server to embed queries (e.g.
Qwen/Qwen3-VL-Embedding-2B).Filesystem path to the directory containing
index.faiss, metadata.npz, and summary.json.Filesystem path to the directory containing rendered tile images. May be empty when on-demand rendering is enabled.
ISO 8601 timestamp (UTC) of when the index file was last modified.
Size of
index.faiss in bytes.Size of
metadata.npz in bytes.Example
Health Check
For a lightweight liveness probe — such as a load balancer health check — useGET /health instead of /status. It returns immediately without reading any index state: