mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 15:51:39 +00:00
18 lines
730 B
C#
18 lines
730 B
C#
|
|
using AIStudio.Agents.AssistantAudit;
|
||
|
|
|
||
|
|
namespace AIStudio.Tools.PluginSystem.Assistants;
|
||
|
|
|
||
|
|
public sealed class PluginAssistantAudit
|
||
|
|
{
|
||
|
|
public Guid PluginId { get; init; }
|
||
|
|
public string PluginHash { get; init; } = string.Empty;
|
||
|
|
public DateTimeOffset AuditedAtUtc { get; set; }
|
||
|
|
public string AuditProviderId { get; set; } = string.Empty;
|
||
|
|
public string AuditProviderName { get; set; } = string.Empty;
|
||
|
|
public AssistantAuditLevel Level { get; init; } = AssistantAuditLevel.UNKNOWN;
|
||
|
|
public string Summary { get; init; } = string.Empty;
|
||
|
|
public float Confidence { get; set; }
|
||
|
|
public string PromptPreview { get; set; } = string.Empty;
|
||
|
|
public List<AssistantAuditFinding> Findings { get; set; } = [];
|
||
|
|
}
|