interface RunSubmitToolOutputsParamsNonStreaming {
    tool_outputs: OpenAIClient.Beta.Threads.Runs.RunSubmitToolOutputsParams.ToolOutput[];
    stream?: null | false;
}

Hierarchy

  • RunSubmitToolOutputsParamsBase
    • RunSubmitToolOutputsParamsNonStreaming

Properties

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

stream?: null | false

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.