Hugging Face · Schema

InferenceRequest

Properties

Name Type Description
inputs string The input data for inference
parameters object Task-specific parameters
options object
View JSON Schema on GitHub

JSON Schema

hugging-face-inference-inference-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InferenceRequest",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "string",
      "description": "The input data for inference"
    },
    "parameters": {
      "type": "object",
      "description": "Task-specific parameters"
    },
    "options": {
      "type": "object"
    }
  }
}