Hugging Face · Schema

ChatCompletionStreamResponse

Properties

Name Type Description
id string
object string
created integer
model string
system_fingerprint string
choices array
View JSON Schema on GitHub

JSON Schema

hugging-face-text-generation-inference-chat-completion-stream-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ChatCompletionStreamResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "object": {
      "type": "string"
    },
    "created": {
      "type": "integer"
    },
    "model": {
      "type": "string"
    },
    "system_fingerprint": {
      "type": "string"
    },
    "choices": {
      "type": "array"
    }
  }
}