SHROUD × TECHNOLOGY RIVERS
Protect PHI in your healthtech platforms
Technology Rivers builds HIPAA-compliant digital health platforms.
Shroud scrubs PHI from logs, analytics, and LLM prompts in real-time.
YOUR HEALTHCARE DATA
John Doe, MRN 8471293, DOB 01/15/1965
received Lipitor 20mg at 123 Main St, Anytown, CA
↓ shroud.redact(…)
AFTER SHROUD
[NAME], MRN [MRN], DOB [DOB]
received [MEDICATION] at [ADDRESS]
Eliminate PHI leaks
Prevent patient data from leaking into application logs, monitoring tools, and analytics pipelines.
Accelerate HIPAA compliance
Automate PHI detection and redaction across all data flows in your healthcare platforms.
Safe AI development
Redact PHI before patient data reaches LLM prompts or training datasets.
# pip install shroud
from shroud import Client
shroud = Client(api_key="sk_live_…")
clean = shroud.redact(
"John Doe, MRN 8471293, DOB 01/15/1965 received Lipitor 20mg at 123 Main St"
)
# → "[NAME], MRN [MRN], DOB [DOB] received [MEDICATION] at [ADDRESS]"