Hugging Face · Schema

CreateEndpointRequest

Properties

Name Type Description
name string Unique endpoint name
type string Endpoint security type
provider object
compute object
model object
View JSON Schema on GitHub

JSON Schema

hugging-face-inference-endpoints-create-endpoint-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateEndpointRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Unique endpoint name"
    },
    "type": {
      "type": "string",
      "description": "Endpoint security type"
    },
    "provider": {
      "type": "object"
    },
    "compute": {
      "type": "object"
    },
    "model": {
      "type": "object"
    }
  }
}