mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 17:31:37 +00:00
10 lines
312 B
C#
10 lines
312 B
C#
|
|
namespace AIStudio.Agents.AssistantAudit;
|
||
|
|
|
||
|
|
public sealed class AssistantAuditResult
|
||
|
|
{
|
||
|
|
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; } = [];
|
||
|
|
}
|