ErrorResponse

Error response returned when an inference or metadata request fails.

AICNCFDeploymentInferenceKubernetesLLMMachine LearningModel ServingMLOpsScalability

Properties

Name Type Description
error string Human-readable error message describing why the request failed.
View JSON Schema on GitHub

JSON Schema

scalable-inference-serving-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Error response returned when an inference or metadata request fails.",
  "required": [
    "error"
  ],
  "properties": {
    "error": {
      "type": "string",
      "description": "Human-readable error message describing why the request failed.",
      "example": "model not found: bert-sentiment-classifier"
    }
  }
}