We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a8e4f3 commit bbb521aCopy full SHA for bbb521a
1 file changed
novelforge/routes/generation/chapters.py
@@ -362,11 +362,11 @@ def _set_step(step_label: str) -> None:
362
if pl not in seen:
363
seen.add(pl)
364
unique.append(p)
365
- recent = unique[-15:]
+ recent_phrases = unique[-15:]
366
_theme_warning = (
367
"BANNED THEMATIC PHRASINGS (already used in prior chapters — "
368
"restate themes in FRESH language, not these exact formulations):\n"
369
- + "\n".join(f'- "{p}"' for p in recent)
+ + "\n".join(f'- "{p}"' for p in recent_phrases)
370
)
371
372
# Combine compression guidance with exposition and theme warnings
0 commit comments