Currently we only have the standard meeting document and the config right now prevents the programm from running. Can be adapted later

This commit is contained in:
MikeHughes-BIN
2025-12-06 16:43:32 +01:00
parent 05c04aaef2
commit 0d3535128d
2 changed files with 28 additions and 30 deletions
+3 -1
View File
@@ -183,7 +183,9 @@ 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, {prompt: args.document.styles[i].prompt, transcript: transcriptpath}).then(resp => {
console.log(`\n\n Running the LLM for Document Style ${i+1}`);
await mapFunctions.get("module-handler").function(args.document.module, {inputTranscriptPath: transcriptpath, documentTypePath: "/Users/mikehughes/PROJ/video2document/storage/documentType/meetingReport.json", language: "en"}).then(resp => {
console.log(resp);
transcriptpath = resp
curstep++