2026-08-27 14:19:35 +00:00
|
|
|
namespace AIStudio.Assistants.Builder;
|
|
|
|
|
|
|
|
|
|
internal sealed class AssistantBuilderAssistantMetadata
|
|
|
|
|
{
|
|
|
|
|
public string Kind { get; init; } = string.Empty;
|
|
|
|
|
public string Title { get; init; } = string.Empty;
|
|
|
|
|
public string Description { get; init; } = string.Empty;
|
|
|
|
|
public string? SystemPrompt { get; init; }
|
|
|
|
|
public string? SubmitText { get; init; }
|
|
|
|
|
public bool? AllowAiStudioProfiles { get; init; }
|
2026-09-04 13:48:07 +00:00
|
|
|
public string[]? ToolIds { get; init; }
|
2026-08-27 14:19:35 +00:00
|
|
|
public AssistantBuilderChatLaunchMetadata? Launch { get; init; }
|
|
|
|
|
}
|