Hugging Face · Schema

StreamResponse

Properties

Name Type Description
token object
generated_text string Full generated text (only in the last event)
details object Generation details (only in the last event)
View JSON Schema on GitHub

JSON Schema

hugging-face-text-generation-inference-stream-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StreamResponse",
  "type": "object",
  "properties": {
    "token": {
      "type": "object"
    },
    "generated_text": {
      "type": "string",
      "description": "Full generated text (only in the last event)"
    },
    "details": {
      "type": "object",
      "description": "Generation details (only in the last event)"
    }
  }
}