mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-04-09 21:41:38 +00:00
16 lines
598 B
C#
16 lines
598 B
C#
|
|
namespace AIStudio.Agents.AssistantAudit;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Represents the normalized result returned by the assistant plugin security audit flow.
|
||
|
|
/// </summary>
|
||
|
|
public sealed record AssistantAuditResult
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets the serialized audit level returned by the model before callers normalize it to <see cref="AssistantAuditLevel"/>.
|
||
|
|
/// </summary>
|
||
|
|
public string Level { get; init; } = string.Empty;
|
||
|
|
public string Summary { get; init; } = string.Empty;
|
||
|
|
public float Confidence { get; init; }
|
||
|
|
public List<AssistantAuditFinding> Findings { get; init; } = [];
|
||
|
|
}
|