Always on
Coverage without headcount
Every arrival gets the same checks at any hour; nothing depends on who was in that day.
An agent watches intake folders, classifies what arrives, flags policy violations and drafts redactions, then queues its findings for human review.
Documents arrive all day; checks happen quarterly, on a sample. Everything between those two facts is accepted risk.
Compliance found at intake costs a correction; compliance found at audit time costs a finding.
01
New files in intake locations wake the agent.
02
Each document gets a type and routes to its checks.
03
Policy rules and PII detection run against the content.
04
Findings and drafted redactions wait for a person to approve.
The agent's autonomy ends exactly where the document changes: at a person.
Always on
Every arrival gets the same checks at any hour; nothing depends on who was in that day.
Draft-only
Flags and drafted redactions go to a review queue; a change applies only after sign-off.
Recorded
Every check, finding and decision is logged, so the process itself is evidence.
The check that runs on every new file: detect, record, queue. Approved removals run through the same redaction call as the review workflow.
using LMKit.Model;
using LMKit.TextAnalysis;
// Runs for every new file the intake watcher reports.
var model = LM.LoadFromModelID("lmkit-tasks:4b-preview");
var pii = new PiiExtraction(model);
var findings = pii.Extract(documentText);
foreach (var f in findings)
reviewQueue.Add(file, f.Value, f.Confidence);
// Nothing is redacted until a person approves the queue.
The watcher composes documented capabilities you can inspect on their own.
Detect
Typed entities with value, occurrences and confidence, page by page.
How PII detection worksRoute
Type detection that sends each arrival to the right checks.
How classification worksDraft
Findings become reviewable regions; approved removals are permanent.
How redaction worksRecord
Every check, finding and decision logged, so the process itself is the audit evidence.
How observability worksPrivate Document Intelligence