ServerReadyResponse

Response from the server readiness endpoint.

AICNCFDeploymentInferenceKubernetesLLMMachine LearningModel ServingMLOpsScalability

Properties

Name Type Description
ready boolean Indicates if the server is ready for inference.
View JSON Schema on GitHub

JSON Schema

scalable-inference-serving-serverreadyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServerReadyResponse",
  "title": "ServerReadyResponse",
  "type": "object",
  "description": "Response from the server readiness endpoint.",
  "required": [
    "ready"
  ],
  "properties": {
    "ready": {
      "type": "boolean",
      "description": "Indicates if the server is ready for inference."
    }
  }
}