Hugging Face · Schema

FillMaskRequest

Properties

Name Type Description
inputs string Text with [MASK] token to fill
View JSON Schema on GitHub

JSON Schema

hugging-face-fillmaskrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FillMaskRequest",
  "title": "FillMaskRequest",
  "type": "object",
  "required": [
    "inputs"
  ],
  "properties": {
    "inputs": {
      "type": "string",
      "description": "Text with [MASK] token to fill",
      "example": "The capital of France is [MASK]."
    }
  }
}