ItemCustomToolCallOutput(String, BinaryData) Constructor

Definition

Initializes a new instance of ItemCustomToolCallOutput.

public ItemCustomToolCallOutput(string callId, BinaryData output);
new Azure.AI.AgentServer.Responses.Models.ItemCustomToolCallOutput : string * BinaryData -> Azure.AI.AgentServer.Responses.Models.ItemCustomToolCallOutput
Public Sub New (callId As String, output As BinaryData)

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.

Exceptions

callId or output is null.

Applies to