Turns typed or dictated consultation notes into structured medical summaries, action items, and patient-ready letters — in 19 languages.



The pipeline runs in three stages: audio input is transcribed with Whisper, the transcript (or typed notes) is passed to an LLM structuring step that produces a clinical summary, an action-item list, and a patient-facing letter, and a translation layer generates the patient letter natively in the requested language rather than machine-translating a fixed English template.
The core design bet was treating this as a product shell rather than a single script: authentication (Clerk), a persistent UI, and a reusable pipeline layer, so the same note-processing logic could sit behind different frontends later if needed.
Patient data handling was treated as a first-class constraint from the start rather than an afterthought — the data model and UI copy are written with HIPAA-style handling in mind, even ahead of a formal compliance pass.