File size: 243 Bytes
9f559c6
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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]