OutputItemCustomToolCallOutputResource Constructor

Definition

Initializes a new instance of OutputItemCustomToolCallOutputResource.

public OutputItemCustomToolCallOutputResource(string callId, BinaryData output, Azure.AI.Extensions.OpenAI.ResponsesFunctionCallOutputStatus status);
new Azure.AI.Extensions.OpenAI.OutputItemCustomToolCallOutputResource : string * BinaryData * Azure.AI.Extensions.OpenAI.ResponsesFunctionCallOutputStatus -> Azure.AI.Extensions.OpenAI.OutputItemCustomToolCallOutputResource
Public Sub New (callId As String, output As BinaryData, status As ResponsesFunctionCallOutputStatus)

Parameters

callId
String

The call ID, used to map this custom tool call output to a custom tool call.

output
BinaryData

The output from the custom tool call generated by your code. Can be a string or an list of output content.

status
ResponsesFunctionCallOutputStatus

The status of the item. One of in_progress, completed, or incomplete. Populated when items are returned via API.

Exceptions

callId or output is null.

Applies to