init: new structure + fix lint errors

This commit is contained in:
Daniil
2026-02-03 02:15:07 +03:00
commit 67e0f22b4f
89 changed files with 7654 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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