AI-Studio/app/MindWork AI Studio/Settings/DataModel/DataChat.cs
2024-09-08 21:01:51 +02:00

29 lines
881 B
C#

namespace AIStudio.Settings.DataModel;
public sealed class DataChat
{
/// <summary>
/// Shortcuts to send the input to the AI.
/// </summary>
public SendBehavior ShortcutSendBehavior { get; set; } = SendBehavior.ENTER_IS_SENDING;
/// <summary>
/// Preselect any chat options?
/// </summary>
public bool PreselectOptions { get; set; }
/// <summary>
/// Should we preselect a provider for the chat?
/// </summary>
public string PreselectedProvider { get; set; } = string.Empty;
/// <summary>
/// Preselect a profile?
/// </summary>
public string PreselectedProfile { get; set; } = string.Empty;
/// <summary>
/// Should we show the latest message after loading? When false, we show the first (aka oldest) message.
/// </summary>
public bool ShowLatestMessageAfterLoading { get; set; } = true;
}