namespace AIStudio.Tools;
///
/// A contract for data classes with a confidence value.
///
///
/// Using this confidence contract allows us to provide
/// algorithms based on confidence values.
///
public interface IConfidence
{
///
/// How confident is the AI in this task or decision?
///
public float Confidence { get; init; }
}