mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 15:31:37 +00:00
10 lines
152 B
C#
10 lines
152 B
C#
|
|
namespace AIStudio.Agents.AssistantAudit;
|
||
|
|
|
||
|
|
public enum AssistantAuditLevel
|
||
|
|
{
|
||
|
|
UNKNOWN = 0,
|
||
|
|
DANGEROUS = 100,
|
||
|
|
CAUTION = 200,
|
||
|
|
SAFE = 300,
|
||
|
|
}
|