Table of Contents

Class ToolOutputsSubmission

When a run has the status: RequiresAction and Type is SubmitToolOutputs, this endpoint can be used to submit the outputs from the tool calls once they're all completed.

All outputs must be submitted in a single request.

public class ToolOutputsSubmission
Inheritance
object
ToolOutputsSubmission

Remarks

Properties

Stream

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.

public bool? Stream { get; set; }

Property Value

bool?

ToolCalls

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

public ToolCall[] ToolCalls { get; set; }

Property Value

ToolCall[]