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.
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 same checks the watcher runs, as endpoints on LM-Kit One.
curl http://your-server:5189/lmkit/v1/detect-pii \
-H "Authorization: Bearer your-server-token" \
-H "Content-Type: application/json" \
-d '{"input":"<document text>"}'
curl http://your-server:5189/lmkit/v1/pdf-verify-signatures \
-H "Authorization: Bearer your-server-token" \
-F "file=@vendor-contract.pdf"
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 worksVerify
Every signed arrival checked against your trust anchors, verdict recorded.
How verification worksRecord
Every check, finding and decision logged: the process is the evidence.
How observability worksThen archive
Cleared documents convert to validated PDF/A and get sealed, so intake compliance feeds retention compliance without a second project.
The archiving use caseNo. Its autonomy ends where the document changes: findings and drafted redactions go to a review queue, and removals apply only after a person approves them. Every decision is logged either way.
Classification routes the document to its checks; PII detection reports typed entities with confidence; policy rules test for required clauses; and digital signatures are verified against your trust anchors, with the verdict recorded.
Point the watcher at the folders or queues you already use, or call the same checks as LM-Kit One REST endpoints from your own pipeline. LM-Kit.NET embeds them in-process when the intake system is your own code.
It produces the raw material: per-document checks, findings, decisions, and timestamps, held on your infrastructure. Your compliance owners map that evidence to each framework's requirements.
Private Document Intelligence