2025-02-18 14:45:40 +00:00
|
|
|
namespace AIStudio.Settings.DataModel;
|
|
|
|
|
|
|
|
public sealed class DataAgentRetrievalContextValidation
|
|
|
|
{
|
2025-02-18 15:06:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Enable the retrieval context validation agent?
|
|
|
|
/// </summary>
|
|
|
|
public bool EnableRetrievalContextValidation { get; set; }
|
|
|
|
|
2025-02-18 14:45:40 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Preselect any retrieval context validation options?
|
|
|
|
/// </summary>
|
|
|
|
public bool PreselectAgentOptions { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Preselect a retrieval context validation provider?
|
|
|
|
/// </summary>
|
|
|
|
public string PreselectedAgentProvider { get; set; } = string.Empty;
|
|
|
|
}
|