mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 21:52:11 +00:00
13 lines
392 B
C#
13 lines
392 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Identifies the provider-neutral envelope from which a JSON candidate was obtained.
|
|
/// </summary>
|
|
[JsonConverter(typeof(JsonStringEnumConverter<VisualBriefingStructuredResponseEnvelope>))]
|
|
public enum VisualBriefingStructuredResponseEnvelope
|
|
{
|
|
RAW_RESPONSE,
|
|
MARKDOWN_JSON_BLOCK,
|
|
} |