Share via


StreamingAnnotationContent Constructors

Definition

Overloads

StreamingAnnotationContent()

Initializes a new instance of the StreamingAnnotationContent class.

StreamingAnnotationContent(String, String, Object, IReadOnlyDictionary<String,Object>)

Initializes a new instance of the StreamingAnnotationContent class.

StreamingAnnotationContent()

Initializes a new instance of the StreamingAnnotationContent class.

[System.Text.Json.Serialization.JsonConstructor]
public StreamingAnnotationContent ();
Public Sub New ()
Attributes

Applies to

StreamingAnnotationContent(String, String, Object, IReadOnlyDictionary<String,Object>)

Initializes a new instance of the StreamingAnnotationContent class.

public StreamingAnnotationContent (string quote, string? modelId = default, object? innerContent = default, System.Collections.Generic.IReadOnlyDictionary<string,object?>? metadata = default);
new Microsoft.SemanticKernel.Agents.OpenAI.StreamingAnnotationContent : string * string * obj * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Microsoft.SemanticKernel.Agents.OpenAI.StreamingAnnotationContent
Public Sub New (quote As String, Optional modelId As String = Nothing, Optional innerContent As Object = Nothing, Optional metadata As IReadOnlyDictionary(Of String, Object) = Nothing)

Parameters

quote
String

The source text being referenced.

modelId
String

The model ID used to generate the content.

innerContent
Object

Inner content

metadata
IReadOnlyDictionary<String,Object>

Additional metadata

Applies to