namespace AIStudio.Agents.AssistantAudit; /// /// Represents the normalized result returned by the assistant plugin security audit flow. /// public sealed record AssistantAuditResult { /// /// Gets the serialized audit level returned by the model before callers normalize it to . /// public string Level { get; init; } = string.Empty; public string Summary { get; init; } = string.Empty; public float Confidence { get; init; } public List Findings { get; init; } = []; }