From b9ee95a66b94c8dc7fca946a2d464ed5d3ad86b1 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 3 Apr 2026 23:02:41 +0300 Subject: =?UTF-8?q?feat:=20comic=20pipeline=20v0.10.0=20=E2=80=94=20iterat?= =?UTF-8?q?ive=20chaining,=20title=20slugs,=20comics=20subfolder,=2016:9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Iterative image chaining: each page receives cover + prev page as pixel-level reference (multimodal) so the model copies appearance directly, not from text alone - --story-theme flag overrides random genre pick per run - Gemini now generates a short comic title (---COMIC TITLE--- separator) used as the output slug; all files named _cover.png, _page_1.png, etc. - All comic output stored under comics// subdirectory - Aspect ratio changed to 16:9 (ThinkPad X1 Gen 9 screen fit; 16:10 not supported) - Bulgarian language rule moved to top of every prompt for stronger compliance - Dynamic story-specific cover masthead + publisher logo badge matching story genre - --story-theme "a thrilling space..." forces genre without touching random pool Co-Authored-By: Claude Sonnet 4.6 --- cmd/totalrecall/main.go | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd') diff --git a/cmd/totalrecall/main.go b/cmd/totalrecall/main.go index 5363190..d6abcf5 100644 --- a/cmd/totalrecall/main.go +++ b/cmd/totalrecall/main.go @@ -68,6 +68,7 @@ func runCommand(cmd *cobra.Command, args []string, flags *cli.Flags) error { ImageTextModel: flags.NanoBananaTextModel, OutputDir: ".", Style: flags.StoryStyle, + Theme: flags.StoryTheme, NarratorVoice: flags.NarratorVoice, }) return runner.Run(flags.StoryFile) -- cgit v1.2.3