Hugging Face · Schema

ModelLoadingResponse

Properties

Name Type Description
error string Error message indicating the model is loading
estimated_time number Estimated time in seconds until the model is ready
View JSON Schema on GitHub

JSON Schema

hugging-face-inference-model-loading-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ModelLoadingResponse",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "Error message indicating the model is loading"
    },
    "estimated_time": {
      "type": "number",
      "description": "Estimated time in seconds until the model is ready"
    }
  }
}