So prove it. If you are in good faith arguing an AI, via automation can draw a comic script with consistent figures, please tell an AI to draw the images in the first 3 pages of this script I pulled from the comic book script archive:
https://www.comicsexperience.com/wp-content/uploads/2018/09/...
Or if you can't do this, explain why the feature you mentioned cannot do this, and what it or good for?
As long as you're not asking for a zero-shot solution with a single model run three times in a row, this should be entirely doable, though I imagine ensuring the result would require a complex pipeline consisting of:
- An LLM to inflate descriptions in the script to very detailed prompts (equivalent to artist thinking up how characters will look, how the scene is organized);
- A step to generate a representative drawing of every character via txt2img - or more likely, multiple ones, with a multimodal LLM rating adherence to the prompt;
- A step to generate a lot of variations of every character in different poses, using e.g. ControlNet or whatever is currently the SOTA solution used by the Stable Diffuison community to create consistent variations of a character;
- A step to bake all those character variations into a LoRA;
- Finally, scenes would be generated by another call to txt2img, with prompts computed in step 1, and appropriate LoRAs active (this can be handled through prompt too).
Then iterate on that, e.g. maybe additional img2img to force comic book style (with a different SD derivative, most likely), etc.
Point being, every subproblem of the task has many different solutions already developed, with new ones appearing every month - all that's left to have an "AI artist" capable of solving your challenge is to wire the building blocks up. For that, you need just a trivial bit of Python code using existing libraries (e.g. hooking up to ComfyUI), and guess what, GPT-4 and Claude 3.5 Sonnet are quite good at Python.
EDIT: I asked Claude to generate "pseudocode" diagram of the solution from our two comments:
http://www.plantuml.com/plantuml/img/dLLDQnin4BthLmpn9JaafOR...
Each of the nodes here would be like 3-5 real ComfyUI nodes in practice.