6 lines
201 B
Python
6 lines
201 B
Python
|
from pydantic import BaseModel, Field
|
||
|
from typing import List, Optional, Literal
|
||
|
|
||
|
class GetTranscriptionRequest(BaseModel):
|
||
|
type: Optional[List[str]] = None
|
||
|
provider: Optional[List[str]] = None
|