Krea 2 Moodboards

Krea 2 Moodboards is a compact ComfyUI workflow designed to A/B test style directions using Krea's moodboard–conditioned text-to-image generation. Each of the six labeled sections (Ethereal Romanticism, Digitally Broken Realism, Neon Dreams, Technicolor Madhouse, Country Club Surrealism, Liminal Nightmare) runs the same pipeline: PrimitiveNode inputs feed a Krea2ImageNode, and results are written by a dedicated SaveImage node. MarkdownNote nodes annotate each group so you can navigate quickly. Because each section has its own prompt, moodboard_id, moodboard_strength, and save target, you can compare multiple visual directions from one run without cross‑contamination.

Technically, the PrimitiveNode instances hold strings and numbers (prompt text, moodboard ID UUIDs, strength values, optional seed/size if exposed). Those values flow into Krea2ImageNode, which sends a generation request to the Krea 2 image API conditioned by the provided moodboard_id. The SaveImage at the end of each branch writes clean, labeled outputs using per‑section filename prefixes. ComfyUI’s bypass toggle lets you disable inactive sections for faster iteration. The workflow ships with example prompts and moodboard IDs in the Author Notes (e.g., 7947e7b8-750e-4dbd-877a-d554d86f85d1, 176345d7-b1e0-4b44-bf06-ce4d7b8b8062, aa2178a3-36f1-47f6-8d2a-c3578d5329af), making it easy to drop in a style and start testing immediately.

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.

GET https://comfy.org/workflows/download/825e6fb23c2c.json
Fetching workflow JSON…

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

# Install (beta)
pip install comfy-sdk        # Python
npm i @comfyorg/sdk          # TypeScript

# Run this workflow (Python)
from comfy_sdk import Comfy

client = Comfy(api_key="comfyui-...")
wf = client.workflows.from_file("workflow_api.json")
job = client.run(wf)
for output in job.get_outputs("<output-node-id>"):
    output.to_file(output.name)

The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key

FAQ

Frequently Asked Questions

View all workflows
Character
Cinematic
Image to Video
Lip Sync
Multiple Angles
Portrait
Style Reference
Style Transfer
Text to Video
Video Generation
Video
Showing 30 of 30 templates