The Loop
Step 1. Suggest the Pattern from Your Data
Give the platform a description and real examples. It returns the regex, the context keywords, the corroboration threshold, and an explanation of its reasoning.negative_examples are what teach it precision: the same digit shape in an order number must not match, so the suggestion leans on context keywords like “SSN” and “social security” to separate the two.
Step 2. Prove It with Test Cases
Generate test cases covering matches, near-misses, and edge cases, then evaluate the pattern against them before it touches production data.suggest_patterns again with the failing text as current_wrong_result or an added negative example, and re-evaluate. The loop converges in a round or two.
Step 3. Create the Tag and Run It
The tag carries the full pattern configuration. Detection is deterministic and costs no LLM calls at classification time.Why Context Keywords Matter
Next Steps
Protect Sensitive Data
The built-in classifiers and the gated slice.
Taxonomies and Tags
The three tag strategies side by side.
