did some cli output cleanup, and fixed the test pipeline aswell as added a few tests

This commit is contained in:
2025-12-16 18:15:40 +01:00
parent 9b88f4719f
commit b511b75db7
5 changed files with 111 additions and 44 deletions
+6 -2
View File
@@ -209,10 +209,14 @@ electron.ipcMain.on("file_submit", async (event, args) => {
await mapFunctions.get("extract-speaker-snippets").function({audioPath: audiopath, jsonPath: transcriptpath }).then(resp => {
mainWindow.webContents.send("submitSpeaker", resp)
console.log(resp)
mainWindow.webContents.send("submitSpeaker", resp)
console.log(resp)
}).catch(err => {
mainWindow.webContents.send("error", err)
return
})
// TODO actually implement this functionality
// Module to get the first few lines for each speaker to send to the frontend
// await mapFunctions.get("speaker-getter-idfk").function(transcriptpath).then(resp => {