Represents a segment in the transcript.
| 149 | |
| 150 | |
| 151 | class TranscriptSegment(BaseModel): |
| 152 | """Represents a segment in the transcript.""" |
| 153 | |
| 154 | start: float |
| 155 | end: float |
| 156 | text: str |
| 157 | words: List[TranscriptWord] |
| 158 | |
| 159 | |
| 160 | class Transcription(BaseModel): |
no outgoing calls
no test coverage detected