interface RunSubmitToolOutputsParamsStreaming {
    stream: true;
    thread_id: string;
    tool_outputs: ToolOutput[];
}

Hierarchy

  • RunSubmitToolOutputsParamsBase
    • RunSubmitToolOutputsParamsStreaming

Properties

stream: true

Body param: If true, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a data: [DONE] message.

thread_id: string

Path param: The ID of the thread to which this run belongs.

tool_outputs: ToolOutput[]

Body param: A list of tools for which the outputs are being submitted.