comicx / comic /__init__.py
ASTRALK's picture
Upload comic/__init__.py with huggingface_hub
72a3f03 verified
Raw
History Blame Contribute Delete
763 Bytes
"""comic β€” a 10-page (20-panel) comic-book generator.
idea -> Gemma (gatekeeper + story bible + panel script) -> FLUX (20 images) -> reader.
The two model roles, cleanly split:
* Writer (Gemma 4 26B-A4B): ALL text β€” safety check, story bible, per-panel
scene + caption. Never renders images.
* Artist (FLUX.2 klein): images ONLY β€” never writes text into the image; the
caption is shown separately by the UI.
"""
from .schema import Character, Panel, ComicBible, Comic
from .backends import make_backends, WriterBackend, ArtistBackend
from .engine import generate_comic, GenerateEvent
__all__ = [
"Character", "Panel", "ComicBible", "Comic",
"make_backends", "WriterBackend", "ArtistBackend",
"generate_comic", "GenerateEvent",
]