namespace AIStudio.Settings.DataModel;
public sealed class DataAgentRetrievalContextValidation
{
///
/// Enable the retrieval context validation agent?
///
public bool EnableRetrievalContextValidation { get; set; }
///
/// Preselect any retrieval context validation options?
///
public bool PreselectAgentOptions { get; set; }
///
/// Preselect a retrieval context validation provider?
///
public string PreselectedAgentProvider { get; set; } = string.Empty;
///
/// Configure how many parallel validations to run.
///
public int NumParallelValidations { get; set; } = 3;
}