MedicalScribeTranscriptItem¶
Structure Class¶
MedicalScribeTranscriptItem
dataclass
¶
A word, phrase, or punctuation mark in your transcription output, along with various associated attributes, such as confidence score, type, and start and end times.
Attributes¶
begin_audio_time
class-attribute
instance-attribute
¶
begin_audio_time: float = 0
The start time, in milliseconds, of the transcribed item.
confidence
class-attribute
instance-attribute
¶
confidence: float | None = None
The confidence score associated with a word or phrase in your transcript.
Confidence scores are values between 0 and 1. A larger value indicates a higher probability that the identified item correctly matches the item spoken in your media.
content
class-attribute
instance-attribute
¶
content: str | None = None
The word, phrase or punctuation mark that was transcribed.
end_audio_time
class-attribute
instance-attribute
¶
end_audio_time: float = 0
The end time, in milliseconds, of the transcribed item.
type
class-attribute
instance-attribute
¶
type: MedicalScribeTranscriptItemType | None = None
The type of item identified. Options are: PRONUNCIATION (spoken words)
and PUNCTUATION.
vocabulary_filter_match
class-attribute
instance-attribute
¶
vocabulary_filter_match: bool | None = None
Indicates whether the specified item matches a word in the vocabulary
filter included in your configuration event. If true, there is a
vocabulary filter match.