Source code for transcript_file_format.structs.sentence.speaker_annotation

#!/usr/bin/env python

from __future__ import annotations

import msgspec

from ...custom_types import JSONCompatType

###############################################################################


[docs] class SpeakerAnnotation(msgspec.Struct): name: str meta: JSONCompatType | None = None