Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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);