pii 0.1.0

PII detection and anonymization with deterministic, capability-aware NLP pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
{
  "name": "en_basic",
  "category": "basic",
  "language": "en",
  "entities": ["Email", "Phone"],
  "text": "Contact John Doe at john@example.com or +1 415-555-1212.",
  "expected": [
    {"entity_type": "Email", "start": 20, "end": 36, "recognizer": "regex_email"},
    {"entity_type": "Phone", "start": 40, "end": 55, "recognizer": "regex_phone"}
  ]
}