Mbonea commited on
Commit
49b4ffb
1 Parent(s): 0278926

ADDED MORE FIELDS

Browse files
Files changed (1) hide show
  1. App/Transcription/Schemas.py +3 -0
App/Transcription/Schemas.py CHANGED
@@ -16,7 +16,10 @@ class BaseTranscription(BaseModel):
16
  duration: int = 0
17
  language: str = "-"
18
  file_name: str = "-"
 
 
19
  task_id: str
 
20
  transcription_state: str = Field(default="SUCCESS", alias="state")
21
  # content: list = []
22
 
 
16
  duration: int = 0
17
  language: str = "-"
18
  file_name: str = "-"
19
+ tl_file_id: str = "-"
20
+ youtubeLink: str = "-"
21
  task_id: str
22
+
23
  transcription_state: str = Field(default="SUCCESS", alias="state")
24
  # content: list = []
25