mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:32:10 +00:00
22 lines
590 B
C#
22 lines
590 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Identifies a content-free reason why a structured model response could not be accepted.
|
|
/// </summary>
|
|
[JsonConverter(typeof(JsonStringEnumConverter<VisualBriefingStructuredResponseIssueKind>))]
|
|
public enum VisualBriefingStructuredResponseIssueKind
|
|
{
|
|
NONE,
|
|
EMPTY_RESPONSE,
|
|
ROOT_NOT_OBJECT,
|
|
UNEXPECTED_END,
|
|
TRAILING_CONTENT,
|
|
INVALID_SYNTAX,
|
|
UNKNOWN_FIELD,
|
|
REQUIRED_FIELD_MISSING,
|
|
TYPE_MISMATCH,
|
|
ENUM_VALUE_INVALID,
|
|
SEMANTIC_CONTRACT_INVALID,
|
|
} |