Reports the model files and version identifier actually loaded by this running instance, so callers can detect drift after a redeploy instead of hardcoding a guess. Unlike /v1/ready, this endpoint answers “which model?”, not “is it warmed up yet?”.
string
Basename of the configured EMBEDDER_MODEL_PATH.
string
Basename of the configured DETECTOR_MODEL_PATH.
string
An explicit version identifier, not derivable from the model file path alone — set via the MODEL_VERSION env var (see Configuration → Model version), defaults to arcface-w600k_r50-v1 if unset. Bump this whenever the deployed model file changes, even if the filename doesn’t.
integer
Dimensionality of vectors returned by /v1/embed (currently always 512).
A consumer that stores embeddings long-term (e.g. in a vector index) should record this model_version alongside every embedding it writes, so a future re-embedding migration can tell which records used which model.