Snowflake · Schema

StreamingCompleteResponseDataEvent

Streaming text-completion response event.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
choices array
View JSON Schema on GitHub

JSON Schema

snowflake-streamingcompleteresponsedataevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StreamingCompleteResponseDataEvent",
  "title": "StreamingCompleteResponseDataEvent",
  "type": "object",
  "description": "Streaming text-completion response event.",
  "properties": {
    "choices": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "delta": {
            "$ref": "#/components/schemas/StreamingCompleteResponseDelta"
          }
        }
      },
      "example": []
    }
  }
}