Files
batch-speech-utils/lib/schema/transciption-template.js
T
2024-06-25 04:32:16 -04:00

26 lines
468 B
JavaScript

const audioRecordingTemplate = {
'parties': {
'N': 0,
'from': '',
'to': ''
},
'duration': 0,
'url': '',
'conversation': {
'as heard': {
'full transcript': '',
'confidence': '',
'transcription vendor': '',
'timestamps': []
},
'after the fact': {
'full transcript': '',
'confidence': '',
'transcription vendor': '',
'timestamps': []
}
}
};
module.exports = audioRecordingTemplate;