using System.Text.Json.Serialization;
namespace AIStudio.Assistants.VisualBriefing;
///
/// Identifies the provider-neutral envelope from which a JSON candidate was obtained.
///
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum VisualBriefingStructuredResponseEnvelope
{
/// The candidate was extracted from the complete provider response.
RAW_RESPONSE,
/// The candidate was extracted from a fenced Markdown JSON block.
MARKDOWN_JSON_BLOCK,
}