dd-trace
    Preparing search index...

    Interface Evaluation

    The result returned by AI Guard after evaluating a conversation.

    interface Evaluation {
        action: "ALLOW" | "DENY" | "ABORT";
        reason: string;
    }
    Index

    Properties

    Properties

    action: "ALLOW" | "DENY" | "ABORT"

    The security action determined by AI Guard:

    • 'ALLOW': The conversation is safe to proceed
    • 'DENY': The current conversation exchange should be blocked
    • 'ABORT': The full workflow should be terminated immediately
    reason: string

    Human-readable explanation for why this action was chosen.