Share via


FunctionToolCallOutputItemParam Constructors

Definition

Overloads

FunctionToolCallOutputItemParam()

Source:
FunctionToolCallOutputItemParam.cs

Initializes a new instance of FunctionToolCallOutputItemParam for deserialization.

public FunctionToolCallOutputItemParam();
Public Sub New ()

Applies to

FunctionToolCallOutputItemParam(String, String)

Source:
FunctionToolCallOutputItemParam.cs

Initializes a new instance of FunctionToolCallOutputItemParam.

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

Parameters

callId
String

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

output
String

A JSON string of the output of the function tool call.

Exceptions

callId or output is null.

Applies to

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

Source:
FunctionToolCallOutputItemParam.cs

Initializes a new instance of FunctionToolCallOutputItemParam.

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

Parameters

type
ItemType
serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

callId
String

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

output
String

A JSON string of the output of the function tool call.

Applies to