From 789ecd3a3178221b6cca9540decd13f543200795 Mon Sep 17 00:00:00 2001 From: MikeHughes-BIN Date: Mon, 15 Dec 2025 14:00:26 +0100 Subject: [PATCH] Update document processing to use prompts from styles and add structured meeting report template --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 4f71d81..39c408d 100644 --- a/main.js +++ b/main.js @@ -183,7 +183,7 @@ electron.ipcMain.on("file_submit", async (event, args) => { // TODO implement documentation module // This code handles the Text to Document processing module call for (let i = 0; i < args.document.styles.length; i++) { - await mapFunctions.get("module-handler").function(args.document.module, {inputTranscriptPath: transcriptpath, documentTypePath: "./storage/documentType/standard_meeting_report.txt", language: "en"}).then(resp => { // TODO add language handling from frontend + await mapFunctions.get("module-handler").function(args.document.module, {prompt: args.document.styles[i].prompt, transcript: transcriptpath}).then(resp => { console.log(resp); transcriptpath = resp curstep++