AI Copilot for Pre-Surgery Screening (Part 2)

In the 2nd part of our post series, we describe the transcription part of the implementation. This is a project Analytiq Hub developed for Boston Medical Data.

Medical Screening Call Transcription

Transcription can be implemented with AWS Transcribe, or, more specifically, given the medical subject of the conversation, AWS Transcribe Medical. Conversation summary notes can be implemented with AWS HealthScribe.

AWS has a number of blog posts describing reference implementations for the call transcription workflow:

Another AWS blog post describing call transcription is:

A third blog post describing a reference design for call transcription is:

This solution comes with full Github repo implementation from AWS, using CloudFormation, AWS tRanscribe, AWS Bedrock, and a Step Functions state machine. The architecture diagram in this implementation is:

The state machine in this design is described below:

What are the differences between AWS Transcribe and AWS Transcribe Medical?

FeatureAWS TranscribeAWS Transcribe Medical
PurposeGeneral speech-to-textMedical speech-to-text
Supported languagesWider rangeUS English only
AccuracyGood for general audioHighly accurate for medical terminology
FeaturesSpeaker ID, custom vocabularies, real-time transcriptionMedical speaker diarization, medical term identification, HIPAA compliance
Use casesInterviews, meetings, podcasts, etc.Clinical documentation, pharmacovigilance, telehealth, etc.
  • Both AWS Transcribe and AWS Transcribe Medical support a real time feature, where transcription results can be read real time as audio is being streamed.
  • Both also support custom vocabularies. These are pretty easy to set up, and improve transcription accuracy for domain-specific terms.
  • AWS Transcribe supports custom language models.
    • You can train a model specifically for your domain to improve accuracy for specialized terminology and speech patterns.
    • A significant amount of domain-specific text data (up to 2 GB) is needed to train the model.
    • This feature is not supported by AWS Transcribe Medical.
Scroll to Top