mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-06 02:59:14 +00:00
10 lines
351 B
C#
10 lines
351 B
C#
namespace AIStudio.Assistants.Builder;
|
|
|
|
internal sealed class AssistantBuilderChatLaunchMetadata
|
|
{
|
|
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; }
|
|
} |