2026-08-27 14:19:35 +00:00
|
|
|
namespace AIStudio.Assistants.Builder;
|
|
|
|
|
|
|
|
|
|
internal sealed class AssistantBuilderChatLaunchMetadata
|
|
|
|
|
{
|
2026-09-14 08:26:10 +00:00
|
|
|
/// <summary>
|
|
|
|
|
/// The workspace the chat is created in. A model leaves this field out for a launcher that
|
|
|
|
|
/// opens a chat without a workspace, which is why it stays empty rather than null.
|
|
|
|
|
/// </summary>
|
2026-08-27 14:19:35 +00:00
|
|
|
public string WorkspaceName { get; init; } = string.Empty;
|
|
|
|
|
public string? ProviderId { get; init; }
|
|
|
|
|
public string? ProfileId { get; init; }
|
|
|
|
|
public string? ChatTemplateId { get; init; }
|
|
|
|
|
public string[]? DataSourceIds { get; init; }
|
2026-09-04 13:48:07 +00:00
|
|
|
public string[]? ToolIds { get; init; }
|
2026-08-27 14:19:35 +00:00
|
|
|
}
|