Share via


TopLogProb Constructors

Definition

Overloads

Name Description
TopLogProb()

Initializes a new instance of TopLogProb for deserialization.

TopLogProb(String, Single, IEnumerable<Int32>)

Initializes a new instance of TopLogProb.

TopLogProb(String, Single, IList<Int32>, IDictionary<String,BinaryData>)

Initializes a new instance of TopLogProb.

TopLogProb()

Source:
TopLogProb.cs

Initializes a new instance of TopLogProb for deserialization.

public TopLogProb();
Public Sub New ()

Applies to

TopLogProb(String, Single, IEnumerable<Int32>)

Source:
TopLogProb.cs

Initializes a new instance of TopLogProb.

public TopLogProb(string token, float logprob, System.Collections.Generic.IEnumerable<int> bytes);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.TopLogProb : string * single * seq<int> -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.TopLogProb
Public Sub New (token As String, logprob As Single, bytes As IEnumerable(Of Integer))

Parameters

token
String
logprob
Single

Exceptions

token or bytes is null.

Applies to

TopLogProb(String, Single, IList<Int32>, IDictionary<String,BinaryData>)

Source:
TopLogProb.cs

Initializes a new instance of TopLogProb.

public TopLogProb(string token, float logprob, System.Collections.Generic.IList<int> bytes, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.TopLogProb : string * single * System.Collections.Generic.IList<int> * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.TopLogProb
Public Sub New (token As String, logprob As Single, bytes As IList(Of Integer), serializedAdditionalRawData As IDictionary(Of String, BinaryData))

Parameters

token
String
logprob
Single
bytes
IList<Int32>
serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

Applies to