mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-12 23:49:08 +00:00
24 lines
733 B
C#
24 lines
733 B
C#
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
||
|
public sealed class DataAgentRetrievalContextValidation
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Enable the retrieval context validation agent?
|
||
|
/// </summary>
|
||
|
public bool EnableRetrievalContextValidation { get; set; }
|
||
|
|
||
|
/// <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;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Configure how many parallel validations to run.
|
||
|
/// </summary>
|
||
|
public int NumParallelValidations { get; set; } = 3;
|
||
|
}
|