The eval + guardrail + red-team + audit platform purpose-built for AI workloads that touch PHI. Eliminate hallucinations on clinical decision support, redact PHI before it reaches third-party LLMs, generate the audit trail your auditors and payers expect.
What ships today
Every checked item is in production today. In-progress items are flagged explicitly — no overclaiming, no vapor.
Built for buyer reality
AI summarizes a patient chart for a covering clinician at shift change. PHI must stay inside the workload; summaries must not hallucinate a diagnosis or medication that isn't in the record.
Public-internet chatbot collects symptoms + routes patients to the right service. Cannot output medication dosing, cannot impersonate a clinician, cannot leak prior patients' PHI.
AI drafts prior-auth letters from claims + chart data, then a human reviews + signs. PHI flows through multiple LLM calls; cost + audit trail per claim must be perfect for payer disputes.
Live voice consult between clinician + patient is transcribed + summarized in real-time. Need voice-clone detection, barge-in latency under 250ms, deepfake guard on patient identity verification.
Wire it in 60 seconds
PHI firewall rules + clinical-faithfulness scorers + BAA-protected audit retention are configured once in the EvalGuard control plane. Your code only wraps the client.
import OpenAI from "openai";
import { wrapOpenAI, EvalGuardViolationError } from "evalguardai-openai";
const openai = wrapOpenAI(new OpenAI(), {
apiKey: process.env.EVALGUARD_API_KEY!,
projectId: "phi-chart-summary",
metadata: { vertical: "healthcare", hipaa: true },
blockOnViolation: true, // refuse PHI-leaking prompts
evalOnResponse: { failOnScore: 0.7 }, // clinical-faithfulness gate
onViolation: (r) => alertSecOps(r.violations),
});
try {
await openai.chat.completions.create({
model: "gpt-4o",
messages: [{ role: "user", content: chartSummaryPrompt }],
});
} catch (err) {
if (err instanceof EvalGuardViolationError) {
// Block landed in BAA-protected audit trail. Replay via audit ID.
}
}wrapOpenAI for wrapAnthropic.Stack
Eval, firewall, red-team, audit, BYOK, dashboard — every surface ships out of the box. No bolt-on vendors, no procurement cycle per capability.
Free trial includes the full HIPAA control mapping, PHI firewall, and audit log. BAA on request before any PHI hits the platform.
Apache-2.0 source · SOC 2 Type II in progress · full trust center