namespace AIStudio.Assistants.VisualBriefing; /// /// Defines VisualBriefingVersions for the visual briefing feature. /// public static class VisualBriefingVersions { /// Gets the standalone artifact contract version. public const int ARTIFACT = 1; /// Gets the project manifest contract version. public const int MANIFEST = 1; /// Gets the canonical data schema version. public const int SCHEMA = 2; /// /// Gets the deterministic HTML, CSS, chart, and interaction compiler version. Increment this /// whenever compiler behavior changes so interrupted recompiles cannot resume across versions. /// public const int COMPILER = 4; /// /// Gets the embedded AI Studio runtime bundle version. Increment this for changes to the /// runtime script or bundled Apache ECharts distribution. /// public const int RUNTIME = 1; /// Gets the formula-tree contract version. public const int FORMULA = 1; /// Gets the persistent build-record contract version. public const int BUILD = 1; /// Gets the immutable intermediate-artifact contract version. public const int INTERMEDIATE_ARTIFACT = 2; /// Gets the evidence-agent response contract version. public const int EVIDENCE_CONTRACT = 2; /// Gets the plan-agent response contract version. public const int PLAN_CONTRACT = 2; /// Gets the content-agent response contract version. public const int CONTENT_CONTRACT = 2; /// Gets the design-agent response contract version. public const int DESIGN_CONTRACT = 2; }