v15

latestOpenAPI 3.1.0Apache-2.0raw.githubusercontent.com2026-08-06121934.4 KB
Health

Build identity

Returns the build identity of the running server: tt-inference-server version and commit, tt-llm-engine commit, tt-metal commit, and active model service. Missing values appear as the literal string "unknown". No authentication required.

get/info

Response

Build identity

model_service'llm' | 'embedding' | 'image' | 'tts' required

Active MODEL_SERVICE for route gating.

Example response

{
  "tt_inference_server": {
    "version": "0.13.0",
    "commit": "b0f8adfc1234567890abcdef1234567890abcdef"
  },
  "tt_llm_engine": {
    "commit": "abc123def456abc123def456abc123def4567890"
  },
  "tt_metal": {
    "commit": "915d9e67ad572b97fbaf5339bd3e518db6dc05e3"
  },
  "model_service": "tts"
}