mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-17 12:32:12 +00:00
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Identifies a semantic component supported by the deterministic briefing compiler.
|
|
/// </summary>
|
|
[JsonConverter(typeof(JsonStringEnumConverter<VisualBriefingComponentKind>))]
|
|
public enum VisualBriefingComponentKind
|
|
{
|
|
/// <summary>Displays narrative text.</summary>
|
|
TEXT,
|
|
|
|
/// <summary>Highlights one metric and its context.</summary>
|
|
METRIC,
|
|
|
|
/// <summary>Displays tabular data.</summary>
|
|
TABLE,
|
|
|
|
/// <summary>Visualizes numeric series with Apache ECharts.</summary>
|
|
CHART,
|
|
|
|
/// <summary>Displays one embedded visual asset.</summary>
|
|
ASSET,
|
|
|
|
/// <summary>Emphasizes a concise insight or warning.</summary>
|
|
CALLOUT,
|
|
|
|
/// <summary>Organizes panels behind tab controls.</summary>
|
|
TABS,
|
|
|
|
/// <summary>Organizes panels in expandable sections.</summary>
|
|
ACCORDION,
|
|
|
|
/// <summary>Displays searchable and sortable tabular data.</summary>
|
|
FILTERABLE_TABLE,
|
|
|
|
/// <summary>Provides deterministic interactive controls and calculated results.</summary>
|
|
SIMULATION,
|
|
} |