tranny / App /Transcription /Schemas.py
Mbonea's picture
added streaming
07fd3f6
raw
history blame
267 Bytes
from pydantic import BaseModel
class TranscriptionMetadata(BaseModel):
duration: int = 0
language: str = "0"
logs: str = 0
percentage: str = "0"
transcription: dict = {}
state: str = "PENDING"
class UserDetails(BaseModel):
userId: str