FunctionToolCallOutputItemParam Constructors
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.
Overloads
| Name | Description |
|---|---|
| FunctionToolCallOutputItemParam() |
Initializes a new instance of FunctionToolCallOutputItemParam for deserialization. |
| FunctionToolCallOutputItemParam(String, String) |
Initializes a new instance of FunctionToolCallOutputItemParam. |
| FunctionToolCallOutputItemParam(ItemType, IDictionary<String,BinaryData>, String, String) |
Initializes a new instance of FunctionToolCallOutputItemParam. |
FunctionToolCallOutputItemParam()
Initializes a new instance of FunctionToolCallOutputItemParam for deserialization.
public FunctionToolCallOutputItemParam();
Public Sub New ()
Applies to
FunctionToolCallOutputItemParam(String, String)
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)
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.