Share via


LocalShellToolCallOutputItemResource Constructors

Definition

Overloads

LocalShellToolCallOutputItemResource()

Source:
LocalShellToolCallOutputItemResource.cs

Initializes a new instance of LocalShellToolCallOutputItemResource for deserialization.

public LocalShellToolCallOutputItemResource();
Public Sub New ()

Applies to

LocalShellToolCallOutputItemResource(String, LocalShellToolCallOutputItemResourceStatus, String)

Source:
LocalShellToolCallOutputItemResource.cs

Initializes a new instance of LocalShellToolCallOutputItemResource.

public LocalShellToolCallOutputItemResource(string id, Azure.AI.AgentServer.Contracts.Generated.OpenAI.LocalShellToolCallOutputItemResourceStatus status, string output);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.LocalShellToolCallOutputItemResource : string * Azure.AI.AgentServer.Contracts.Generated.OpenAI.LocalShellToolCallOutputItemResourceStatus * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.LocalShellToolCallOutputItemResource
Public Sub New (id As String, status As LocalShellToolCallOutputItemResourceStatus, output As String)

Parameters

id
String
output
String

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

Exceptions

id or output is null.

Applies to

LocalShellToolCallOutputItemResource(ItemType, String, CreatedBy, IDictionary<String,BinaryData>, LocalShellToolCallOutputItemResourceStatus, String)

Source:
LocalShellToolCallOutputItemResource.cs

Initializes a new instance of LocalShellToolCallOutputItemResource.

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

Parameters

type
ItemType
id
String
createdBy
CreatedBy

The information about the creator of the item.

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