2024-09-14 17:20:33 +00:00
|
|
|
using AIStudio.Provider;
|
|
|
|
|
2024-08-23 19:47:07 +00:00
|
|
|
namespace AIStudio.Settings.DataModel;
|
|
|
|
|
|
|
|
public class DataLegalCheck
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Do you want to preselect any legal check options?
|
|
|
|
/// </summary>
|
|
|
|
public bool PreselectOptions { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Hide the web content reader?
|
|
|
|
/// </summary>
|
|
|
|
public bool HideWebContentReader { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Preselect the web content reader?
|
|
|
|
/// </summary>
|
|
|
|
public bool PreselectWebContentReader { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Preselect the content cleaner agent?
|
|
|
|
/// </summary>
|
|
|
|
public bool PreselectContentCleanerAgent { get; set; }
|
|
|
|
|
2024-09-14 17:20:33 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The minimum confidence level required for a provider to be considered.
|
|
|
|
/// </summary>
|
|
|
|
public ConfidenceLevel MinimumProviderConfidence { get; set; } = ConfidenceLevel.NONE;
|
|
|
|
|
2024-08-23 19:47:07 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The preselected translator provider.
|
|
|
|
/// </summary>
|
|
|
|
public string PreselectedProvider { get; set; } = string.Empty;
|
2024-09-08 19:01:51 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Preselect a profile?
|
|
|
|
/// </summary>
|
|
|
|
public string PreselectedProfile { get; set; } = string.Empty;
|
2024-08-23 19:47:07 +00:00
|
|
|
}
|