Implements detect-redact-sanitize pipeline with regex, domain rules, and ONNX NER before the LLM boundary, plus NUnit tests and Xenovex push documentation. Co-authored-by: Cursor <cursoragent@cursor.com>
6 lines
158 B
C#
6 lines
158 B
C#
namespace PiiRedaction.Core.Models;
|
|
|
|
public sealed record RedactionResult(
|
|
string SanitizedText,
|
|
IReadOnlyDictionary<string, string> PlaceholderMap);
|