resk-llm-ts - v1.0.0
    Preparing search index...

    Interface DetectionResult

    interface DetectionResult {
        detector: string;
        isThreat: boolean;
        severity: Severity;
        category: ThreatCategory;
        confidence: number;
        reason: string;
        matches: DetectorMatch[];
        sanitizedInput: string | null;
    }
    Index

    Properties

    detector: string
    isThreat: boolean
    severity: Severity
    category: ThreatCategory
    confidence: number
    reason: string
    matches: DetectorMatch[]
    sanitizedInput: string | null