From 3e24036c71825be4f497b351a6fd4039acb864e5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 9 Apr 2026 00:20:55 +0000 Subject: [PATCH 1/2] Initial plan From 3555e39ec4876e060f623f4a4cf06a56e2497275 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 9 Apr 2026 00:22:52 +0000 Subject: [PATCH 2/2] Add missing pipeline steps to inferStatusFromRequestEntry Agent-Logs-Url: https://github.com/CyberSecDef/NovelForge/sessions/43b4819c-c524-44d5-80e6-7a3faac8b911 Co-authored-by: CyberSecDef <17597068+CyberSecDef@users.noreply.github.com> --- static/js/script.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/static/js/script.js b/static/js/script.js index cc67b2a..4b01189 100644 --- a/static/js/script.js +++ b/static/js/script.js @@ -260,6 +260,18 @@ $(function () { if (combined.indexOf("revise") !== -1 || combined.indexOf("revision") !== -1) { return "Applying Chapter Revisions"; } + if (combined.indexOf("voice & dialogue") !== -1 || combined.indexOf("voice and dialogue") !== -1) { + return "Differentiating character voices"; + } + if (combined.indexOf("human oddities") !== -1) { + return "Adding human texture"; + } + if (combined.indexOf("metaphor reduction") !== -1) { + return "Reducing metaphor density"; + } + if (combined.indexOf("copy edit") !== -1) { + return "Copy editing"; + } return "Prompting LLM"; }