Scalable Inference Serving · Example Payload

Kserve Check Server Liveness Example

AICNCFDeploymentInferenceKubernetesLLMMachine LearningModel ServingMLOpsScalability

Kserve Check Server Liveness Example is an example object payload from Scalable Inference Serving, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://inference.kserve.example.com/v2/health/live",
    "headers": {}
  },
  "response": {
    "status": 200,
    "body": {
      "live": true
    }
  }
}