2026-08-27 14:19:35 +00:00
|
|
|
namespace AIStudio.Tools.Services;
|
|
|
|
|
|
2026-09-04 13:48:07 +00:00
|
|
|
/// <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);
|