Omkar008's picture
adding the code files
9f559c6 verified
raw
history blame contribute delete
243 Bytes
from pydantic import BaseModel
from typing import Optional
class TranscriptionRequest(BaseModel):
output_language: str = "en"
class TranscriptionResponse(BaseModel):
text: str
language: Optional[str]
segments: Optional[list]