from abc import ABC, abstractmethod from typing import Any, Dict, List class GoldTranscriptProcessor(ABC): """""" @abstractmethod def get_gold_transcript(self, record_id: str) -> List[Dict[str, Any]]: """ Currently the most important dict key is `word` – original transcript word. """