Interface CrossAgentEvaluationResult

Result of cross-agent guardrail evaluation for a chunk.

interface CrossAgentEvaluationResult {
    blocked: boolean;
    modifiedChunk?: AgentOSResponse;
    evaluations: GuardrailEvaluationResult[];
}

Properties

blocked: boolean

Whether the chunk should be blocked

modifiedChunk?: AgentOSResponse

Modified chunk (if sanitized)

All evaluation results from cross-agent guardrails