namespace AIStudio.Tools.PluginSystem.Assistants;
///
/// Everything a user may change about an installed direct chat launcher.
///
/// The plugin name, shown on the plugins page.
/// The assistant title, shown on the tile.
/// The description, used for both the plugin and the assistant.
/// The workspace and the chat settings the tile starts its chat with.
public sealed record DirectChatLauncherDefinition(string PluginName, string Title, string Description, AssistantChatLaunchConfiguration Launch);