Interface AgentRiskReport

Risk assessment report from an AI agent

interface AgentRiskReport {
    details?: Record<string, any>;
    level?:
        | "low"
        | "medium"
        | "high"
        | "critical";
    reasons?: string[];
    score: number;
}

Properties

details?: Record<string, any>
level?:
    | "low"
    | "medium"
    | "high"
    | "critical"
reasons?: string[]
score: number