AI-Studio/app/MindWork AI Studio/Settings/DataModel/Data.cs

72 lines
2.0 KiB
C#
Raw Normal View History

namespace AIStudio.Settings.DataModel;
/// <summary>
/// The data model for the settings file.
/// </summary>
public sealed class Data
{
/// <summary>
/// The version of the settings file. Allows us to upgrade the settings
/// when a new version is available.
/// </summary>
public Version Version { get; init; } = Version.V5;
/// <summary>
/// List of configured providers.
/// </summary>
public List<Provider> Providers { get; init; } = [];
2024-09-08 19:01:51 +00:00
2024-09-11 21:08:02 +00:00
/// <summary>
/// Settings concerning the LLM providers.
/// </summary>
public DataLLMProviders LLMProviders { get; init; } = new();
2024-09-08 19:01:51 +00:00
/// <summary>
/// List of configured profiles.
/// </summary>
public List<Profile> Profiles { get; init; } = [];
/// <summary>
/// The next provider number to use.
/// </summary>
public uint NextProviderNum { get; set; } = 1;
2024-09-08 19:01:51 +00:00
/// <summary>
/// The next profile number to use.
/// </summary>
public uint NextProfileNum { get; set; } = 1;
2024-08-05 19:12:52 +00:00
public DataApp App { get; init; } = new();
2024-08-05 19:12:52 +00:00
public DataChat Chat { get; init; } = new();
2024-08-05 19:12:52 +00:00
public DataWorkspace Workspace { get; init; } = new();
2024-08-05 19:12:52 +00:00
public DataIconFinder IconFinder { get; init; } = new();
2024-08-05 19:12:52 +00:00
public DataTranslation Translation { get; init; } = new();
2024-08-05 19:12:52 +00:00
public DataCoding Coding { get; init; } = new();
2024-08-05 19:12:52 +00:00
public DataTextSummarizer TextSummarizer { get; init; } = new();
2024-08-05 19:12:52 +00:00
public DataTextContentCleaner TextContentCleaner { get; init; } = new();
2024-08-05 19:12:52 +00:00
public DataAgenda Agenda { get; init; } = new();
public DataGrammarSpelling GrammarSpelling { get; init; } = new();
public DataRewriteImprove RewriteImprove { get; init; } = new();
2024-08-22 13:41:35 +00:00
2024-09-15 19:14:56 +00:00
public DataEMail EMail { get; init; } = new();
2024-09-15 19:14:56 +00:00
public DataLegalCheck LegalCheck { get; init; } = new();
2024-09-06 20:02:20 +00:00
2024-09-15 19:14:56 +00:00
public DataSynonyms Synonyms { get; init; } = new();
2024-09-15 19:14:56 +00:00
public DataMyTasks MyTasks { get; init; } = new();
public DataJobPostings JobPostings { get; init; } = new();
2024-10-28 14:41:00 +00:00
public DataBiasOfTheDay BiasOfTheDay { get; init; } = new();
}