Represents a word in the transcript.
| 141 | |
| 142 | |
| 143 | class TranscriptWord(BaseModel): |
| 144 | """Represents a word in the transcript.""" |
| 145 | |
| 146 | start: float |
| 147 | end: float |
| 148 | word: str |
| 149 | |
| 150 | |
| 151 | class TranscriptSegment(BaseModel): |
no outgoing calls
no test coverage detected