Triton Inference Server · Example Payload

Triton Repository Index Example

List all models in the Triton repository

AIDeep LearningInferenceMachine LearningModel ServingNVIDIAOpen Source

Triton Repository Index Example is an example object payload from Triton Inference Server, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationdescriptionrequestresponse

Example Payload

Raw ↑
{
  "operation": "repositoryIndex",
  "description": "List all models in the Triton repository",
  "request": {
    "method": "POST",
    "url": "http://localhost:8000/v2/repository/index",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "ready": false
    }
  },
  "response": {
    "status": 200,
    "body": [
      {
        "name": "resnet50",
        "version": "1",
        "state": "READY"
      },
      {
        "name": "bert-large-uncased",
        "version": "1",
        "state": "READY"
      },
      {
        "name": "yolov8",
        "version": "1",
        "state": "LOADING"
      }
    ]
  }
}