Share via


LocalShellToolCallOutputItemParam Constructors

Definition

Overloads

LocalShellToolCallOutputItemParam()

Source:
LocalShellToolCallOutputItemParam.cs

Initializes a new instance of LocalShellToolCallOutputItemParam for deserialization.

public LocalShellToolCallOutputItemParam();
Public Sub New ()

Applies to

LocalShellToolCallOutputItemParam(String)

Source:
LocalShellToolCallOutputItemParam.cs

Initializes a new instance of LocalShellToolCallOutputItemParam.

public LocalShellToolCallOutputItemParam(string output);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.LocalShellToolCallOutputItemParam : string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.LocalShellToolCallOutputItemParam
Public Sub New (output As String)

Parameters

output
String

A JSON string of the output of the local shell tool call.

Exceptions

output is null.

Applies to

LocalShellToolCallOutputItemParam(ItemType, IDictionary<String,BinaryData>, String)

Source:
LocalShellToolCallOutputItemParam.cs

Initializes a new instance of LocalShellToolCallOutputItemParam.

public LocalShellToolCallOutputItemParam(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType type, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, string output);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.LocalShellToolCallOutputItemParam : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType * System.Collections.Generic.IDictionary<string, BinaryData> * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.LocalShellToolCallOutputItemParam
Public Sub New (type As ItemType, serializedAdditionalRawData As IDictionary(Of String, BinaryData), output As String)

Parameters

type
ItemType
serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

output
String

A JSON string of the output of the local shell tool call.

Applies to