using System.Text.Json.Serialization; namespace AIStudio.Assistants.VisualBriefing; /// /// Identifies the role in which a model contributed to a revision. /// [JsonConverter(typeof(JsonStringEnumConverter))] public enum VisualBriefingModelRole { /// /// The model produced canonical content. /// EVIDENCE, /// /// The model planned the briefing. /// PLAN, /// /// The model curated content. /// CONTENT, /// /// The model designed the layout and visual tokens. /// DESIGN, }