OutputItemCustomToolCall(String, String, String, FunctionCallStatus) 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 OutputItemCustomToolCall.
public OutputItemCustomToolCall(string callId, string name, string input, Azure.AI.AgentServer.Responses.Models.FunctionCallStatus status);
new Azure.AI.AgentServer.Responses.Models.OutputItemCustomToolCall : string * string * string * Azure.AI.AgentServer.Responses.Models.FunctionCallStatus -> Azure.AI.AgentServer.Responses.Models.OutputItemCustomToolCall
Public Sub New (callId As String, name As String, input As String, status As FunctionCallStatus)
Parameters
- callId
- String
An identifier used to map this custom tool call to a tool call output.
- name
- String
The name of the custom tool being called.
- input
- String
The input for the custom tool call generated by the model.
- status
- FunctionCallStatus
The status of the item. One of in_progress, completed, or
incomplete. Populated when items are returned via API.
Exceptions
callId, name or input is null.