AI-Studio/app/MindWork AI Studio/Tools/Services/AssistantBuilderChatLaunchRequest.cs

12 lines
921 B
C#
Raw Normal View History

namespace AIStudio.Tools.Services;
/// <summary>
/// The chat a direct chat launcher tile opens, as chosen in the Assistant Builder.
/// </summary>
/// <param name="WorkspaceName">The workspace the chat is created in.</param>
/// <param name="ProviderId">The provider to preselect, or null for the chat default.</param>
/// <param name="ProfileId">The profile to preselect; the empty GUID selects no profile.</param>
/// <param name="ChatTemplateId">The chat template to preselect; the empty GUID selects none.</param>
/// <param name="DataSourceIds">The data sources to preselect, or null for the chat defaults.</param>
/// <param name="ToolIds">The tools to preselect, or null for the chat defaults.</param>
public sealed record AssistantBuilderChatLaunchRequest(string WorkspaceName, string? ProviderId, string? ProfileId, string? ChatTemplateId, IReadOnlyList<string>? DataSourceIds, IReadOnlyList<string>? ToolIds);