Share via


ResponseReasoningSummaryDoneEvent Constructors

Definition

Overloads

ResponseReasoningSummaryDoneEvent()

Source:
ResponseReasoningSummaryDoneEvent.cs

Initializes a new instance of ResponseReasoningSummaryDoneEvent for deserialization.

public ResponseReasoningSummaryDoneEvent();
Public Sub New ()

Applies to

ResponseReasoningSummaryDoneEvent(Int32, String, Int32, Int32, String)

Source:
ResponseReasoningSummaryDoneEvent.cs

Initializes a new instance of ResponseReasoningSummaryDoneEvent.

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

Parameters

sequenceNumber
Int32

The sequence number for this event.

itemId
String

The unique identifier of the item for which the reasoning summary is finalized.

outputIndex
Int32

The index of the output item in the response's output array.

summaryIndex
Int32

The index of the summary part within the output item.

text
String

The finalized reasoning summary text.

Exceptions

itemId or text is null.

Applies to

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

Source:
ResponseReasoningSummaryDoneEvent.cs

Initializes a new instance of ResponseReasoningSummaryDoneEvent.

public ResponseReasoningSummaryDoneEvent(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseStreamEventType type, int sequenceNumber, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, string itemId, int outputIndex, int summaryIndex, string text);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseReasoningSummaryDoneEvent : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseStreamEventType * int * System.Collections.Generic.IDictionary<string, BinaryData> * string * int * int * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponseReasoningSummaryDoneEvent
Public Sub New (type As ResponseStreamEventType, sequenceNumber As Integer, serializedAdditionalRawData As IDictionary(Of String, BinaryData), itemId As String, outputIndex As Integer, summaryIndex As Integer, text 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 unique identifier of the item for which the reasoning summary is finalized.

outputIndex
Int32

The index of the output item in the response's output array.

summaryIndex
Int32

The index of the summary part within the output item.

text
String

The finalized reasoning summary text.

Applies to