Share via


ResponseReasoningSummaryTextDeltaEvent Constructors

Definition

Overloads

ResponseReasoningSummaryTextDeltaEvent()

Source:
ResponseReasoningSummaryTextDeltaEvent.cs

Initializes a new instance of ResponseReasoningSummaryTextDeltaEvent for deserialization.

public ResponseReasoningSummaryTextDeltaEvent();
Public Sub New ()

Applies to

ResponseReasoningSummaryTextDeltaEvent(Int32, String, Int32, Int32, String)

Source:
ResponseReasoningSummaryTextDeltaEvent.cs

Initializes a new instance of ResponseReasoningSummaryTextDeltaEvent.

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

Parameters

sequenceNumber
Int32

The sequence number for this event.

itemId
String

The ID of the item this summary text delta is associated with.

outputIndex
Int32

The index of the output item this summary text delta is associated with.

summaryIndex
Int32

The index of the summary part within the reasoning summary.

delta
String

The text delta that was added to the summary.

Exceptions

itemId or delta is null.

Applies to

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

Source:
ResponseReasoningSummaryTextDeltaEvent.cs

Initializes a new instance of ResponseReasoningSummaryTextDeltaEvent.

public ResponseReasoningSummaryTextDeltaEvent(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseStreamEventType type, int sequenceNumber, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, string itemId, int outputIndex, int summaryIndex, string delta);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseReasoningSummaryTextDeltaEvent : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseStreamEventType * int * System.Collections.Generic.IDictionary<string, BinaryData> * string * int * int * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseReasoningSummaryTextDeltaEvent
Public Sub New (type As ResponseStreamEventType, sequenceNumber As Integer, serializedAdditionalRawData As IDictionary(Of String, BinaryData), itemId As String, outputIndex As Integer, summaryIndex 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 item this summary text delta is associated with.

outputIndex
Int32

The index of the output item this summary text delta is associated with.

summaryIndex
Int32

The index of the summary part within the reasoning summary.

delta
String

The text delta that was added to the summary.

Applies to