Streaming text-completion response event.
{ "$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": [] } } }