OutputItemFunctionShellCallOutput Constructor

Definition

Initializes a new instance of OutputItemFunctionShellCallOutput.

public OutputItemFunctionShellCallOutput(string id, string callId, Azure.AI.AgentServer.Responses.Models.LocalShellCallOutputStatusEnum status, System.Collections.Generic.IEnumerable<Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputContent> output, long? maxOutputLength);
new Azure.AI.AgentServer.Responses.Models.OutputItemFunctionShellCallOutput : string * string * Azure.AI.AgentServer.Responses.Models.LocalShellCallOutputStatusEnum * seq<Azure.AI.AgentServer.Responses.Models.FunctionShellCallOutputContent> * Nullable<int64> -> Azure.AI.AgentServer.Responses.Models.OutputItemFunctionShellCallOutput
Public Sub New (id As String, callId As String, status As LocalShellCallOutputStatusEnum, output As IEnumerable(Of FunctionShellCallOutputContent), maxOutputLength As Nullable(Of Long))

Parameters

id
String

The unique ID of the shell call output. Populated when this item is returned via API.

callId
String

The unique ID of the shell tool call generated by the model.

status
LocalShellCallOutputStatusEnum

The status of the shell call output. One of in_progress, completed, or incomplete.

output
IEnumerable<FunctionShellCallOutputContent>

An array of shell call output contents.

maxOutputLength
Nullable<Int64>

Exceptions

id, callId or output is null.

Applies to