mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 15:19:46 +00:00
14 lines
422 B
C#
14 lines
422 B
C#
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
||
|
public sealed class DataAgentRetrievalContextValidation
|
||
|
{
|
||
|
/// <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;
|
||
|
}
|