Chapter 10: Speech & Voice AI

When the Computer Has to Listen

Here is a thing that I think is genuinely strange about modern healthcare: in a building full of multi-million-dollar imaging machines and gene sequencers and surgical robots, the highest-friction interaction a patient has with the system is usually a phone tree.

You know the one. Press 1 for appointments. Press 2 for billing. Press 3 to refill a prescription. Press 9 to repeat this menu. You press 1. New menu. Press 1 for new appointments, press 2 to reschedule, press 3 to cancel. You press 2. Another menu. After ninety seconds of this, you're still not talking to a person, you've forgotten which provider you needed, and you're now being asked to enter your date of birth using the keypad while holding a fussy toddler. The patient experience of healthcare, for an enormous fraction of patients, is not the clinic visit. It's the phone tree before the clinic visit, the voicemail to the nurse line, the hold music that plays for twenty minutes before someone picks up to schedule a colonoscopy. The clinical care is great. The voice infrastructure around it is, candidly, embarrassing.

That's one end of this chapter. The other end is a lot more interesting. It's a physician walking out of an exam room having had a normal conversation with a patient, opening their EHR, and finding the visit note already drafted. Not transcribed verbatim, but actually structured into HPI, exam findings, assessment, and plan, with the right billing codes suggested in the margin. Nobody dictated. Nobody typed. The room listened, and the documentation appeared. That product category did not exist at scale five years ago. It now has more than half a dozen serious vendors competing for hospital contracts and is changing what physicians' workdays actually look like.

Between those two ends of the spectrum sits everything else this chapter is about: the systems that have to listen, understand, transcribe, route, transcribe again more accurately, decide who said what, sometimes translate, sometimes detect a tremor in someone's voice that hints at Parkinson's, sometimes generate a synthesized voice that reads a discharge summary back to a patient who can't read it themselves. Speech and voice AI in healthcare is an unusually wide category. The simple end is genuinely simple. The complex end is at the bleeding edge of clinical research. The middle is, right now, where most of the operational money is moving.


What Speech and Voice AI Actually Is

Let's level-set. When we say "speech AI" or "voice AI," we're really talking about a stack of related but distinct technologies, and conflating them is a great way to make bad architectural decisions.

Automatic Speech Recognition (ASR). Audio in, text out. The classic problem. For decades the dominant architecture was a pipeline: an acoustic model that mapped audio frames to phonemes, a pronunciation dictionary that mapped phonemes to words, and a language model that scored sequences of words for plausibility. Around 2017 to 2020, the field shifted hard toward end-to-end neural approaches (CTC, attention-based encoder-decoders, RNN-Transducers), and more recently toward large transformer-based models trained on massive multilingual audio datasets. Whisper from OpenAI is the most famous open example; AWS Transcribe Medical, Google's Chirp, Nuance Dragon Medical, and a half-dozen others are the commercial versions. The accuracy ceiling has gone up dramatically. The accuracy floor for messy data still has a lot of variance.

