ModelReadyResponse

Response from the model readiness endpoint.

AICNCFDeploymentInferenceKubernetesLLMMachine LearningModel ServingMLOpsScalability

Properties

Name Type Description
name string Name of the model.
ready boolean Indicates if the model is ready for inference.
View JSON Schema on GitHub

JSON Schema

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