Documentation
Learn how to integrate Agntor into your agents
Output filtering and redaction
import { redact } from '@agntor/sdk'; const policy = { redactionPatterns: [ { type: 'pii', pattern: /\b\d{3}-\d{2}-\d{4}\b/g }, ], }; const result = redact('ssn 123-45-6789', policy);