Automated PHI redaction for opioid use disorder treatment communications
"As Ophelia scales its telehealth addiction treatment, handling sensitive patient communications requires robust PHI detection in chat transcripts."
"Ophelia's judgment-free approach to opioid use disorder requires the highest standards of privacy protection as you grow."
"Shroud's 28-category detection (including health IDs and treatment codes) could automate redaction before data enters analytics pipelines or third-party tools."
// npm install @shroud/sdk
import { Shroud } from "@shroud/sdk";
const shroud = new Shroud({ apiKey: process.env.SHROUD_KEY });
// In your chat message processing function
export async function processMessage(message) {
const redacted = await shroud.redact(message);
// Now safe to log, analyze, or store
console.log(redacted);
return redacted;
}
// Example usage with your message data
const message = "Patient MRN 8471293, DOB 1990-05-15, prescribed 8mg Suboxone";
processMessage(message).then(console.log);