3a15b02 69d1fbe
1
2
3
4
5
6
7
8
9
10
11
from pydantic import BaseModel from typing import List class AlignmentRequest(BaseModel): phonemes: List[str] words: List[str] class CorrectionRequest(BaseModel): transcript: str