Struct IntentClassification
Result of intent classification indicating whether a prompt represents a workflow.
public readonly record struct IntentClassification : IEquatable<IntentClassification>
- Implements
- Inherited Members
Constructors
IntentClassification(bool, double, IReadOnlyList<string>)
Result of intent classification indicating whether a prompt represents a workflow.
public IntentClassification(bool IsWorkflow, double Confidence, IReadOnlyList<string> SignalWords)
Parameters
IsWorkflowboolConfidencedoubleSignalWordsIReadOnlyList<string>
Properties
Confidence
public double Confidence { get; init; }
Property Value
IsWorkflow
public bool IsWorkflow { get; init; }
Property Value
SignalWords
public IReadOnlyList<string> SignalWords { get; init; }