From 948ddb43106ec3c7583778d6001851f99fc549ab Mon Sep 17 00:00:00 2001 From: MikeHughes-BIN Date: Mon, 15 Dec 2025 16:06:18 +0100 Subject: [PATCH] the old report type was still used --- main.js | 2 +- storage/documentType/meetingReport.json | 33 ------------------------- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 storage/documentType/meetingReport.json diff --git a/main.js b/main.js index 2e80d3e..6b9fe1c 100644 --- a/main.js +++ b/main.js @@ -185,7 +185,7 @@ electron.ipcMain.on("file_submit", async (event, args) => { for (let i = 0; i < args.document.styles.length; i++) { console.log(`\n\n Running the LLM for Document Style ${i+1}`); - await mapFunctions.get("module-handler").function(args.document.module, {inputTranscriptPath: transcriptpath, documentTypePath: "./storage/documentType/meetingReport.json", language: "en"}).then(resp => { + await mapFunctions.get("module-handler").function(args.document.module, {inputTranscriptPath: transcriptpath, documentTypePath: "./storage/documentType/standard_meeting_report.txt", language: "en"}).then(resp => { console.log(resp); transcriptpath = resp curstep++ diff --git a/storage/documentType/meetingReport.json b/storage/documentType/meetingReport.json deleted file mode 100644 index 04626df..0000000 --- a/storage/documentType/meetingReport.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "FORMAT": "markdown", - "GOAL":"Generate a structured meeting report (Markdown). **Output ONLY:** final .md. No meta.", - "STRUCTURE": { - "titlepage": ["title","date","start","end","duration","location","host","participants"], - "toc": "[section](#anchor) — HH:MM:SS", - "section": { - "h2": " — HH:MM:SS", - "summary": "1 sentence", - "key_points": "<=5 bullets, quotes optional", - "decisions": "list: text | owner | due", - "actions": "table: id | task | owner | due | status" - }, - "exec_summary": "3 short sentences", - "consolidated": ["decisions", "actions"], - "appendix": "optional" - }, - "STYLE": { - "tone": "neutral, concise", - "ts_format": "HH:MM:SS", - "no_meta": true - }, - "PROCESS": { - "timestamps": "use if present; else estimate minimal", - "speakers": "use labels; else Speaker X", - "long_transcripts": "chunk → summarize → merge", - "unclear": "UNKLAR:" - }, - - "JSON_OUTPUT_OPTIONAL": true, - - "PROMPT_SNIPPET": "Generate meeting report in markdown using STRUCTURE and STYLE. Output only the report." -} \ No newline at end of file