NetaYume Lumina Text to Image

The NetaYume Lumina Text to Image workflow is designed to generate high-quality anime-style images with a keen understanding of character details and textures. This workflow utilizes the OmniGen model, which is fine-tuned from the Neta Lumina model on the Danbooru dataset, known for its rich collection of anime imagery. The workflow incorporates several key nodes such as KSampler for sampling, CheckpointLoaderSimple for model loading, and VAEDecode for decoding the latent space into images. This setup allows users to create detailed and vibrant anime images by inputting descriptive text prompts.

Technically, the workflow is structured into three main steps: loading the model, setting the image size, and crafting the prompt. The CheckpointLoaderSimple node is responsible for loading the OmniGen model, while the KSampler node handles the sampling process to ensure high-quality output. The VAEDecode node then translates the latent image data into a final visual output, which is saved using the SaveImage node. This workflow is particularly useful for artists and creators looking to produce anime-style illustrations with precise control over character features and scene composition.

API

Use this workflow from code

Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.

image_netayume_lumina_t2i.json
Fetching workflow JSON…

Run it from TypeScript or Python with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.

// Install (beta)
npm i @comfyorg/sdk

// Run "NetaYume Lumina Text to Image" (TypeScript)
import { Comfy } from "@comfyorg/sdk";

const client = new Comfy({ apiKey: "comfyui-..." });

// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("image_netayume_lumina_t2i_api.json");

const job = await client.run(wf);
await job.getOutputs("9")[0].toFile("output.png"); // SaveImage

The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API).

Comfy Cloud API access requires a plan with an API key.

FAQ

Frequently Asked Questions

View all workflows
Showing 30 of 30 templates