OutputItemCustomToolCallOutputResource Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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.