Skip to content

Commit 9fe01fc

Browse files
authored
Merge pull request #162 from CyberSecDef/copilot/fix-status-indicator-pipeline-steps
Add missing pipeline steps to frontend status indicator
2 parents 477aadf + 3555e39 commit 9fe01fc

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

static/js/script.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,18 @@ $(function () {
260260
if (combined.indexOf("revise") !== -1 || combined.indexOf("revision") !== -1) {
261261
return "Applying Chapter Revisions";
262262
}
263+
if (combined.indexOf("voice & dialogue") !== -1 || combined.indexOf("voice and dialogue") !== -1) {
264+
return "Differentiating character voices";
265+
}
266+
if (combined.indexOf("human oddities") !== -1) {
267+
return "Adding human texture";
268+
}
269+
if (combined.indexOf("metaphor reduction") !== -1) {
270+
return "Reducing metaphor density";
271+
}
272+
if (combined.indexOf("copy edit") !== -1) {
273+
return "Copy editing";
274+
}
263275

264276
return "Prompting LLM";
265277
}

0 commit comments

Comments
 (0)