mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 10:22:15 +00:00
10 lines
391 B
C#
10 lines
391 B
C#
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Describes one model contribution displayed in the deterministic footer.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="Role">The semantic role fulfilled by the model.</param>
|
||
|
|
/// <param name="Model">The export-safe model name.</param>
|
||
|
|
public sealed record VisualBriefingModelContribution(
|
||
|
|
VisualBriefingModelRole Role,
|
||
|
|
string Model);
|