tranny / App /Embedding /Schemas.py
Mbonea's picture
testing
32a36b2
raw
history blame
256 Bytes
from typing import Optional
from pydantic import BaseModel
class BaseRequest(BaseModel):
userId: int
taskId: str
fileName: str
youtubeLink: Optional[str]
telegramId: Optional[str]
class GetTranscriptions(BaseModel):
userId: int