Share via


ResponseFunctionCallArgumentsDeltaEvent Constructors

Definition

Overloads

ResponseFunctionCallArgumentsDeltaEvent()

Source:
ResponseFunctionCallArgumentsDeltaEvent.cs

Initializes a new instance of ResponseFunctionCallArgumentsDeltaEvent for deserialization.

public ResponseFunctionCallArgumentsDeltaEvent();
Public Sub New ()

Applies to

ResponseFunctionCallArgumentsDeltaEvent(Int32, String, Int32, String)

Source:
ResponseFunctionCallArgumentsDeltaEvent.cs

Initializes a new instance of ResponseFunctionCallArgumentsDeltaEvent.

public ResponseFunctionCallArgumentsDeltaEvent(int sequenceNumber, string itemId, int outputIndex, string delta);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseFunctionCallArgumentsDeltaEvent : int * string * int * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseFunctionCallArgumentsDeltaEvent
Public Sub New (sequenceNumber As Integer, itemId As String, outputIndex As Integer, delta As String)

Parameters

sequenceNumber
Int32

The sequence number for this event.

itemId
String

The ID of the output item that the function-call arguments delta is added to.

outputIndex
Int32

The index of the output item that the function-call arguments delta is added to.

delta
String

The function-call arguments delta that is added.

Exceptions

itemId or delta is null.

Applies to

ResponseFunctionCallArgumentsDeltaEvent(ResponseStreamEventType, Int32, IDictionary<String,BinaryData>, String, Int32, String)

Source:
ResponseFunctionCallArgumentsDeltaEvent.cs

Initializes a new instance of ResponseFunctionCallArgumentsDeltaEvent.

public ResponseFunctionCallArgumentsDeltaEvent(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseStreamEventType type, int sequenceNumber, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, string itemId, int outputIndex, string delta);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseFunctionCallArgumentsDeltaEvent : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseStreamEventType * int * System.Collections.Generic.IDictionary<string, BinaryData> * string * int * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseFunctionCallArgumentsDeltaEvent
Public Sub New (type As ResponseStreamEventType, sequenceNumber As Integer, serializedAdditionalRawData As IDictionary(Of String, BinaryData), itemId As String, outputIndex As Integer, delta As String)

Parameters

sequenceNumber
Int32

The sequence number for this event.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

itemId
String

The ID of the output item that the function-call arguments delta is added to.

outputIndex
Int32

The index of the output item that the function-call arguments delta is added to.

delta
String

The function-call arguments delta that is added.

Applies to