Class ChoiceAnswer
A selected label and its probabilities.
public sealed class ChoiceAnswer : Answer
- Inheritance
-
ChoiceAnswer
- Inherited Members
Properties
Choice
The selected label.
public string Choice { get; init; }
Property Value
Confidence
Reported confidence in the selected label.
public double Confidence { get; init; }
Property Value
Probabilities
Probabilities keyed by label.
public IReadOnlyDictionary<string, double> Probabilities { get; init; }
Property Value
Type
Answer type matching the question: noul, choice, or score.
public override string Type { get; }