Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
180 changes: 180 additions & 0 deletions examples/qwen_image.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@
{
"last_node_id": 10,
"last_link_id": 10,
"nodes": [
{
"id": 1,
"type": "Load Diffusion Model",
"pos": [50, 50],
"size": {"0": 315, "1": 58},
"flags": {},
"order": 0,
"mode": 0,
"outputs": [
{"name": "MODEL", "type": "MODEL", "links": [1], "shape": 3}
],
"properties": {"Node name for S&R": "Load Diffusion Model"},
"widgets_values": ["qwen_image_fp8_e4m3fn.safetensors"]
},
{
"id": 2,
"type": "TeaCache",
"pos": [400, 50],
"size": {"0": 315, "1": 150},
"flags": {},
"order": 1,
"mode": 0,
"inputs": [
{"name": "model", "type": "MODEL", "link": 1}
],
"outputs": [
{"name": "model", "type": "MODEL", "links": [2], "shape": 3}
],
"properties": {"Node name for S&R": "TeaCache"},
"widgets_values": ["qwen-image", 0.35, 0.1, 1.0, "cuda"]
},
{
"id": 3,
"type": "Load CLIP",
"pos": [50, 150],
"size": {"0": 315, "1": 58},
"flags": {},
"order": 2,
"mode": 0,
"outputs": [
{"name": "CLIP", "type": "CLIP", "links": [3], "shape": 3}
],
"properties": {"Node name for S&R": "Load CLIP"},
"widgets_values": ["qwen_2.5_vl_7b_fp8_scaled.safetensors"]
},
{
"id": 4,
"type": "Load VAE",
"pos": [50, 250],
"size": {"0": 315, "1": 58},
"flags": {},
"order": 3,
"mode": 0,
"outputs": [
{"name": "VAE", "type": "VAE", "links": [4], "shape": 3}
],
"properties": {"Node name for S&R": "Load VAE"},
"widgets_values": ["qwen_image_vae.safetensors"]
},
{
"id": 5,
"type": "CLIP Text Encoder",
"pos": [400, 250],
"size": {"0": 315, "1": 100},
"flags": {},
"order": 4,
"mode": 0,
"inputs": [
{"name": "clip", "type": "CLIP", "link": 3}
],
"outputs": [
{"name": "CONDITIONING", "type": "CONDITIONING", "links": [5], "shape": 3}
],
"properties": {"Node name for S&R": "CLIP Text Encoder"},
"widgets_values": ["A beautiful landscape with mountains and a lake"]
},
{
"id": 6,
"type": "EmptySD3LatentImage",
"pos": [750, 50],
"size": {"0": 315, "1": 100},
"flags": {},
"order": 5,
"mode": 0,
"outputs": [
{"name": "LATENT", "type": "LATENT", "links": [6], "shape": 3}
],
"properties": {"Node name for S&R": "EmptySD3LatentImage"},
"widgets_values": [1024, 1024, 1]
},
{
"id": 7,
"type": "KSampler",
"pos": [750, 200],
"size": {"0": 315, "1": 262},
"flags": {},
"order": 6,
"mode": 0,
"inputs": [
{"name": "model", "type": "MODEL", "link": 2},
{"name": "positive", "type": "CONDITIONING", "link": 5},
{"name": "negative", "type": "CONDITIONING", "link": 7},
{"name": "latent_image", "type": "LATENT", "link": 6}
],
"outputs": [
{"name": "LATENT", "type": "LATENT", "links": [8], "shape": 3}
],
"properties": {"Node name for S&R": "KSampler"},
"widgets_values": [12345, "fixed", 20, 7.0, "euler", "normal", 1.0]
},
{
"id": 8,
"type": "CLIP Text Encoder",
"pos": [400, 400],
"size": {"0": 315, "1": 100},
"flags": {},
"order": 7,
"mode": 0,
"inputs": [
{"name": "clip", "type": "CLIP", "link": 3}
],
"outputs": [
{"name": "CONDITIONING", "type": "CONDITIONING", "links": [7], "shape": 3}
],
"properties": {"Node name for S&R": "CLIP Text Encoder"},
"widgets_values": [""]
},
{
"id": 9,
"type": "VAE Decode",
"pos": [1100, 200],
"size": {"0": 210, "1": 46},
"flags": {},
"order": 8,
"mode": 0,
"inputs": [
{"name": "samples", "type": "LATENT", "link": 8},
{"name": "vae", "type": "VAE", "link": 4}
],
"outputs": [
{"name": "IMAGE", "type": "IMAGE", "links": [9], "shape": 3}
],
"properties": {"Node name for S&R": "VAE Decode"}
},
{
"id": 10,
"type": "Save Image",
"pos": [1350, 200],
"size": {"0": 315, "1": 58},
"flags": {},
"order": 9,
"mode": 0,
"inputs": [
{"name": "images", "type": "IMAGE", "link": 9}
],
"properties": {"Node name for S&R": "Save Image"},
"widgets_values": ["qwen_image_teacache"]
}
],
"links": [
[1, 1, 0, 2, 0, "MODEL"],
[2, 2, 0, 7, 0, "MODEL"],
[3, 3, 0, 5, 0, "CLIP"],
[3, 3, 0, 8, 0, "CLIP"],
[4, 4, 0, 9, 1, "VAE"],
[5, 5, 0, 7, 1, "CONDITIONING"],
[6, 6, 0, 7, 3, "LATENT"],
[7, 8, 0, 7, 2, "CONDITIONING"],
[8, 7, 0, 9, 0, "LATENT"],
[9, 9, 0, 10, 0, "IMAGE"]
],
"groups": [],
"config": {},
"extra": {},
"version": 0.4
}
Loading