Text-to-Speech (TTS). Text in, audio out. Used to be robotic and obvious. Now, with neural vocoders and prosody-aware models (Tacotron, WaveNet, VALL-E, recent commercial offerings like Polly's neural voices and ElevenLabs), the output is good enough that most people don't notice it's synthetic in a brief interaction. Healthcare uses for TTS: reading out medication instructions for low-vision patients, voicing virtual assistants, generating phone-based outreach calls.

Natural Language Understanding (NLU) on transcribed text. Once you have text, you need to do something with it. Intent classification ("this caller wants to refill a prescription"). Entity extraction ("the medication is lisinopril, the dose is 10mg"). Sentiment analysis. Most of these techniques are not voice-specific; they're the NLP tools from Chapter 8 applied to the transcribed output of an ASR system. But the integration matters: ASR errors propagate into NLU, and a 5% word error rate on the transcript may translate into a much higher intent classification error rate if the misrecognized words happen to be the medical terms that drive the intent.

Speaker diarization. Who said what. Given an audio recording with multiple speakers, segment it by speaker and label each segment. This is the "doctor said X, patient said Y" problem, and it's both essential for clinical applications and genuinely hard. State-of-the-art diarization in noisy multi-party clinical environments is meaningfully worse than ASR accuracy on the same audio. A great transcript with the wrong speaker labels is a wrong document.

Voice biomarkers. Acoustic features of voice (pitch variability, jitter, shimmer, spectral characteristics, prosody, articulation rate) that correlate with health conditions. Parkinson's, depression, respiratory disease, cognitive decline, even cardiovascular conditions all leave traces in voice. The science is real but uneven; the regulatory pathway for most claimed indications is unclear; the failure mode of "the model picks up the recording-environment difference between patients and controls instead of the disease" is well-documented.

Voice activity detection (VAD), wake word detection, and audio gating. The unglamorous plumbing that decides when the system is actually listening. In ambient documentation specifically, getting this wrong (recording when you shouldn't, or missing the start of a clinically important sentence) is the difference between a useful product and a privacy lawsuit.

Telephony integration. The bridge from "audio in a phone call" to "audio in a deep learning model." SIP, WebRTC, contact center platforms, IVR systems. Boring infrastructure that absolutely dominates the practical engineering effort of any voice AI system that touches a phone line. If you've never built one, you'll be surprised how much of the work this is.

Most of the recipes in this chapter combine several of these technologies. ASR plus diarization plus LLM-driven structuring is the recipe for ambient documentation. ASR plus intent classification plus telephony is the recipe for IVR enhancement. Voice biomarkers stand alone but borrow signal-processing patterns from each side. The architectural choices come from the combinations, not the individual components.


Why Healthcare Voice Is Uniquely Hard

If you've worked on consumer voice assistants, you have intuitions about voice AI that will mostly transfer to healthcare and a couple that will catastrophically not. Calling out the differences, because every recipe in this chapter bumps into at least one of them.

Medical Vocabulary Is Not in the Training Data

Off-the-shelf ASR systems are trained on web-scale audio data: podcasts, YouTube, public speech corpora. The vocabulary distribution of that data does not match the vocabulary distribution of clinical speech. Drug names. Anatomical structures. Disease names. Lab tests. Procedure names. Insurance terminology. Names of medical devices. ICD codes spoken aloud. Most of these are either rare in general training data or, in many cases, simply not present at all.

This shows up as systematic word error rate elevation on the exact terms that matter most clinically. A general-purpose ASR system might transcribe a patient encounter with 95% accuracy on conversational speech and 60% accuracy on medication names, which makes the transcript usable for the small talk and useless for the medication reconciliation. Domain-adapted ASR (Transcribe Medical, Nuance, fine-tuned Whisper variants, vendor-specific clinical models) closes most of this gap, and it's why "just use Whisper" is rarely the right answer for any production clinical use case.

Accents, Dialects, and Speech Differences

ASR systems are not equally accurate across speakers. They tend to be trained predominantly on dominant-culture speech (in U.S. systems, that historically meant predominantly white, predominantly American-English, predominantly between certain age ranges). Speakers with regional accents, non-native English, AAVE, or other dialects experience higher word error rates. Older speakers, speakers with dentures, speakers with hearing loss who modulate their voice differently, all see higher error rates than the typical speaker the system was tuned for.

In healthcare, this is an equity problem with teeth. If your ambient documentation system works great for a 35-year-old physician but poorly captures the speech of an 80-year-old patient with a Spanish-speaking-as-first-language background and partial dentition, then the patient's words are systematically less likely to make it into the medical record accurately. The clinician may not notice (the parts they said are transcribed fine), but the integrity of the patient-reported information has been silently degraded. Every recipe that captures patient speech needs to think about this. "Test on diverse audio" cannot be a one-time pre-launch checklist item.

Speech Differences That Are Themselves the Clinical Signal

Voice biomarker recipes have an unusual problem: the patients you most want the system to work for are the patients whose speech is least like the training data. A speech-impaired patient is, by definition, the user the system needs to handle, and is, by accident of how ASR is usually trained, the user the system will struggle with most. Speech therapy assessment specifically (recipe 10.9) is in the complex tier because the system has to give clinically meaningful output on speech that off-the-shelf models would silently mangle or skip. You have to choose your model and your training data deliberately for the population you're serving, not for the population that happens to be in the public datasets.

Ambient Noise Is Not a Solved Problem

Clinical environments are loud. Bed alarms, IV pumps, conversations in the next bay over, the air handling system, the patient's family members talking in the background, the rolling cart, the door opening and closing. Consumer ASR systems were not trained for this acoustic environment. The pretty demo of "I read a medical paragraph into my phone in a quiet office" is not the operational deployment. Recipes that involve in-room recording (10.7 ambient documentation specifically, but also 10.6 telehealth and 10.5 patient-facing assistants in clinical waiting areas) need to think hard about microphone placement, beamforming, noise-robust models, and graceful degradation when the audio is just bad.

Speaker Diarization Plus Movement Plus Privacy

In an exam room, the doctor sits, then stands, then walks around the bed. The patient is in different positions. There's a nurse who steps in for thirty seconds. There's a family member who speaks up twice. Diarizing this audio reliably, with the speakers physically moving relative to the microphone, is significantly harder than diarizing a podcast where everyone sits still in front of their own mic. The ambient documentation vendors have collectively spent enormous engineering effort on this and it's still imperfect. Then layer on the question of who's actually consented to be recorded. The patient consented at intake. Did the visiting family member? Did the nursing student who walked in for two minutes? Recording state laws (one-party-consent versus two-party-consent jurisdictions) make this a different question in California than in New York.

Latency Constraints Are Real for Some Use Cases

Voicemail transcription can run as a batch job overnight. Telehealth real-time captioning cannot. Real-time medical interpretation (recipe 10.10) has even tighter constraints, because conversational interpretation works only when the latency between the speaker and the rendered translation is short enough not to break conversational flow. End-to-end latency under a couple of seconds is usually the target, which constrains your architecture options dramatically. Streaming ASR with progressive output, edge-deployed models, careful network paths, all become non-negotiable design decisions for the latency-sensitive recipes in this chapter.

Audio Is High-Bandwidth, High-Stakes PHI

A clinical audio recording is, in most regulatory readings, PHI. It's also large (tens of megabytes per encounter for ambient recording), it captures content that's often more candid than what makes it to the formal record, and it can't be easily de-identified the way structured data can. (You can scrub names from a transcript. You can't easily scrub a voiceprint from an audio file, and voice itself is a biometric identifier.) Audio retention policies, encryption at rest and in transit, role-based access to recordings, and explicit data minimization (do you actually need to keep the audio after transcription, or only the transcript?) all have to be designed up front. Some vendors keep the audio briefly for quality assurance and then discard it; some keep it longer for model retraining; the choice has both compliance and trust implications.

Regulatory Exposure Climbs Fast

Voicemail transcription for staff routing is administrative tooling. Voice biomarkers that claim to detect Parkinson's are medical devices. The recipes in this chapter span that entire range. Where a recipe sits on the regulatory spectrum, it says so. As a heuristic: if you're making a clinical claim from voice (this patient has condition X, this patient's condition is worsening), you're probably building something that the FDA cares about. If you're transcribing for documentation that a clinician then reviews and signs, you're probably in productivity-tool territory. The middle is fuzzy, and your regulatory team is the authoritative source for your specific use case.

The Identity Question

Voice is a biometric. A voiceprint can identify a specific person, in some cases more uniquely than a fingerprint. When you're storing healthcare audio at scale, you're potentially building a biometric database, even if that wasn't your intent. Some jurisdictions (Illinois BIPA, for instance) regulate biometric data specifically. The architectural decisions you make about audio retention, transcription-and-discard versus transcription-and-keep, and access controls on the audio itself can be the difference between an unremarkable clinical product and a regulated biometric system.


The Progression: Simple to Complex

This chapter is ordered roughly by clinical risk and operational complexity. Quick map:

Recipes 10.1 to 10.2 (Simple). IVR call routing enhancement and voicemail transcription with classification. Bounded vocabularies, async or recoverable failure modes, clear success metrics, abundant historical data from existing call logs to train against. These are your two- to three-month projects, and they let you build the operational muscles (telephony integration, ASR vendor selection, intent labeling pipelines, monitoring dashboards) that the harder recipes need. Most healthcare organizations should start here, because there's almost certainly an underperforming phone tree somewhere in your environment that's quietly costing you millions in patient leakage.

Recipe 10.3 (Simple-Medium). Voice-to-text for EHR navigation. Where voice meets the actual clinical workflow. The technology is straightforward; the integration is not. EHR vendors have varied tolerance for third-party voice integration, and the user-acceptance work (which clinicians actually use it, what training they need, what the failure mode looks like when the system mis-recognizes a command) often dominates the engineering work. Treat this as a workflow project that happens to use ASR.

Recipe 10.4 (Medium). Medical transcription. The classic dictation use case. Specialty-specific vocabularies, formatting templates, integration with documentation workflows. The market is mature, the accuracy benchmarks are well-established, and the build-versus-buy math usually favors buying. The recipe explains what's actually happening under the hood at the major vendors, what to evaluate, and where the differentiation lives if you're considering a custom build for an underserved specialty.

Recipes 10.5 to 10.6 (Medium). Patient-facing voice assistants and telehealth speech-to-text. Both add a multi-party dimension and patient-side audio quality variability. Recipe 10.5 specifically intersects with accessibility (older patients, patients with disabilities) and telephony (the patients who don't have apps still have phones). Recipe 10.6 brings real-time constraints and diarization. Budget a quarter to a couple of quarters, with significant front-loaded work on consent capture, audio quality monitoring, and integration with the actual visit workflow.

Recipe 10.7 (Complex). Ambient clinical documentation. The fastest-moving recipe in this chapter, in the sense that the commercial state of the art is moving in months rather than years. The build-versus-buy math here heavily favors buying for most organizations, because the leading vendors have invested an enormous amount in clinical-domain ASR, diarization, structured note generation, and EHR integration. The recipe walks through what's actually happening in those systems (it's a layered pipeline, not a single magic model), what to evaluate, how to deploy it without alienating the clinicians, and what the failure modes look like at scale. If you're building rather than buying, this is a multi-year endeavor with real research-level engineering effort.

Recipes 10.8 to 10.9 (Complex). Voice biomarker detection and speech therapy assessment and monitoring. Both move from "transcription as productivity tool" to "voice acoustics as clinical signal." The technical work shifts toward signal processing and feature engineering specific to acoustic biomarkers. The regulatory work shifts toward clinical validation, FDA pathways, and population-specific accuracy validation. These are recipes you build with clinical research partners, IRB oversight, and a regulatory roadmap, not as ordinary product engineering. They are in the chapter because they represent where the field is heading, but the production deployments today are limited.

Recipe 10.10 (Complex). Multilingual real-time medical interpretation. Tight latency, medical vocabulary in multiple languages, liability for interpretation errors, and direct competition with human medical interpreters who provide a standard of care that has well-defined legal protections. The technology has gotten substantially better in the last few years; the operational, legal, and ethical questions have not. The recipe is honest about where machine interpretation can be safely deployed today (asynchronous communications, low-stakes interactions, as a backup when human interpreters are unavailable) and where it should not (informed consent for surgery, mental health crisis triage, anything where misinterpretation has direct safety consequences).

You can read the chapter linearly or jump to the recipe that matches your current problem. If you're new to voice AI as a discipline, the simple recipes will build the mental models that the complex ones depend on.


The Techniques You'll See

Quick reference on the technique families, because the names recur:

Acoustic feature extraction. The audio-engineering layer below ASR. MFCCs (mel-frequency cepstral coefficients), spectrograms, mel-spectrograms, learned audio embeddings from models like wav2vec 2.0 or HuBERT. These are the inputs to most modern speech models, and they're also the input to voice biomarker analysis, where the features themselves (rather than the recognized words) carry the clinical signal.

Hybrid HMM-DNN ASR. The pipeline architecture that dominated speech recognition from roughly 2010 to 2020. Acoustic model (deep neural network or formerly Gaussian mixture) plus pronunciation dictionary plus language model, decoded jointly via weighted finite-state transducers. Still widely deployed in production, especially in telephony stacks. Mentioned because legacy systems you'll integrate with often work this way.

End-to-end neural ASR. Encoder-decoder transformers, RNN-Transducers, CTC-based models. Trained on paired (audio, transcript) data without an explicit pronunciation dictionary. The dominant new-system architecture. Whisper, recent Transcribe versions, modern Nuance, modern Google models, all live here. Trade-offs: simpler training pipeline, better generic accuracy, worse adaptability to small specialty domains without retraining.

Speaker diarization. Several approaches. Clustering of speaker embeddings (x-vectors, ECAPA-TDNN). End-to-end neural diarization. Joint ASR-and-diarization architectures. Performance varies dramatically with audio quality, number of speakers, and speaker overlap. Vendor-supplied diarization is usually a black box; if you need clinical-grade accuracy in noisy multi-party environments, expect to do significant evaluation work.

Streaming versus batch ASR. Streaming models produce output as audio comes in, with some latency budget. Batch models see the whole utterance and can produce more accurate output at the cost of latency. Streaming is required for real-time captioning, conversational assistants, and live transcription. Batch is fine for voicemail, post-encounter documentation, and any async use case. The accuracy gap between streaming and batch on the same audio has narrowed considerably in modern models but is not zero.

Domain-adapted language models. ASR systems include a language model component (explicit in classical pipelines, implicit in end-to-end models) that scores word sequences for plausibility. Adapting that component to medical vocabulary can dramatically improve recognition of clinical terms. Vendor offerings (Transcribe Medical, Nuance medical models) do this; if you're building custom, this is one of the highest-leverage investments you can make.

Intent classification and slot filling. Once you have a transcript, classify the utterance into a finite set of intents ("refill prescription," "book appointment," "report symptom") and extract the relevant slots ("medication name," "preferred date"). Modern approaches use fine-tuned transformer classifiers. Recipes 10.1 (IVR routing) and 10.5 (patient assistants) lean heavily on this layer.

Voice biomarker pipelines. Audio features are extracted, then fed into a classifier or regression model trained against clinical labels. The feature engineering is doing most of the work; modern approaches sometimes replace the explicit features with learned audio embeddings, but interpretability is then harder. Validation requires clinical-grade datasets that are expensive to assemble, and population-specific accuracy validation is the rule, not the exception.

Neural TTS. Tacotron-style, WaveNet-style, VALL-E-style, modern commercial offerings (Polly neural voices, Google Wavenet voices, ElevenLabs). Used for outbound voice communication, virtual assistant responses, and accessibility features. Recipes in this chapter use TTS as a component of larger systems rather than as the primary subject; the heart of the chapter is recognition, not synthesis.

LLM post-processing of transcripts. Large language models applied to ASR output for cleanup, structuring, summarization, and intent extraction. The pattern that powers ambient documentation specifically: ASR produces a verbatim transcript, an LLM transforms it into structured clinical documentation, and a clinician reviews and signs. This is where Chapter 10 connects back to Chapter 2. The voice technology gets the words; the LLM technology turns the words into something clinically useful.

You don't need all of these for any one recipe. You do need to recognize the vocabulary because the architectural conversations move quickly between layers.


Key Architectural Patterns You'll See Repeatedly

A few patterns compound across the chapter. Calling them out here saves repetition later:

Audio capture, then immediate transcription, then audio retention decision. Most production voice systems capture audio, transcribe to text, and then make an explicit decision about whether to retain the original audio. Some keep audio briefly for QA. Some keep it longer for model retraining (with appropriate consent). Some transcribe and immediately discard. The audio retention choice is a design decision with compliance, privacy, and trust consequences, and the architectures call it out.

Streaming pipeline with progressive results. Real-time use cases (telehealth captioning, voice assistants, interpretation) use streaming ASR that emits partial results progressively. The downstream system has to handle revisions: a partial result may be amended as more audio is processed, before being finalized. UI design and downstream integration both have to account for this.

Confidence-aware downstream consumption. ASR systems emit confidence scores per word and per utterance. Voice biomarker systems emit probability distributions over conditions. The architectures pass these through rather than collapsing to point predictions, so that downstream consumers (the EHR, the clinician dashboard, the auto-routing logic) can apply different thresholds for different actions. Auto-act on high-confidence items; queue medium-confidence items for human review; reject low-confidence items entirely.

Diarization plus speaker labeling plus role assignment. Multi-speaker recipes typically separate diarization (who is speaker A versus speaker B) from speaker labeling (this speaker is "Dr. Smith, the attending"). The first is acoustic; the second usually comes from external context (the visit was scheduled with Dr. Smith, the EHR knows who the attending is). Combining them robustly takes deliberate engineering.

Human review queue with ASR error patterns surfaced. Like the entity resolution chapter and the LLM chapter, the voice chapter recipes assume a human-in-the-loop layer for non-trivial outputs. The review interface typically surfaces low-confidence segments, terms not in the medical lexicon, and cases where the ASR contradicts the structured EHR data (the ASR says "lisinopril" but the patient's med list says "losartan"). Good review interfaces save reviewers from re-listening to the entire recording; they highlight what to focus on.

Telephony integration as a first-class concern. For any recipe involving phone calls (10.1, 10.2, 10.5, 10.6, 10.10), the telephony layer is at least half the engineering work. SIP trunking, call routing, contact center integration, CCaaS platforms, recording infrastructure. The ASR model is interesting; the production system that gets the audio to the model reliably and the response back into the call flow is what determines whether the project ships.

Edge plus cloud for latency-sensitive flows. Some recipes (real-time interpretation, certain voice assistant patterns) move portions of the pipeline to the edge (on-device wake word detection, on-device VAD) to keep latency manageable while leveraging cloud models for the heavy lifting. Edge-cloud splits add operational complexity; the recipes call out where they pay off.

Vendor model versus custom model versus fine-tuned vendor model. Almost every recipe in this chapter has the same upfront question: do I use a vendor's clinical-domain ASR as-is, fine-tune a vendor's general model on my data, or train a custom model from scratch? The answer depends on accuracy requirements, data availability, latency constraints, and budget. The recipes are explicit about which approach is appropriate when. (Spoiler: for most production use cases, vendor clinical models with light customization win.)

Continuous evaluation against demographic slices. Word error rate on average is not enough. The architectures bake in evaluation against age cohorts, accent groups, gender, and other slices that might surface disparate performance. The dashboards track these metrics over time; the launch criteria require minimum performance on each slice, not just on the overall average.


Healthcare-Specific Considerations

Beyond the architectural patterns, a few considerations recur across every recipe:

PHI in audio is still PHI, with extra complications. Audio is large, hard to de-identify, and contains content beyond what makes it into the formal record. BAAs, encryption, audit trails, and access controls all apply. Beyond standard PHI handling, plan for audio-specific concerns: voice itself is a biometric, recording-consent law varies by state, and the audio captures bystanders (family members, students, other patients) whose consent status may differ from the patient's.

Recording consent has actual legal teeth. Some U.S. states require all-party consent to record a conversation. Healthcare conversations often involve more than two parties (patient, clinician, family, students, interpreters). Getting consent capture right is not a checkbox; it's a workflow design problem that the recipes flag explicitly. A "by continuing this call you consent to recording" prompt is fine for some use cases and dangerously underspecified for others.

Equity is not optional, again. Voice systems exhibit systematic accuracy disparities across demographic groups. Every recipe in this chapter that captures patient speech needs subgroup performance monitoring. "We have 95% accuracy" without a subgroup breakdown is not a meaningful claim. Measuring word error rate stratified by speaker age, language background, and dialect is the minimum bar, and the harder recipes go further.

Clinical liability for voice errors. A misrecognized word in a draft note that a clinician reviews and corrects is one thing. A misrecognized word in a real-time medical interpretation that drives clinical decision-making is another thing entirely. The recipes are explicit about the human-in-the-loop expectation for each use case, and where a failure mode would have direct patient impact, the recipe builds in the safeguards.

Documentation remains the legal record, not the audio. In ambient documentation specifically, the structured note that the clinician signs is the clinical-legal record, not the audio recording. The audio is at most ephemeral. This affects how the architecture is allowed to handle audio retention, what disclosure obligations exist when patients request their records, and what happens in litigation. The recipes flag where this matters.

FDA exposure scales with diagnostic claim strength. Transcribing a visit for clinician review is productivity software. Detecting Parkinson's from voice and reporting that result to a clinician is medical device software. The recipes that touch diagnostic territory (10.8 specifically, but parts of 10.7 and 10.9 depending on intended use) note where the regulatory line falls and what the implications are.

Telephony accessibility considerations. A surprising fraction of the U.S. healthcare population still relies primarily on telephone for access (older patients, patients without smartphones, patients without reliable broadband). Voice AI that improves the phone experience reaches populations that app-based digital health tools systematically miss. This is one of the few healthcare AI categories where the equity impact of the simple recipes is potentially as large as the equity impact of the complex ones.

Multilingual reach is a distinct dimension of equity. ASR quality varies dramatically by language. English models are extensively tuned. Spanish models are increasingly good. Less-common languages (relative to internet training data, which is itself a biased sample) lag substantially. Recipe 10.10 leans into multilingual capability explicitly; other recipes need to be honest about whether they actually serve non-English-speaking patients well or whether they silently exclude them.


What You'll Build

By the end of this chapter, you'll have patterns for:

  • Routing inbound calls based on natural-language intent rather than menu navigation, reducing patient frustration and call abandonment while letting human agents focus on the calls that need them
  • Transcribing and triaging patient voicemails so urgent clinical concerns surface to the right staff faster than a flat queue would allow
  • Enabling voice-driven EHR navigation that lets clinicians keep their hands on the patient and their eyes off the keyboard for parts of the workflow
  • Deploying medical transcription systems for dictated documentation, with the vocabulary adaptation and formatting rules that specialty-specific use demands
  • Building patient-facing voice assistants that work across the demographic and accessibility range of an actual patient population, not just the early-adopter slice
  • Capturing telehealth visits with real-time transcription and post-visit summarization, with diarization that correctly attributes who said what
  • Implementing ambient clinical documentation that listens to in-person encounters and produces structured notes, with the consent, audio retention, and review workflow that makes it deployable at scale
  • Building voice biomarker pipelines for clinical research and (where appropriate) clinical screening, with the validation rigor and population-specific accuracy work that responsible deployment requires
  • Supporting speech therapy assessment with acoustic analysis tuned for the impaired speech patterns that off-the-shelf systems mishandle
  • Providing real-time multilingual medical interpretation as a complement to (not a replacement for) human medical interpreters, with clear use-case boundaries and failure-mode handling

Each recipe is self-contained, but the infrastructure compounds. The telephony integration you build for recipe 10.1 is reusable for 10.5 and 10.10. The ASR vendor evaluation you do for recipe 10.4 is most of the work for 10.6 and 10.7. The diarization and consent capture from 10.6 are foundational for 10.7. The audio retention and access control work from any of these recipes carries directly into the others. Treat the early recipes as capability investments; the later ones get faster, safer, and cheaper because of them.

One last thing before we get into it. Voice is, in some ways, the most personal data modality healthcare touches. A typed note records what the clinician chose to write. A transcript records what was actually said. The audio itself records how it was said: the hesitation in the patient's answer, the doctor's reassurance, the family member's quiet sob in the corner. Building systems that handle this data well is an ethical responsibility as much as a technical challenge. The recipes that follow take that seriously. The hype around voice AI in healthcare is going to outpace the engineering reality for at least a few more years; the responsible path is to build the simple things well, learn the operational patterns deeply, and earn the right to attempt the harder things.

Alright. Let's teach the computer to listen.


Recipe 10.1: IVR Call Routing Enhancement