OutputItemFunctionShellCallOutput 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 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.
The status of the shell call output. One of in_progress, completed, or incomplete.
An array of shell call output contents.
Exceptions
id, callId or output is null.