mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-06 06:19:34 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
13 lines
528 B
C#
13 lines
528 B
C#
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; }
|
|
public string[]? ToolIds { get; init; }
|
|
public AssistantBuilderChatLaunchMetadata? Launch { get; init; }
|
|
} |