diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-06 16:15:53 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-06 16:15:53 +0300 |
| commit | df87a6af7bf1beea8dcc8bbeb5f299025cb2e8f4 (patch) | |
| tree | b21627409c7778a6e70a60f3f2b312f68df44a47 /cmd | |
| parent | 85fd2a50049ae9e7efad6ef0b45d3f2a754fe340 (diff) | |
feat: --narrate opt-in narration, panel variety mandate, v0.23.0v0.23.0
- Add --narrate flag (default false); narration is now opt-in to save TTS quota
- Add VARIETY MANDATE to story page prompts: each panel must differ in camera
angle, pose, location, lighting, and foreground — prevents repeated compositions
- Wire NarrateEnabled through RunnerConfig and main.go
- Update README: --narrate flag, updated output file table, narrator voice examples
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/totalrecall/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/totalrecall/main.go b/cmd/totalrecall/main.go index 13fa1bd..c991378 100644 --- a/cmd/totalrecall/main.go +++ b/cmd/totalrecall/main.go @@ -115,6 +115,7 @@ func runCommand(cmd *cobra.Command, args []string, flags *cli.Flags) error { Theme: flags.StoryTheme, UltraRealistic: storyUltraRealistic(flags.StoryNoUltraRealistic), NarratorVoice: flags.NarratorVoice, + NarrateEnabled: flags.NarrateEnabled, Slug: flags.StorySlug, }) if err := runner.Run(flags.StoryFile); err != nil { |
