Back to Home
Interactive Playground

Try Tork Governance Live

Test PII detection, policy enforcement, and content filtering — all running client-side. No signup required.

tork-pii-demo
SDK Integration
import { TorkGovernance } from 'tork-governance';

const tork = new TorkGovernance({ apiKey: process.env.TORK_API_KEY });

// Scan text for PII before sending to LLM
const result = await tork.pii.scan(userInput);

if (result.detections.length > 0) {
  // Use redacted text instead
  const safe = await tork.pii.redact(userInput);
  await llm.chat(safe.redacted);
}

Ready to add governance to your agents?

Get started free — no credit card required