Changed location of the output type value in the response package

This commit is contained in:
2025-12-15 17:07:07 +01:00
parent 7494e13c8c
commit aee1428cb6
+3 -3
View File
@@ -49,15 +49,15 @@ function checkBoxes() {
const sendingPackage = {
"video": {
"module":"extraction-video-to-audio",
"inputVideoPath": pathTest,
"outputType": outputType.value
"inputVideoPath": pathTest
},
"transcription": {
"module": transcriptionType.value
},
"document": {
"module":aiType.value,
"styles": selectedStyles
"styles": selectedStyles,
"outputType": outputType.value
}
};
window.submit.submit(sendingPackage)