mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-04-09 23:01:38 +00:00
13 lines
266 B
C#
13 lines
266 B
C#
|
|
namespace AIStudio.Agents.AssistantAudit;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Defines the normalized outcome levels used for assistant plugin security audits.
|
||
|
|
/// </summary>
|
||
|
|
public enum AssistantAuditLevel
|
||
|
|
{
|
||
|
|
UNKNOWN = 0,
|
||
|
|
DANGEROUS = 100,
|
||
|
|
CAUTION = 200,
|
||
|
|
SAFE = 300,
|
||
|
|
}
|