Mbonea commited on
Commit
ccb5349
·
1 Parent(s): c69d482

changed field name

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