mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 18:13:37 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
12 lines
921 B
C#
12 lines
921 B
C#
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); |