interface InteractionGetParamsStreaming {
    api_version?: string;
    last_event_id?: string;
    stream: true;
}

Hierarchy (View Summary)

Properties

api_version?: string

Path param: Which version of the API to use.

last_event_id?: string

Query param: Optional. If set, resumes the interaction stream from the next chunk after the event marked by the event id. Can only be used if stream is true.

stream: true

Query param: If set to true, the generated content will be streamed incrementally.