Hugging Face · Schema

TextGenerationResponse

Properties

Name Type Description
generated_text string The generated text
View JSON Schema on GitHub

JSON Schema

hugging-face-textgenerationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TextGenerationResponse",
  "title": "TextGenerationResponse",
  "type": "object",
  "properties": {
    "generated_text": {
      "type": "string",
      "description": "The generated text",
      "example": "example_value"
    }
  }
}