15 lines
281 B
Python
15 lines
281 B
Python
from __future__ import annotations
|
|
|
|
from cpv3.common.schemas import Schema
|
|
from cpv3.modules.transcription.schemas import Document
|
|
|
|
|
|
class CaptionsRequest(Schema):
|
|
folder: str
|
|
video_s3_path: str
|
|
transcription: Document
|
|
|
|
|
|
class CaptionsResponse(Schema):
|
|
result: str
|