summaryrefslogtreecommitdiff
path: root/internal/cli/command.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cli/command.go')
-rw-r--r--internal/cli/command.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/cli/command.go b/internal/cli/command.go
index ad62272..8402481 100644
--- a/internal/cli/command.go
+++ b/internal/cli/command.go
@@ -69,6 +69,7 @@ func setupFlags(cmd *cobra.Command, flags *Flags) {
cmd.Flags().StringVar(&flags.StoryStyle, "story-style", "", "Art style for comic pages (default: random). E.g. \"ultra realistic comic strip with photographic detail and dramatic lighting\"")
cmd.Flags().StringVar(&flags.StoryTheme, "story-theme", "", "Genre/theme for the story (default: random). E.g. \"a thrilling space adventure with aliens and spaceships\"")
cmd.Flags().BoolVar(&flags.StoryNoUltraRealistic, "no-ultra-realistic", false, "Disable photorealistic rendering requirement; produces standard comic-book style output")
+ cmd.Flags().BoolVar(&flags.StoryUltraRealistic, "ultra-realistic", false, "Force photorealistic rendering for all pages (overrides the default random 50/50 pick)")
cmd.Flags().StringVar(&flags.StorySlug, "story-slug", "",
"Force the output directory slug for --story (e.g. \"ai-jungle-quest\"). "+
"Use this to repair a partial run: existing pages are skipped, missing ones are generated.")