2026-02-13 12:08:22 +00:00
|
|
|
|
using AIStudio.Assistants.SlideBuilder;
|
|
|
|
|
|
using AIStudio.Provider;
|
|
|
|
|
|
|
|
|
|
|
|
namespace AIStudio.Settings.DataModel;
|
|
|
|
|
|
|
|
|
|
|
|
public class DataSlideBuilder
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Preselect any Slide Builder options?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool PreselectOptions { get; set; } = true;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Preselect a profile?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string PreselectedProfile { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Preselect a Slide Builder provider?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string PreselectedProvider { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Preselect the target language?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public CommonLanguages PreselectedTargetLanguage { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Preselect any other language?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string PreselectedOtherLanguage { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2026-03-14 13:35:52 +00:00
|
|
|
|
/// Preselect the audience profile?
|
2026-02-13 12:08:22 +00:00
|
|
|
|
/// </summary>
|
2026-03-14 13:35:52 +00:00
|
|
|
|
public AudienceProfile PreselectedAudienceProfile { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Preselect the audience age group?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public AudienceAgeGroup PreselectedAudienceAgeGroup { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Preselect the audience organizational level?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public AudienceOrganizationalLevel PreselectedAudienceOrganizationalLevel { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Preselect the audience expertise?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public AudienceExpertise PreselectedAudienceExpertise { get; set; }
|
2026-02-13 12:08:22 +00:00
|
|
|
|
|
2026-02-23 13:09:53 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Preselect any important aspects that the Slide Builder should take into account?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string PreselectedImportantAspects { get; set; } = string.Empty;
|
|
|
|
|
|
|
2026-02-13 12:08:22 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The minimum confidence level required for a provider to be considered.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public ConfidenceLevel MinimumProviderConfidence { get; set; } = ConfidenceLevel.NONE;
|
|
|
|
|
|
}
|