arcacolab commited on
Commit
c4dabe4
ยท
verified ยท
1 Parent(s): ba0d043

Upload 2 files

Browse files
segsmaker_qwen_์กฐ๊ธˆ_์ˆ˜์ • (1).ipynb ADDED
@@ -0,0 +1,258 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "nbformat": 4,
3
+ "nbformat_minor": 0,
4
+ "metadata": {
5
+ "colab": {
6
+ "private_outputs": true,
7
+ "provenance": [],
8
+ "gpuType": "T4"
9
+ },
10
+ "kernelspec": {
11
+ "name": "python3",
12
+ "display_name": "Python 3"
13
+ },
14
+ "language_info": {
15
+ "name": "python"
16
+ },
17
+ "accelerator": "GPU"
18
+ },
19
+ "cells": [
20
+ {
21
+ "cell_type": "markdown",
22
+ "source": [
23
+ "<a href=\"https://github.com/gutris1/segsmaker\">\n",
24
+ " <img alt=\"GitHub repo\" src=\"https://img.shields.io/badge/GitHub-6e5494?style=for-the-badge&logo=github&logoColor=white\"/>\n",
25
+ "</a><br>\n",
26
+ "\n",
27
+ "* civitai api key ๋Š” [์—ฌ๊ธฐ์—์„œ ํ™•์ธ](https://civitai.com/user/account)"
28
+ ],
29
+ "metadata": {
30
+ "id": "COlOWoTOMKSP"
31
+ }
32
+ },
33
+ {
34
+ "cell_type": "code",
35
+ "source": [
36
+ "# @title <b><font color='orange'>WebUI ์„ค์น˜</font></b> {\"display-mode\":\"form\"}\n",
37
+ "\n",
38
+ "Webui = 'ComfyUI' # @param [\"A1111\", \"Forge\", \"ReForge\", \"Forge-Classic\", \"Forge-Neo\", \"ComfyUI\", \"SwarmUI\"]\n",
39
+ "Civitai___Key = '' # @param { type: \"string\", placeholder: \"Civitai API Key (ํ•„์ˆ˜)\" }\n",
40
+ "HF_Read_Token = '' # @param { type: \"string\", placeholder: \"Huggingface READ Token (์„ ํƒ)\" }\n",
41
+ "Mount__GDrive = 'No' # @param [\"Yes\", \"No\"]\n",
42
+ "\n",
43
+ "mount = Mount__GDrive\n",
44
+ "\n",
45
+ "if mount == 'Yes':\n",
46
+ " from google.colab import drive\n",
47
+ " drive.mount('/content/drive')\n",
48
+ "\n",
49
+ "!curl -sLo /content/setup.py https://github.com/gutris1/segsmaker/raw/main/script/KC/setup.py\n",
50
+ "%run /content/setup.py --webui=\"$Webui\" --civitai_key=\"$Civitai___Key\" --hf_read_token=\"$HF_Read_Token\"\n",
51
+ "\n",
52
+ "if mount == 'Yes':\n",
53
+ " from pathlib import Path\n",
54
+ "\n",
55
+ " d = Path('/content/drive/MyDrive/ONECLICK')\n",
56
+ "\n",
57
+ " for n, p in {'model': CKPT, 'lora': LORA, 'vae': VAE, 'embedding': Embeddings}.items():\n",
58
+ " f = d / n\n",
59
+ " f.mkdir(parents=True, exist_ok=True)\n",
60
+ " s = p / f'{n}' # Changed from f'drive-{n}' to f'{n}'\n",
61
+ " s.symlink_to(f, target_is_directory=True)\n",
62
+ "\n",
63
+ " !rm -rf $WebUI_Output\n",
64
+ " o = d / {'ComfyUI': 'comfyui-output', 'SwarmUI': 'swarmui-output'}.get(Webui, 'output')\n",
65
+ " o.mkdir(parents=True, exist_ok=True)\n",
66
+ " WebUI_Output.symlink_to(o, target_is_directory=True)\n",
67
+ "\n",
68
+ " if Webui not in {'ComfyUI', 'SwarmUI'}:\n",
69
+ " wc = WebUI / 'cache'\n",
70
+ " !rm -rf $wc\n",
71
+ " c = d / 'cache'\n",
72
+ " c.mkdir(parents=True, exist_ok=True)\n",
73
+ " wc.symlink_to(c, target_is_directory=True)"
74
+ ],
75
+ "metadata": {
76
+ "id": "_7hnCvJqFrWt"
77
+ },
78
+ "execution_count": null,
79
+ "outputs": []
80
+ },
81
+ {
82
+ "source": [
83
+ "# @title <b><font color='orange'>๋‹ค์šด๋กœ๋“œ</font></b> {\"display-mode\":\"form\"}\n",
84
+ "Extensions_URL = 'https://github.com/ClownsharkBatwing/RES4LYF.git' # @param { \"type\": \"string\", \"placeholder\": \"ํ™•์žฅํ”„๋กœ๊ทธ๋žจ ์ฃผ์†Œ\" }\n",
85
+ "CKPT_URL = '' # @param { \"type\": \"string\", \"placeholder\": \"์ฒดํฌํฌ์ธํŠธ ์ฃผ์†Œ\" }\n",
86
+ "MODEL_NAME = \"์ฃผ์†Œ๋กœ ๋‹ค์šด๋กœ๋“œํ•˜๊ฑฐ๋‚˜ ๋ชจ๋ธ์„ ์„ ํƒํ•ด ์ฃผ์„ธ์š”\" # @param [\"NoobAI-XL-Vpred-v1.0\",\"MINTSDXL_MintChocoChip_B\",\"NoobAI-XL-v1.1\",\"miaomiaoHarem_v14\",\"uncannyValley_uncannyvallyNoob3dV1\",\"illustriousXLPersonalMerge_v30Noob10based\",\"Illustrious-XL-v0.1\",\"animagineXL40_v40\",\"NoobAI-XL-Vpred-v1.0-perpendicular-cyberfix-v2\",\"hesperidesIllustrious_v10\",\"NAI-XL_vpred1.0_2dac_final65\",\"rouwei_v07Vpred\",\"waiNSFWIllustrious_v100\",\"naiXLVpred102d_final\",\"naiXLVpred102d_25dBoost\",\"obsessionIllustrious_vPredV20\",\"Noobai11EQB7\",\"icbinfNoobVpred10_v15P4Edm2\",\"waiIllustriousSDXL_v140\",\"์ฃผ์†Œ๋กœ ๋‹ค์šด๋กœ๋“œํ•˜๊ฑฐ๋‚˜ ๋ชจ๋ธ์„ ์„ ํƒํ•ด ์ฃผ์„ธ์š”\"]\n",
87
+ "LORA_URL = 'https://huggingface.co/PJMixers-Images/lightx2v_Qwen-Image-Lightning-4step-8step-Merge/resolve/main/Qwen-Image-Lightning-4steps-8steps-V1.0-bf16.safetensors' # @param { \"type\": \"string\", \"placeholder\": \"๋กœ๋ผ ์ฃผ์†Œ\" }\n",
88
+ "VAE_URL = 'https://huggingface.co/Comfy-Org/Qwen-Image_ComfyUI/resolve/main/split_files/vae/qwen_image_vae.safetensors' # @param { \"type\": \"string\", \"placeholder\": \"VAE ์ฃผ์†Œ\" }\n",
89
+ "Embeddings_URL = '' # @param { \"type\": \"string\", \"placeholder\": \"์ž„๋ฒ ๋”ฉ ์ฃผ์†Œ\" }\n",
90
+ "Upscalers_URL = 'https://github.com/starinspace/StarinspaceUpscale/releases/download/Models/4xPurePhoto-RealPLSKR.pth' # @param { \"type\": \"string\", \"placeholder\": \"์—…์Šค์ผ€์ผ๋Ÿฌ ์ฃผ์†Œ\" }\n",
91
+ "UNET_URL = '' # @param { \"type\": \"string\", \"placeholder\": \"UNET ์ฃผ์†Œ\" }\n",
92
+ "CLIP_URL = '' # @param { \"type\": \"string\", \"placeholder\": \"CLIP ์ฃผ์†Œ\" }\n",
93
+ "#EXTRA_PATH = '/content/ReForge/models/Stable-diffusion' # @param { \"type\": \"string\", \"placeholder\": \"๊ธฐํƒ€ ๊ฒฝ๋กœ (์˜ˆ:/content/ComfyUI/models/clip_vision)\" }\n",
94
+ "#EXTRA_URL = 'https://civitai.com/api/download/models/1761560?type=Model&format=SafeTensor&size=pruned&fp=fp16' # @param { \"type\": \"string\", \"placeholder\": \"๊ธฐํƒ€ ์ฃผ์†Œ\" }\n",
95
+ "#wan๋“ฑ๊ณผ ๊ณตํ†ต์ž„\n",
96
+ "#@markdown #### <font color=\"white\">QWEN ๊ด€๋ จ ์ถ”๊ฐ€</font>\n",
97
+ "QWEN_URL = 'https://huggingface.co/ariaze/ARAZmixQwen/resolve/main/ARAZmixQwen016_fp8_4steps.safetensors' # @param { \"type\": \"string\", \"placeholder\": \"๋””ํ“จ์ „ ๋ชจ๋ธ ์ฃผ์†Œ\" }\n",
98
+ "QWEN_TE_URL = 'https://huggingface.co/mradermacher/Qwen2.5-VL-7B-Instruct-abliterated-GGUF/resolve/main/Qwen2.5-VL-7B-Instruct-abliterated.Q6_K.gguf' # @param { \"type\": \"string\", \"placeholder\": \"ํ…์ŠคํŠธ ์ธ์ฝ”๋” ์ฃผ์†Œ\" }\n",
99
+ "\n",
100
+ "if Webui == \"Forge-Neo\":\n",
101
+ " QWEN_PATH = '/content/Forge-Neo/models/Stable-diffusion'\n",
102
+ " QWEN_TE = '/content/Forge-Neo/models/text_encoder'\n",
103
+ "if Webui == \"ComfyUI\":\n",
104
+ " QWEN_PATH = '/content/ComfyUI/models/diffusion_models'\n",
105
+ " QWEN_TE = '/content/ComfyUI/models/text_encoders'\n",
106
+ "\n",
107
+ "\n",
108
+ "\n",
109
+ "\n",
110
+ "''' QWEN '''\n",
111
+ "%cd -q $QWEN_PATH\n",
112
+ "%download $QWEN_URL\n",
113
+ "\n",
114
+ "''' QWEN_TE '''\n",
115
+ "%cd -q $QWEN_TE\n",
116
+ "%download $QWEN_TE_URL\n",
117
+ "\n",
118
+ "\n",
119
+ "use_controlnet = False # @param {\"type\":\"boolean\"}\n",
120
+ "\n",
121
+ "''' These are placeholders for commands with empty inputs. '''\n",
122
+ "''' Replace them with actual values or skip/delete this cell. '''\n",
123
+ "\n",
124
+ "\n",
125
+ "''' SD Extensions / ComfyUI Custom Nodes '''\n",
126
+ "%cd -q $Extensions\n",
127
+ "!git clone $Extensions_URL\n",
128
+ "\n",
129
+ "''' VAE '''\n",
130
+ "%cd -q $VAE\n",
131
+ "%download $VAE_URL\n",
132
+ "\n",
133
+ "''' Embeddings '''\n",
134
+ "%cd -q $Embeddings\n",
135
+ "%download $Embeddings_URL\n",
136
+ "\n",
137
+ "''' Upscalers '''\n",
138
+ "%cd -q $Upscalers\n",
139
+ "%download $Upscalers_URL\n",
140
+ "\n",
141
+ "''' FLUX Unet '''\n",
142
+ "%cd -q $UNET\n",
143
+ "%download $UNET_URL\n",
144
+ "\n",
145
+ "''' FLUX Clip '''\n",
146
+ "%cd -q $CLIP\n",
147
+ "%download $CLIP_URL\n",
148
+ "\n",
149
+ "''' LORA '''\n",
150
+ "%cd -q $LORA\n",
151
+ "%download $LORA_URL\n",
152
+ "\n",
153
+ "''' Checkpoint '''\n",
154
+ "%cd -q $CKPT\n",
155
+ "%download $CKPT_URL\n",
156
+ "\n",
157
+ "''' Checkpoint1 '''\n",
158
+ "%cd -q $CKPT\n",
159
+ "%download https://huggingface.co/arcacolab/models/resolve/main/{MODEL_NAME}.safetensors\n",
160
+ "\n",
161
+ "#''' ๊ธฐํƒ€ '''\n",
162
+ "#%cd -q $EXTRA_PATH\n",
163
+ "#%download $EXTRA_URL\n",
164
+ "\n",
165
+ "''' Controlnet '''\n",
166
+ "if use_controlnet:\n",
167
+ " %run $Controlnet_Widget"
168
+ ],
169
+ "cell_type": "code",
170
+ "metadata": {
171
+ "id": "kbAFiWy4R0Q8"
172
+ },
173
+ "execution_count": null,
174
+ "outputs": []
175
+ },
176
+ {
177
+ "source": [
178
+ "# @title <b><font color='orange'>WebUI ์‹คํ–‰</font></b> {\"display-mode\":\"form\"}\n",
179
+ "\n",
180
+ "#Webui = 'ReForge' # @param [\"A1111\", \"Forge\", \"ComfyUI\", \"ReForge\", \"SwarmUI\"]\n",
181
+ "Ngrok_Token = '' # @param {type:\"string\", placeholder:\"ngrok ํ† ํฐ (์„ ํƒ ์‚ฌํ•ญ)\"}\n",
182
+ "Zrok_Token = '' # @param {type:\"string\", placeholder:\"zrok ํ† ํฐ (์„ ํƒ ์‚ฌํ•ญ)\"}\n",
183
+ "Custom_Args = '' # @param {type:\"string\", placeholder:\"์ถ”๊ฐ€ ์ธ์ž (์„ ํƒ ์‚ฌํ•ญ)\"}\n",
184
+ "\n",
185
+ "\n",
186
+ "# WebUI ๊ฐ’์— ๋”ฐ๋ฅธ ์ธ์ž ์„ค์ •\n",
187
+ "args = \"\"\n",
188
+ "if Webui == \"A1111\":\n",
189
+ " args = \"--xformers --always-offload-from-vram\"\n",
190
+ "elif Webui == \"Forge\":\n",
191
+ " args = \"--disable-xformers --opt-sdp-attention --cuda-stream --always-offload-from-vram\"\n",
192
+ "elif Webui == \"ComfyUI\":\n",
193
+ " args = \"--dont-print-server --preview-method auto --use-pytorch-cross-attention\"\n",
194
+ "elif Webui == \"ReForge\":\n",
195
+ " args = \"--xformers --cuda-stream --always-offload-from-vram --always-high-vram\"\n",
196
+ "elif Webui == \"SwarmUI\":\n",
197
+ " args = \"--launch_mode none\"\n",
198
+ "elif Webui == \"Forge-Classic\":\n",
199
+ " args = \"--xformers --cuda-stream --persistent-patches --always-offload-from-vram\"\n",
200
+ "elif Webui == \"Forge-Neo\":\n",
201
+ " args = \"--xformers --cuda-stream --always-offload-from-vram\"\n",
202
+ "\n",
203
+ "# ํ† ํฐ ๋ฐ ์‚ฌ์šฉ์ž ์ง€์ • ์ธ์ž ์ถ”๊ฐ€\n",
204
+ "if Ngrok_Token:\n",
205
+ " args += f\" --N={Ngrok_Token}\"\n",
206
+ "if Zrok_Token:\n",
207
+ " args += f\" --Z={Zrok_Token}\"\n",
208
+ "if Custom_Args:\n",
209
+ " args += f\" {Custom_Args}\"\n",
210
+ "\n",
211
+ "# segsmaker.py ์‹คํ–‰\n",
212
+ "%cd -q $WebUI\n",
213
+ "%run segsmaker.py {args}"
214
+ ],
215
+ "cell_type": "code",
216
+ "metadata": {
217
+ "id": "T4bewFsHWUcV"
218
+ },
219
+ "execution_count": null,
220
+ "outputs": []
221
+ },
222
+ {
223
+ "cell_type": "markdown",
224
+ "source": [
225
+ "##์‹คํ–‰์ธ์ž ๋ฆฌ์ŠคํŠธ(์ด๋ฏธ ์„ค์ •๋˜์–ด ์žˆ์Œ) :\n",
226
+ "- **A1111** = `--xformers`\n",
227
+ "- **Forge** = `--disable-xformers --opt-sdp-attention --cuda-stream`\n",
228
+ "- **ReForge** = `--xformers --cuda-stream`\n",
229
+ "- **Forge-Classic** = `--xformers --cuda-stream --persistent-patches`\n",
230
+ "- **Forge-Neo** = `--xformers --cuda-stream`\n",
231
+ "- **ComfyUI** = `--dont-print-server --use-pytorch-cross-attention`\n",
232
+ "- **SwarmUI** = `--launch_mode none`\n",
233
+ "<br><br>\n",
234
+ "\n",
235
+ "ComfyUI์˜ ๊ฒฝ์šฐ '--skip-comfyui-check'์„ ์ถ”๊ฐ€ํ•˜์—ฌ ์‚ฌ์šฉ์ž ์ง€์ • ๋…ธ๋“œ ์ข…์†์„ฑ ๊ฒ€์‚ฌ๋ฅผ ๊ฑด๋„ˆ๋›ธ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค\n",
236
+ "\n",
237
+ "NGROK ํ„ฐ๋„์„ ์‹œ์ž‘ํ•˜๋ ค๋ฉด **ngrok ํ† ํฐ**์„ ์ž…๋ ฅํ•˜์„ธ์š”<br>\n",
238
+ "ZROK ํ„ฐ๋„์„ ์‹œ์ž‘ํ•˜๋ ค๋ฉด **zrok ํ† ํฐ**์„ ์ž…๋ ฅํ•˜์„ธ์š”"
239
+ ],
240
+ "metadata": {
241
+ "id": "3egB8ylTisUa"
242
+ }
243
+ },
244
+ {
245
+ "cell_type": "markdown",
246
+ "source": [
247
+ "<a href=\"https://colab.research.google.com/drive/1yoq5el0xs34qtMfg-ivRnPWqUTQ-i1im?usp=sharing\">forge/reforge</a>\n",
248
+ "\n",
249
+ "\n",
250
+ "\n",
251
+ "<a href=\"https://colab.research.google.com/drive/1nop11zn46qS1k9H9dA_jznbSZSGa0hWp?usp=sharing\">comfyui</a>"
252
+ ],
253
+ "metadata": {
254
+ "id": "7CXfg_Dg-vZz"
255
+ }
256
+ }
257
+ ]
258
+ }
ํ…Œ์ŠคํŠธ (1).json ADDED
@@ -0,0 +1,3794 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id": "60f77b06-9d4d-4ce1-9850-fdb39cca312d",
3
+ "revision": 0,
4
+ "last_node_id": 184,
5
+ "last_link_id": 1683,
6
+ "nodes": [
7
+ {
8
+ "id": 22,
9
+ "type": "CLIPTextEncode",
10
+ "pos": [
11
+ 1110,
12
+ 490
13
+ ],
14
+ "size": [
15
+ 400,
16
+ 170
17
+ ],
18
+ "flags": {
19
+ "collapsed": true
20
+ },
21
+ "order": 30,
22
+ "mode": 0,
23
+ "inputs": [
24
+ {
25
+ "name": "clip",
26
+ "type": "CLIP",
27
+ "link": 20
28
+ },
29
+ {
30
+ "name": "text",
31
+ "type": "STRING",
32
+ "widget": {
33
+ "name": "text"
34
+ },
35
+ "link": 16
36
+ }
37
+ ],
38
+ "outputs": [
39
+ {
40
+ "name": "CONDITIONING",
41
+ "type": "CONDITIONING",
42
+ "slot_index": 0,
43
+ "links": [
44
+ 1031
45
+ ]
46
+ }
47
+ ],
48
+ "title": "Qwen CLIP Text Encode (Negative Prompt)",
49
+ "properties": {
50
+ "cnr_id": "comfy-core",
51
+ "ver": "0.3.51",
52
+ "Node name for S&R": "CLIPTextEncode",
53
+ "ue_properties": {
54
+ "widget_ue_connectable": {},
55
+ "version": "7.1",
56
+ "input_ue_unconnectable": {}
57
+ }
58
+ },
59
+ "widgets_values": [
60
+ "oversaturated colors, low quality, cartoon, cgi, 3d render, unrealistic lighting, plastic texture, airbrushed skin, harsh shadows, watermark, text, Beauty mark, Beauty spot, mole, missing fingers, too few toes, too many toes, missing toes, worst feet, cartoon, anime, drawing, painting, illustration, mosaic."
61
+ ],
62
+ "color": "#322",
63
+ "bgcolor": "#533",
64
+ "shape": 1
65
+ },
66
+ {
67
+ "id": 6,
68
+ "type": "OverrideCLIPDevice",
69
+ "pos": [
70
+ 610,
71
+ 420
72
+ ],
73
+ "size": [
74
+ 380,
75
+ 60
76
+ ],
77
+ "flags": {},
78
+ "order": 26,
79
+ "mode": 4,
80
+ "inputs": [
81
+ {
82
+ "name": "clip",
83
+ "type": "CLIP",
84
+ "link": 5
85
+ }
86
+ ],
87
+ "outputs": [
88
+ {
89
+ "name": "CLIP",
90
+ "type": "CLIP",
91
+ "links": [
92
+ 9
93
+ ]
94
+ }
95
+ ],
96
+ "properties": {
97
+ "cnr_id": "ComfyUI_ExtraModels",
98
+ "ver": "92f556ed4d3bec1a3f16117d2de10f195c36d68e",
99
+ "Node name for S&R": "OverrideCLIPDevice",
100
+ "ue_properties": {
101
+ "widget_ue_connectable": {},
102
+ "input_ue_unconnectable": {},
103
+ "version": "7.3"
104
+ }
105
+ },
106
+ "widgets_values": [
107
+ "cpu"
108
+ ],
109
+ "color": "#c09430",
110
+ "bgcolor": "rgba(24,24,27,.9)",
111
+ "shape": 1
112
+ },
113
+ {
114
+ "id": 23,
115
+ "type": "PrimitiveNode",
116
+ "pos": [
117
+ 1110,
118
+ 250
119
+ ],
120
+ "size": [
121
+ 480,
122
+ 150
123
+ ],
124
+ "flags": {},
125
+ "order": 0,
126
+ "mode": 0,
127
+ "inputs": [],
128
+ "outputs": [
129
+ {
130
+ "name": "STRING",
131
+ "type": "STRING",
132
+ "widget": {
133
+ "name": "text"
134
+ },
135
+ "slot_index": 0,
136
+ "links": [
137
+ 16
138
+ ]
139
+ }
140
+ ],
141
+ "title": "Negative Prompt (Text)",
142
+ "properties": {
143
+ "Run widget replace on values": false,
144
+ "ue_properties": {
145
+ "widget_ue_connectable": {},
146
+ "version": "7.2.1",
147
+ "input_ue_unconnectable": {}
148
+ }
149
+ },
150
+ "widgets_values": [
151
+ "oversaturated colors, low quality, cartoon, cgi, 3d render, unrealistic lighting, plastic texture, airbrushed skin, harsh shadows, watermark, text, Beauty mark, Beauty spot, mole, missing fingers, too few toes, too many toes, missing toes, worst feet, cartoon, anime, drawing, painting, illustration, mosaic."
152
+ ],
153
+ "color": "#322",
154
+ "bgcolor": "#533",
155
+ "shape": 1
156
+ },
157
+ {
158
+ "id": 25,
159
+ "type": "CLIPTextEncode",
160
+ "pos": [
161
+ 1110,
162
+ 460
163
+ ],
164
+ "size": [
165
+ 400,
166
+ 270
167
+ ],
168
+ "flags": {
169
+ "collapsed": true
170
+ },
171
+ "order": 29,
172
+ "mode": 0,
173
+ "inputs": [
174
+ {
175
+ "name": "clip",
176
+ "type": "CLIP",
177
+ "link": 19
178
+ },
179
+ {
180
+ "name": "text",
181
+ "type": "STRING",
182
+ "widget": {
183
+ "name": "text"
184
+ },
185
+ "link": 1013
186
+ }
187
+ ],
188
+ "outputs": [
189
+ {
190
+ "name": "CONDITIONING",
191
+ "type": "CONDITIONING",
192
+ "slot_index": 0,
193
+ "links": [
194
+ 1030
195
+ ]
196
+ }
197
+ ],
198
+ "title": "Qwen CLIP Text Encode (Positive Prompt)",
199
+ "properties": {
200
+ "cnr_id": "comfy-core",
201
+ "ver": "0.3.51",
202
+ "Node name for S&R": "CLIPTextEncode",
203
+ "ue_properties": {
204
+ "widget_ue_connectable": {},
205
+ "version": "7.1",
206
+ "input_ue_unconnectable": {}
207
+ }
208
+ },
209
+ "widgets_values": [
210
+ "Subject: Breathtaking beautiful chic young Korean woman, with sleek, short, blonde pin-straight tassel cut hair, blunt cut at the jawline, featuring large almond-shaped eyes with double eyelids and deep hazel iris, full 65D-cup breast size, slender and toned figure with a perfect hourglass body shape, with { |minimal makeup with a focus on glowing skin |light, natural makeup with defined brows and a hint of blush |bold red lip and subtle eye makeup |cat-eye liner with nude lips }, possessing a { |confident, relaxed demeanor |playful, energetic aura |calm, contemplative presence |chic, sophisticated vibe }.\n\nTop: { |oversized knit sweater in [camel/charcoal/moss green] |cropped hooded sweatshirt in [oatmeal/deep purple/forest green] |ribbed long-sleeve tee with delicate details |vintage-inspired graphic tee layered with a knit cardigan |houndstooth oversized blazer over a basic white tee |quilted bomber jacket in [khaki/black/navy] }.\n\nBottom: { |wide-leg denim jeans (light wash/dark wash) |straight-fit corduroy pants in [beige/brown/burgundy] |pleated midi skirt in [tartan/solid black/dark floral print] |vegan leather mini skirt in black or deep brown |cargo pants in [khaki/grey/cream] |tailored wool blend slacks }.\n\nOuterwear: { |classic trench coat (beige/khaki) |oversized wool blend single-breasted coat in [black/grey/brown] |cropped puffer jacket (matte finish) |soft fleece jacket in [cream/pastel blue/dusty pink] |denim jacket with subtle distressing |leather biker jacket }.\n\nFootwear: { |chunky loafers with tall socks |knee-high leather boots (flat/low heel) |platform sneakers (retro style) |combat boots with a modern twist |heeled ankle boots |ballet flats with a contemporary design }.\n\nAccessories: { |oversized tote bag in vegan leather |mini shoulder bag (croissant style) |silver hoop earrings |layered delicate necklaces |beanie hat in [black/cream/brown] |baseball cap (vintage logo) |thin knit scarf |trendy rectangular sunglasses |smartwatch |statement belt }.\n\nStanding: { |walking casually, looking over shoulder |leaning against a brick wall, hands in pockets |standing with one leg slightly bent, natural weight shift |adjusting an accessory, looking down subtly |full-body shot, hands holding a small coffee cup |facing away, turning head slightly towards camera |perched on a bench, one leg dangling |sitting on a low stool, looking thoughtfully out |cross-legged on a floor cushion, smiling |casual squatting pose on a street curb |sitting at a cafe window, looking out |kneeling on a step, looking up }. \n\nDynamic/Action: { |twirling in a skirt, motion blur effect |taking a selfie with a smartphone (held by model) |browsing clothes in a boutique |picking up an item, looking engaged |laughing candidly while walking |adjusting hair, natural movement }.\n"
211
+ ],
212
+ "color": "#232",
213
+ "bgcolor": "#353",
214
+ "shape": 1
215
+ },
216
+ {
217
+ "id": 36,
218
+ "type": "PrimitiveFloat",
219
+ "pos": [
220
+ 1920,
221
+ 70
222
+ ],
223
+ "size": [
224
+ 270,
225
+ 60
226
+ ],
227
+ "flags": {},
228
+ "order": 1,
229
+ "mode": 0,
230
+ "inputs": [],
231
+ "outputs": [
232
+ {
233
+ "name": "FLOAT",
234
+ "type": "FLOAT",
235
+ "links": [
236
+ 1117
237
+ ]
238
+ }
239
+ ],
240
+ "title": "CFG",
241
+ "properties": {
242
+ "cnr_id": "comfy-core",
243
+ "ver": "0.3.66",
244
+ "Node name for S&R": "PrimitiveFloat",
245
+ "ue_properties": {
246
+ "widget_ue_connectable": {},
247
+ "input_ue_unconnectable": {},
248
+ "version": "7.3"
249
+ }
250
+ },
251
+ "widgets_values": [
252
+ 1
253
+ ],
254
+ "color": "#408383",
255
+ "bgcolor": "#2c6f6f",
256
+ "shape": 1
257
+ },
258
+ {
259
+ "id": 33,
260
+ "type": "KSamplerSelect",
261
+ "pos": [
262
+ 1920,
263
+ 160
264
+ ],
265
+ "size": [
266
+ 270,
267
+ 60
268
+ ],
269
+ "flags": {},
270
+ "order": 2,
271
+ "mode": 0,
272
+ "inputs": [],
273
+ "outputs": [
274
+ {
275
+ "name": "SAMPLER",
276
+ "type": "SAMPLER",
277
+ "links": [
278
+ 846
279
+ ]
280
+ }
281
+ ],
282
+ "properties": {
283
+ "cnr_id": "comfy-core",
284
+ "ver": "0.3.66",
285
+ "Node name for S&R": "KSamplerSelect",
286
+ "ue_properties": {
287
+ "widget_ue_connectable": {},
288
+ "input_ue_unconnectable": {},
289
+ "version": "7.3"
290
+ }
291
+ },
292
+ "widgets_values": [
293
+ "euler"
294
+ ],
295
+ "color": "#d5a8a8",
296
+ "bgcolor": "#c19494",
297
+ "shape": 1
298
+ },
299
+ {
300
+ "id": 61,
301
+ "type": "easy cleanGpuUsed",
302
+ "pos": [
303
+ 3920,
304
+ 710
305
+ ],
306
+ "size": [
307
+ 157.3892578125,
308
+ 26
309
+ ],
310
+ "flags": {
311
+ "collapsed": true
312
+ },
313
+ "order": 49,
314
+ "mode": 0,
315
+ "inputs": [
316
+ {
317
+ "name": "anything",
318
+ "type": "*",
319
+ "link": 1169
320
+ }
321
+ ],
322
+ "outputs": [
323
+ {
324
+ "name": "output",
325
+ "type": "*",
326
+ "links": [
327
+ 257
328
+ ]
329
+ }
330
+ ],
331
+ "properties": {
332
+ "cnr_id": "comfyui-easy-use",
333
+ "ver": "125b3a4905ac9367f7aae5c2df67e2282f0a3d37",
334
+ "Node name for S&R": "easy cleanGpuUsed",
335
+ "ue_properties": {
336
+ "widget_ue_connectable": {},
337
+ "input_ue_unconnectable": {},
338
+ "version": "7.3"
339
+ }
340
+ },
341
+ "widgets_values": [],
342
+ "shape": 1
343
+ },
344
+ {
345
+ "id": 3,
346
+ "type": "Any Switch (rgthree)",
347
+ "pos": [
348
+ 470,
349
+ -210
350
+ ],
351
+ "size": [
352
+ 250.08046875000002,
353
+ 106
354
+ ],
355
+ "flags": {
356
+ "collapsed": true
357
+ },
358
+ "order": 20,
359
+ "mode": 0,
360
+ "inputs": [
361
+ {
362
+ "dir": 3,
363
+ "name": "any_01",
364
+ "type": "MODEL",
365
+ "link": 1
366
+ },
367
+ {
368
+ "dir": 3,
369
+ "name": "any_02",
370
+ "type": "MODEL",
371
+ "link": 2
372
+ },
373
+ {
374
+ "dir": 3,
375
+ "name": "any_03",
376
+ "type": "MODEL",
377
+ "link": null
378
+ },
379
+ {
380
+ "dir": 3,
381
+ "name": "any_04",
382
+ "type": "MODEL",
383
+ "link": null
384
+ },
385
+ {
386
+ "dir": 3,
387
+ "name": "any_05",
388
+ "type": "MODEL",
389
+ "link": null
390
+ }
391
+ ],
392
+ "outputs": [
393
+ {
394
+ "dir": 4,
395
+ "label": "MODEL",
396
+ "name": "*",
397
+ "shape": 3,
398
+ "type": "MODEL",
399
+ "links": [
400
+ 7
401
+ ]
402
+ }
403
+ ],
404
+ "title": "model Switch (rgthree)",
405
+ "properties": {
406
+ "cnr_id": "rgthree-comfy",
407
+ "ver": "2b9eb36d3e1741e88dbfccade0e08137f7fa2bfb",
408
+ "ue_properties": {
409
+ "widget_ue_connectable": {},
410
+ "input_ue_unconnectable": {},
411
+ "version": "7.3"
412
+ }
413
+ },
414
+ "widgets_values": [],
415
+ "color": "#422342",
416
+ "bgcolor": "rgba(24,24,27,.9)",
417
+ "shape": 1
418
+ },
419
+ {
420
+ "id": 7,
421
+ "type": "Any Switch (rgthree)",
422
+ "pos": [
423
+ 600,
424
+ 300
425
+ ],
426
+ "size": [
427
+ 250.08046875000002,
428
+ 106
429
+ ],
430
+ "flags": {
431
+ "collapsed": true
432
+ },
433
+ "order": 23,
434
+ "mode": 0,
435
+ "inputs": [
436
+ {
437
+ "dir": 3,
438
+ "name": "any_01",
439
+ "type": "CLIP",
440
+ "link": 3
441
+ },
442
+ {
443
+ "dir": 3,
444
+ "name": "any_02",
445
+ "type": "CLIP",
446
+ "link": 4
447
+ },
448
+ {
449
+ "dir": 3,
450
+ "name": "any_03",
451
+ "type": "CLIP",
452
+ "link": null
453
+ },
454
+ {
455
+ "dir": 3,
456
+ "name": "any_04",
457
+ "type": "CLIP",
458
+ "link": null
459
+ },
460
+ {
461
+ "dir": 3,
462
+ "name": "any_05",
463
+ "type": "CLIP",
464
+ "link": null
465
+ }
466
+ ],
467
+ "outputs": [
468
+ {
469
+ "dir": 4,
470
+ "label": "CLIP",
471
+ "name": "*",
472
+ "shape": 3,
473
+ "type": "CLIP",
474
+ "links": [
475
+ 5
476
+ ]
477
+ }
478
+ ],
479
+ "title": "clip Switch (rgthree)",
480
+ "properties": {
481
+ "cnr_id": "rgthree-comfy",
482
+ "ver": "2b9eb36d3e1741e88dbfccade0e08137f7fa2bfb",
483
+ "ue_properties": {
484
+ "widget_ue_connectable": {},
485
+ "input_ue_unconnectable": {},
486
+ "version": "7.3"
487
+ }
488
+ },
489
+ "widgets_values": [],
490
+ "color": "#c09430",
491
+ "bgcolor": "rgba(24,24,27,.9)",
492
+ "shape": 1
493
+ },
494
+ {
495
+ "id": 26,
496
+ "type": "PrimitiveNode",
497
+ "pos": [
498
+ 1110,
499
+ -120
500
+ ],
501
+ "size": [
502
+ 480,
503
+ 330
504
+ ],
505
+ "flags": {
506
+ "collapsed": false
507
+ },
508
+ "order": 3,
509
+ "mode": 0,
510
+ "inputs": [],
511
+ "outputs": [
512
+ {
513
+ "name": "STRING",
514
+ "type": "STRING",
515
+ "widget": {
516
+ "name": "text"
517
+ },
518
+ "slot_index": 0,
519
+ "links": [
520
+ 997
521
+ ]
522
+ }
523
+ ],
524
+ "title": "Positive Prompt (Text)",
525
+ "properties": {
526
+ "Run widget replace on values": false,
527
+ "ue_properties": {
528
+ "widget_ue_connectable": {},
529
+ "version": "7.2.1",
530
+ "input_ue_unconnectable": {}
531
+ }
532
+ },
533
+ "widgets_values": [
534
+ "Subject: Breathtaking beautiful chic young Korean woman. __qwen1__\n\nDSC_0042.NEF, unretouched RAW 16-bit photograph, perfect color science, natural skin texture, JPEG compression artifact."
535
+ ],
536
+ "color": "#232",
537
+ "bgcolor": "#353",
538
+ "shape": 1
539
+ },
540
+ {
541
+ "id": 2,
542
+ "type": "LoaderGGUF",
543
+ "pos": [
544
+ 10,
545
+ 20
546
+ ],
547
+ "size": [
548
+ 480,
549
+ 60
550
+ ],
551
+ "flags": {},
552
+ "order": 4,
553
+ "mode": 4,
554
+ "inputs": [],
555
+ "outputs": [
556
+ {
557
+ "name": "MODEL",
558
+ "type": "MODEL",
559
+ "links": [
560
+ 2,
561
+ 1240
562
+ ]
563
+ }
564
+ ],
565
+ "properties": {
566
+ "cnr_id": "gguf",
567
+ "ver": "a64ccbf6c694a46c181a444a1ac9d2d810607309",
568
+ "Node name for S&R": "LoaderGGUF",
569
+ "ue_properties": {
570
+ "widget_ue_connectable": {},
571
+ "input_ue_unconnectable": {},
572
+ "version": "7.3"
573
+ }
574
+ },
575
+ "widgets_values": [
576
+ "QWEN\\Qwen_Image-Q4_K_S.gguf"
577
+ ],
578
+ "color": "#422342",
579
+ "bgcolor": "rgba(24,24,27,.9)",
580
+ "shape": 1
581
+ },
582
+ {
583
+ "id": 5,
584
+ "type": "CLIPLoader",
585
+ "pos": [
586
+ 10,
587
+ 240
588
+ ],
589
+ "size": [
590
+ 480,
591
+ 110
592
+ ],
593
+ "flags": {},
594
+ "order": 5,
595
+ "mode": 4,
596
+ "inputs": [],
597
+ "outputs": [
598
+ {
599
+ "name": "CLIP",
600
+ "type": "CLIP",
601
+ "links": [
602
+ 3,
603
+ 1241
604
+ ]
605
+ }
606
+ ],
607
+ "properties": {
608
+ "cnr_id": "comfy-core",
609
+ "ver": "0.3.66",
610
+ "Node name for S&R": "CLIPLoader",
611
+ "ue_properties": {
612
+ "widget_ue_connectable": {},
613
+ "input_ue_unconnectable": {},
614
+ "version": "7.3"
615
+ }
616
+ },
617
+ "widgets_values": [
618
+ "QWEN\\qwen_2.5_vl_7b_fp8_scaled.safetensors",
619
+ "qwen_image",
620
+ "default"
621
+ ],
622
+ "color": "#c09430",
623
+ "bgcolor": "rgba(24,24,27,.9)",
624
+ "shape": 1
625
+ },
626
+ {
627
+ "id": 145,
628
+ "type": "Fast Bypasser (rgthree)",
629
+ "pos": [
630
+ -300,
631
+ 380
632
+ ],
633
+ "size": [
634
+ 280,
635
+ 122
636
+ ],
637
+ "flags": {},
638
+ "order": 24,
639
+ "mode": 0,
640
+ "inputs": [
641
+ {
642
+ "dir": 3,
643
+ "label": "",
644
+ "name": "CLIP ๋กœ๋“œ",
645
+ "type": "*",
646
+ "link": 1241
647
+ },
648
+ {
649
+ "dir": 3,
650
+ "name": "CLIPLoader (GGUF)",
651
+ "type": "*",
652
+ "link": 1242
653
+ },
654
+ {
655
+ "dir": 3,
656
+ "name": "",
657
+ "type": "*",
658
+ "link": null
659
+ }
660
+ ],
661
+ "outputs": [
662
+ {
663
+ "dir": 4,
664
+ "name": "OPT_CONNECTION",
665
+ "type": "*",
666
+ "links": null
667
+ }
668
+ ],
669
+ "title": "ํด๋ฆฝ ์„ ํƒ",
670
+ "properties": {
671
+ "toggleRestriction": "default",
672
+ "ue_properties": {
673
+ "widget_ue_connectable": {},
674
+ "input_ue_unconnectable": {},
675
+ "version": "7.4.1"
676
+ }
677
+ },
678
+ "color": "#f3ce14",
679
+ "bgcolor": "#dfba00",
680
+ "shape": 1
681
+ },
682
+ {
683
+ "id": 144,
684
+ "type": "Fast Bypasser (rgthree)",
685
+ "pos": [
686
+ -300,
687
+ -20
688
+ ],
689
+ "size": [
690
+ 280,
691
+ 122
692
+ ],
693
+ "flags": {},
694
+ "order": 21,
695
+ "mode": 0,
696
+ "inputs": [
697
+ {
698
+ "dir": 3,
699
+ "name": "ํ™•์‚ฐ ๋ชจ๋ธ ๋กœ๋“œ",
700
+ "type": "*",
701
+ "link": 1239
702
+ },
703
+ {
704
+ "dir": 3,
705
+ "name": "GGUF Loader",
706
+ "type": "*",
707
+ "link": 1240
708
+ },
709
+ {
710
+ "dir": 3,
711
+ "name": "",
712
+ "type": "*",
713
+ "link": null
714
+ }
715
+ ],
716
+ "outputs": [
717
+ {
718
+ "dir": 4,
719
+ "name": "OPT_CONNECTION",
720
+ "type": "*",
721
+ "links": null
722
+ }
723
+ ],
724
+ "title": "๋ชจ๋ธ ์„ ํƒ",
725
+ "properties": {
726
+ "toggleRestriction": "default",
727
+ "ue_properties": {
728
+ "widget_ue_connectable": {},
729
+ "input_ue_unconnectable": {},
730
+ "version": "7.4.1"
731
+ }
732
+ },
733
+ "color": "#c7b1ef",
734
+ "bgcolor": "#b39ddb",
735
+ "shape": 1
736
+ },
737
+ {
738
+ "id": 143,
739
+ "type": "Fast Groups Bypasser (rgthree)",
740
+ "pos": [
741
+ 1610,
742
+ 850
743
+ ],
744
+ "size": [
745
+ 280,
746
+ 60
747
+ ],
748
+ "flags": {},
749
+ "order": 6,
750
+ "mode": 0,
751
+ "inputs": [],
752
+ "outputs": [
753
+ {
754
+ "name": "OPT_CONNECTION",
755
+ "type": "*",
756
+ "links": null
757
+ }
758
+ ],
759
+ "title": "๋ฆฌํŒŒ์ด๋„ˆ on/off",
760
+ "properties": {
761
+ "matchColors": "",
762
+ "matchTitle": "1.5x",
763
+ "showNav": true,
764
+ "showAllGraphs": true,
765
+ "sort": "position",
766
+ "customSortAlphabet": "",
767
+ "toggleRestriction": "default",
768
+ "ue_properties": {
769
+ "widget_ue_connectable": {},
770
+ "input_ue_unconnectable": {},
771
+ "version": "7.4.1"
772
+ }
773
+ },
774
+ "shape": 1
775
+ },
776
+ {
777
+ "id": 49,
778
+ "type": "SaveImage",
779
+ "pos": [
780
+ 3540,
781
+ 740
782
+ ],
783
+ "size": [
784
+ 270,
785
+ 58
786
+ ],
787
+ "flags": {
788
+ "collapsed": true
789
+ },
790
+ "order": 44,
791
+ "mode": 4,
792
+ "inputs": [
793
+ {
794
+ "name": "images",
795
+ "type": "IMAGE",
796
+ "link": 180
797
+ }
798
+ ],
799
+ "outputs": [],
800
+ "properties": {
801
+ "cnr_id": "comfy-core",
802
+ "ver": "0.3.66",
803
+ "Node name for S&R": "SaveImage",
804
+ "ue_properties": {
805
+ "widget_ue_connectable": {},
806
+ "input_ue_unconnectable": {},
807
+ "version": "7.3"
808
+ }
809
+ },
810
+ "widgets_values": [
811
+ "%date:yyyy-MM-dd/%QWEN-%date:yyMMdd-hhmmss%"
812
+ ],
813
+ "shape": 1
814
+ },
815
+ {
816
+ "id": 160,
817
+ "type": "Power Puter (rgthree)",
818
+ "pos": [
819
+ 2210,
820
+ 790
821
+ ],
822
+ "size": [
823
+ 210,
824
+ 136
825
+ ],
826
+ "flags": {
827
+ "collapsed": true
828
+ },
829
+ "order": 19,
830
+ "mode": 0,
831
+ "inputs": [
832
+ {
833
+ "name": "a",
834
+ "type": "*",
835
+ "link": 1302
836
+ },
837
+ {
838
+ "name": "b",
839
+ "type": "*",
840
+ "link": null
841
+ }
842
+ ],
843
+ "outputs": [
844
+ {
845
+ "label": "INT",
846
+ "name": "*",
847
+ "shape": 3,
848
+ "type": "INT",
849
+ "links": []
850
+ }
851
+ ],
852
+ "title": "์„ธ๋กœ1.5",
853
+ "properties": {
854
+ "cnr_id": "rgthree-comfy",
855
+ "ver": "1.0.2508012353",
856
+ "ue_properties": {
857
+ "widget_ue_connectable": {},
858
+ "version": "7.2.2",
859
+ "input_ue_unconnectable": {}
860
+ }
861
+ },
862
+ "widgets_values": [
863
+ {
864
+ "outputs": [
865
+ "INT"
866
+ ]
867
+ },
868
+ "a*1.5"
869
+ ],
870
+ "color": "#33335c",
871
+ "bgcolor": "#1f1f48",
872
+ "shape": 1
873
+ },
874
+ {
875
+ "id": 159,
876
+ "type": "Power Puter (rgthree)",
877
+ "pos": [
878
+ 2210,
879
+ 760
880
+ ],
881
+ "size": [
882
+ 210,
883
+ 136
884
+ ],
885
+ "flags": {
886
+ "collapsed": true
887
+ },
888
+ "order": 18,
889
+ "mode": 0,
890
+ "inputs": [
891
+ {
892
+ "name": "a",
893
+ "type": "*",
894
+ "link": 1301
895
+ },
896
+ {
897
+ "name": "b",
898
+ "type": "*",
899
+ "link": null
900
+ }
901
+ ],
902
+ "outputs": [
903
+ {
904
+ "label": "INT",
905
+ "name": "*",
906
+ "shape": 3,
907
+ "type": "INT",
908
+ "links": []
909
+ }
910
+ ],
911
+ "title": "๊ฐ€๋กœ1.5",
912
+ "properties": {
913
+ "cnr_id": "rgthree-comfy",
914
+ "ver": "1.0.2508012353",
915
+ "ue_properties": {
916
+ "widget_ue_connectable": {},
917
+ "version": "7.2.2",
918
+ "input_ue_unconnectable": {}
919
+ }
920
+ },
921
+ "widgets_values": [
922
+ {
923
+ "outputs": [
924
+ "INT"
925
+ ]
926
+ },
927
+ "a*1.5"
928
+ ],
929
+ "color": "#33335c",
930
+ "bgcolor": "#1f1f48",
931
+ "shape": 1
932
+ },
933
+ {
934
+ "id": 28,
935
+ "type": "SamplerCustomAdvanced",
936
+ "pos": [
937
+ 2600,
938
+ 130
939
+ ],
940
+ "size": [
941
+ 300,
942
+ 548
943
+ ],
944
+ "flags": {},
945
+ "order": 38,
946
+ "mode": 0,
947
+ "inputs": [
948
+ {
949
+ "name": "noise",
950
+ "type": "NOISE",
951
+ "link": 23
952
+ },
953
+ {
954
+ "name": "guider",
955
+ "type": "GUIDER",
956
+ "link": 1141
957
+ },
958
+ {
959
+ "name": "sampler",
960
+ "type": "SAMPLER",
961
+ "link": 846
962
+ },
963
+ {
964
+ "name": "sigmas",
965
+ "type": "SIGMAS",
966
+ "link": 1674
967
+ },
968
+ {
969
+ "name": "latent_image",
970
+ "type": "LATENT",
971
+ "link": 24
972
+ }
973
+ ],
974
+ "outputs": [
975
+ {
976
+ "name": "output",
977
+ "type": "LATENT",
978
+ "links": [
979
+ 1673
980
+ ]
981
+ },
982
+ {
983
+ "name": "denoised_output",
984
+ "type": "LATENT",
985
+ "links": null
986
+ }
987
+ ],
988
+ "properties": {
989
+ "cnr_id": "comfy-core",
990
+ "ver": "0.3.66",
991
+ "Node name for S&R": "SamplerCustomAdvanced",
992
+ "ue_properties": {
993
+ "widget_ue_connectable": {},
994
+ "input_ue_unconnectable": {},
995
+ "version": "7.3"
996
+ }
997
+ },
998
+ "widgets_values": [],
999
+ "color": "#c09430",
1000
+ "bgcolor": "rgba(24,24,27,.9)",
1001
+ "shape": 1
1002
+ },
1003
+ {
1004
+ "id": 29,
1005
+ "type": "RandomNoise",
1006
+ "pos": [
1007
+ 2350,
1008
+ 20
1009
+ ],
1010
+ "size": [
1011
+ 260,
1012
+ 82
1013
+ ],
1014
+ "flags": {
1015
+ "collapsed": true
1016
+ },
1017
+ "order": 16,
1018
+ "mode": 0,
1019
+ "inputs": [
1020
+ {
1021
+ "name": "noise_seed",
1022
+ "type": "INT",
1023
+ "widget": {
1024
+ "name": "noise_seed"
1025
+ },
1026
+ "link": 30
1027
+ }
1028
+ ],
1029
+ "outputs": [
1030
+ {
1031
+ "name": "NOISE",
1032
+ "type": "NOISE",
1033
+ "links": [
1034
+ 23
1035
+ ]
1036
+ }
1037
+ ],
1038
+ "properties": {
1039
+ "cnr_id": "comfy-core",
1040
+ "ver": "0.3.66",
1041
+ "Node name for S&R": "RandomNoise",
1042
+ "ue_properties": {
1043
+ "widget_ue_connectable": {},
1044
+ "input_ue_unconnectable": {},
1045
+ "version": "7.3"
1046
+ }
1047
+ },
1048
+ "widgets_values": [
1049
+ 0,
1050
+ "fixed"
1051
+ ],
1052
+ "color": "#979798",
1053
+ "bgcolor": "#838384",
1054
+ "shape": 1
1055
+ },
1056
+ {
1057
+ "id": 138,
1058
+ "type": "Image Comparer (rgthree)",
1059
+ "pos": [
1060
+ 4300,
1061
+ 850
1062
+ ],
1063
+ "size": [
1064
+ 700,
1065
+ 970
1066
+ ],
1067
+ "flags": {},
1068
+ "order": 55,
1069
+ "mode": 0,
1070
+ "inputs": [
1071
+ {
1072
+ "dir": 3,
1073
+ "name": "image_a",
1074
+ "type": "IMAGE",
1075
+ "link": 1208
1076
+ },
1077
+ {
1078
+ "dir": 3,
1079
+ "name": "image_b",
1080
+ "type": "IMAGE",
1081
+ "link": 1579
1082
+ }
1083
+ ],
1084
+ "outputs": [],
1085
+ "properties": {
1086
+ "cnr_id": "rgthree-comfy",
1087
+ "ver": "2b9eb36d3e1741e88dbfccade0e08137f7fa2bfb",
1088
+ "comparer_mode": "Slide",
1089
+ "ue_properties": {
1090
+ "widget_ue_connectable": {},
1091
+ "input_ue_unconnectable": {},
1092
+ "version": "7.3"
1093
+ }
1094
+ },
1095
+ "widgets_values": [
1096
+ [
1097
+ {
1098
+ "name": "A",
1099
+ "selected": true,
1100
+ "url": "/api/view?filename=rgthree.compare._temp_nnksb_00111_.png&type=temp&subfolder=&rand=0.8487879824753122"
1101
+ },
1102
+ {
1103
+ "name": "B",
1104
+ "selected": true,
1105
+ "url": "/api/view?filename=rgthree.compare._temp_nnksb_00112_.png&type=temp&subfolder=&rand=0.8356364694231545"
1106
+ }
1107
+ ]
1108
+ ],
1109
+ "shape": 1
1110
+ },
1111
+ {
1112
+ "id": 94,
1113
+ "type": "ShowText|pysssss",
1114
+ "pos": [
1115
+ 1110,
1116
+ 860
1117
+ ],
1118
+ "size": [
1119
+ 480,
1120
+ 390
1121
+ ],
1122
+ "flags": {},
1123
+ "order": 25,
1124
+ "mode": 0,
1125
+ "inputs": [
1126
+ {
1127
+ "name": "text",
1128
+ "type": "STRING",
1129
+ "link": 1014
1130
+ }
1131
+ ],
1132
+ "outputs": [
1133
+ {
1134
+ "name": "STRING",
1135
+ "shape": 6,
1136
+ "type": "STRING",
1137
+ "links": null
1138
+ }
1139
+ ],
1140
+ "properties": {
1141
+ "cnr_id": "comfyui-custom-scripts",
1142
+ "ver": "1.2.5",
1143
+ "Node name for S&R": "ShowText|pysssss",
1144
+ "aux_id": "pythongosssss/ComfyUI-Custom-Scripts",
1145
+ "ue_properties": {
1146
+ "widget_ue_connectable": {},
1147
+ "input_ue_unconnectable": {},
1148
+ "version": "7.4"
1149
+ }
1150
+ },
1151
+ "widgets_values": [
1152
+ "Subject: Breathtaking beautiful chic young Korean woman. __*/qwen1__\n\nDSC_0042.NEF, unretouched RAW 16-bit photograph, perfect color science, natural skin texture, JPEG compression artifact."
1153
+ ],
1154
+ "color": "#476947",
1155
+ "bgcolor": "#335533",
1156
+ "shape": 1
1157
+ },
1158
+ {
1159
+ "id": 112,
1160
+ "type": "CFGGuider",
1161
+ "pos": [
1162
+ 2600,
1163
+ -40
1164
+ ],
1165
+ "size": [
1166
+ 220,
1167
+ 100
1168
+ ],
1169
+ "flags": {},
1170
+ "order": 35,
1171
+ "mode": 0,
1172
+ "inputs": [
1173
+ {
1174
+ "name": "model",
1175
+ "type": "MODEL",
1176
+ "link": 1089
1177
+ },
1178
+ {
1179
+ "name": "positive",
1180
+ "type": "CONDITIONING",
1181
+ "link": 1090
1182
+ },
1183
+ {
1184
+ "name": "negative",
1185
+ "type": "CONDITIONING",
1186
+ "link": 1091
1187
+ },
1188
+ {
1189
+ "name": "cfg",
1190
+ "type": "FLOAT",
1191
+ "widget": {
1192
+ "name": "cfg"
1193
+ },
1194
+ "link": 1117
1195
+ }
1196
+ ],
1197
+ "outputs": [
1198
+ {
1199
+ "name": "GUIDER",
1200
+ "type": "GUIDER",
1201
+ "links": [
1202
+ 1141
1203
+ ]
1204
+ }
1205
+ ],
1206
+ "properties": {
1207
+ "cnr_id": "comfy-core",
1208
+ "ver": "0.3.66",
1209
+ "Node name for S&R": "CFGGuider",
1210
+ "ue_properties": {
1211
+ "widget_ue_connectable": {},
1212
+ "input_ue_unconnectable": {},
1213
+ "version": "7.3"
1214
+ }
1215
+ },
1216
+ "widgets_values": [
1217
+ 1
1218
+ ],
1219
+ "color": "#408383",
1220
+ "bgcolor": "#2c6f6f",
1221
+ "shape": 1
1222
+ },
1223
+ {
1224
+ "id": 169,
1225
+ "type": "KSamplerSelect",
1226
+ "pos": [
1227
+ 2000,
1228
+ 1260
1229
+ ],
1230
+ "size": [
1231
+ 270,
1232
+ 60
1233
+ ],
1234
+ "flags": {},
1235
+ "order": 7,
1236
+ "mode": 0,
1237
+ "inputs": [],
1238
+ "outputs": [
1239
+ {
1240
+ "name": "SAMPLER",
1241
+ "type": "SAMPLER",
1242
+ "links": [
1243
+ 1564,
1244
+ 1565
1245
+ ]
1246
+ }
1247
+ ],
1248
+ "properties": {
1249
+ "cnr_id": "comfy-core",
1250
+ "ver": "0.3.66",
1251
+ "Node name for S&R": "KSamplerSelect",
1252
+ "ue_properties": {
1253
+ "widget_ue_connectable": {},
1254
+ "input_ue_unconnectable": {},
1255
+ "version": "7.3"
1256
+ }
1257
+ },
1258
+ "widgets_values": [
1259
+ "euler"
1260
+ ],
1261
+ "color": "#d5a8a8",
1262
+ "bgcolor": "#c19494",
1263
+ "shape": 1
1264
+ },
1265
+ {
1266
+ "id": 176,
1267
+ "type": "easy clearCacheAll",
1268
+ "pos": [
1269
+ 3660,
1270
+ 1490
1271
+ ],
1272
+ "size": [
1273
+ 140,
1274
+ 26
1275
+ ],
1276
+ "flags": {
1277
+ "collapsed": true
1278
+ },
1279
+ "order": 57,
1280
+ "mode": 0,
1281
+ "inputs": [
1282
+ {
1283
+ "name": "anything",
1284
+ "type": "*",
1285
+ "link": 1575
1286
+ }
1287
+ ],
1288
+ "outputs": [
1289
+ {
1290
+ "name": "output",
1291
+ "type": "*",
1292
+ "links": null
1293
+ }
1294
+ ],
1295
+ "properties": {
1296
+ "cnr_id": "comfyui-easy-use",
1297
+ "ver": "125b3a4905ac9367f7aae5c2df67e2282f0a3d37",
1298
+ "Node name for S&R": "easy clearCacheAll",
1299
+ "ue_properties": {
1300
+ "widget_ue_connectable": {},
1301
+ "input_ue_unconnectable": {},
1302
+ "version": "7.3"
1303
+ }
1304
+ },
1305
+ "widgets_values": [],
1306
+ "shape": 1
1307
+ },
1308
+ {
1309
+ "id": 34,
1310
+ "type": "Seed (rgthree)",
1311
+ "pos": [
1312
+ 1920,
1313
+ -90
1314
+ ],
1315
+ "size": [
1316
+ 270,
1317
+ 130
1318
+ ],
1319
+ "flags": {},
1320
+ "order": 8,
1321
+ "mode": 0,
1322
+ "inputs": [],
1323
+ "outputs": [
1324
+ {
1325
+ "dir": 4,
1326
+ "name": "SEED",
1327
+ "shape": 3,
1328
+ "type": "INT",
1329
+ "links": [
1330
+ 30,
1331
+ 996
1332
+ ]
1333
+ }
1334
+ ],
1335
+ "properties": {
1336
+ "cnr_id": "rgthree-comfy",
1337
+ "ver": "2b9eb36d3e1741e88dbfccade0e08137f7fa2bfb",
1338
+ "randomMax": 1125899906842624,
1339
+ "randomMin": 0,
1340
+ "ue_properties": {
1341
+ "widget_ue_connectable": {},
1342
+ "input_ue_unconnectable": {},
1343
+ "version": "7.3"
1344
+ }
1345
+ },
1346
+ "widgets_values": [
1347
+ 633814699016413,
1348
+ "",
1349
+ "",
1350
+ ""
1351
+ ],
1352
+ "color": "#979798",
1353
+ "bgcolor": "#838384",
1354
+ "shape": 1
1355
+ },
1356
+ {
1357
+ "id": 14,
1358
+ "type": "QwenImageSize",
1359
+ "pos": [
1360
+ 1920,
1361
+ 530
1362
+ ],
1363
+ "size": [
1364
+ 270,
1365
+ 250
1366
+ ],
1367
+ "flags": {},
1368
+ "order": 9,
1369
+ "mode": 0,
1370
+ "inputs": [],
1371
+ "outputs": [
1372
+ {
1373
+ "name": "LATENT",
1374
+ "type": "LATENT",
1375
+ "links": [
1376
+ 24
1377
+ ]
1378
+ },
1379
+ {
1380
+ "name": "width",
1381
+ "type": "INT",
1382
+ "links": [
1383
+ 1301
1384
+ ]
1385
+ },
1386
+ {
1387
+ "name": "height",
1388
+ "type": "INT",
1389
+ "links": [
1390
+ 1302
1391
+ ]
1392
+ }
1393
+ ],
1394
+ "properties": {
1395
+ "aux_id": "rzgarespo/ComfyUI-qwen-image-size-picker",
1396
+ "ver": "ac0ca90df746c977840e18e160d8bdec5b698092",
1397
+ "Node name for S&R": "QwenImageSize",
1398
+ "ue_properties": {
1399
+ "widget_ue_connectable": {},
1400
+ "input_ue_unconnectable": {},
1401
+ "version": "7.2.2"
1402
+ }
1403
+ },
1404
+ "widgets_values": [
1405
+ "Qwen-Image",
1406
+ "1056x1584 (2:3 Vertical)",
1407
+ "704x1408 (1:2 Vertical)",
1408
+ "768x1024 (3:4 Vertical)",
1409
+ 1,
1410
+ 0,
1411
+ 0
1412
+ ],
1413
+ "color": "#ba7ab6",
1414
+ "bgcolor": "#a666a2",
1415
+ "shape": 1
1416
+ },
1417
+ {
1418
+ "id": 104,
1419
+ "type": "ModelPassThrough",
1420
+ "pos": [
1421
+ 1640,
1422
+ 240
1423
+ ],
1424
+ "size": [
1425
+ 220,
1426
+ 30
1427
+ ],
1428
+ "flags": {},
1429
+ "order": 31,
1430
+ "mode": 0,
1431
+ "inputs": [
1432
+ {
1433
+ "name": "model",
1434
+ "shape": 7,
1435
+ "type": "MODEL",
1436
+ "link": 1165
1437
+ }
1438
+ ],
1439
+ "outputs": [
1440
+ {
1441
+ "name": "model",
1442
+ "type": "MODEL",
1443
+ "links": [
1444
+ 1049,
1445
+ 1089,
1446
+ 1566
1447
+ ]
1448
+ }
1449
+ ],
1450
+ "properties": {
1451
+ "cnr_id": "comfyui-kjnodes",
1452
+ "ver": "be96f5c3a3f1484d4acca6226274a299f89b5cba",
1453
+ "Node name for S&R": "ModelPassThrough",
1454
+ "ue_properties": {
1455
+ "widget_ue_connectable": {},
1456
+ "input_ue_unconnectable": {},
1457
+ "version": "7.4.1"
1458
+ }
1459
+ },
1460
+ "widgets_values": [],
1461
+ "shape": 1
1462
+ },
1463
+ {
1464
+ "id": 99,
1465
+ "type": "CondPassThrough",
1466
+ "pos": [
1467
+ 1430,
1468
+ 440
1469
+ ],
1470
+ "size": [
1471
+ 156.6373046875,
1472
+ 46
1473
+ ],
1474
+ "flags": {},
1475
+ "order": 32,
1476
+ "mode": 0,
1477
+ "inputs": [
1478
+ {
1479
+ "name": "positive",
1480
+ "shape": 7,
1481
+ "type": "CONDITIONING",
1482
+ "link": 1030
1483
+ },
1484
+ {
1485
+ "name": "negative",
1486
+ "shape": 7,
1487
+ "type": "CONDITIONING",
1488
+ "link": 1031
1489
+ }
1490
+ ],
1491
+ "outputs": [
1492
+ {
1493
+ "name": "positive",
1494
+ "type": "CONDITIONING",
1495
+ "links": [
1496
+ 1090,
1497
+ 1567
1498
+ ]
1499
+ },
1500
+ {
1501
+ "name": "negative",
1502
+ "type": "CONDITIONING",
1503
+ "links": [
1504
+ 1091,
1505
+ 1568
1506
+ ]
1507
+ }
1508
+ ],
1509
+ "properties": {
1510
+ "cnr_id": "comfyui-kjnodes",
1511
+ "ver": "5dacc975141b531ae37a673354902984283d6703",
1512
+ "Node name for S&R": "CondPassThrough",
1513
+ "ue_properties": {
1514
+ "widget_ue_connectable": {},
1515
+ "input_ue_unconnectable": {},
1516
+ "version": "7.4.1"
1517
+ }
1518
+ },
1519
+ "widgets_values": [],
1520
+ "shape": 1
1521
+ },
1522
+ {
1523
+ "id": 51,
1524
+ "type": "Image Comparer (rgthree)",
1525
+ "pos": [
1526
+ 4300,
1527
+ -170
1528
+ ],
1529
+ "size": [
1530
+ 700,
1531
+ 970
1532
+ ],
1533
+ "flags": {},
1534
+ "order": 50,
1535
+ "mode": 0,
1536
+ "inputs": [
1537
+ {
1538
+ "dir": 3,
1539
+ "name": "image_a",
1540
+ "type": "IMAGE",
1541
+ "link": 1660
1542
+ },
1543
+ {
1544
+ "dir": 3,
1545
+ "name": "image_b",
1546
+ "type": "IMAGE",
1547
+ "link": 1662
1548
+ }
1549
+ ],
1550
+ "outputs": [],
1551
+ "properties": {
1552
+ "cnr_id": "rgthree-comfy",
1553
+ "ver": "2b9eb36d3e1741e88dbfccade0e08137f7fa2bfb",
1554
+ "comparer_mode": "Slide",
1555
+ "ue_properties": {
1556
+ "widget_ue_connectable": {},
1557
+ "input_ue_unconnectable": {},
1558
+ "version": "7.3"
1559
+ }
1560
+ },
1561
+ "widgets_values": [
1562
+ [
1563
+ {
1564
+ "name": "A",
1565
+ "selected": true,
1566
+ "url": "/api/view?filename=rgthree.compare._temp_ilrea_00198_.png&type=temp&subfolder=&rand=0.4670716737039322"
1567
+ },
1568
+ {
1569
+ "name": "B",
1570
+ "selected": true,
1571
+ "url": "/api/view?filename=rgthree.compare._temp_ilrea_00199_.png&type=temp&subfolder=&rand=0.7866877551831051"
1572
+ }
1573
+ ]
1574
+ ],
1575
+ "shape": 1
1576
+ },
1577
+ {
1578
+ "id": 170,
1579
+ "type": "BasicScheduler",
1580
+ "pos": [
1581
+ 2000,
1582
+ 1350
1583
+ ],
1584
+ "size": [
1585
+ 270,
1586
+ 110
1587
+ ],
1588
+ "flags": {},
1589
+ "order": 37,
1590
+ "mode": 0,
1591
+ "inputs": [
1592
+ {
1593
+ "name": "model",
1594
+ "type": "MODEL",
1595
+ "link": 1570
1596
+ }
1597
+ ],
1598
+ "outputs": [
1599
+ {
1600
+ "name": "SIGMAS",
1601
+ "type": "SIGMAS",
1602
+ "links": [
1603
+ 1561
1604
+ ]
1605
+ }
1606
+ ],
1607
+ "properties": {
1608
+ "cnr_id": "comfy-core",
1609
+ "ver": "0.3.66",
1610
+ "Node name for S&R": "BasicScheduler",
1611
+ "ue_properties": {
1612
+ "widget_ue_connectable": {},
1613
+ "input_ue_unconnectable": {},
1614
+ "version": "7.3"
1615
+ }
1616
+ },
1617
+ "widgets_values": [
1618
+ "bong_tangent",
1619
+ 6,
1620
+ 0.45
1621
+ ],
1622
+ "color": "#7d967d",
1623
+ "bgcolor": "#698269",
1624
+ "shape": 1
1625
+ },
1626
+ {
1627
+ "id": 171,
1628
+ "type": "SplitSigmas",
1629
+ "pos": [
1630
+ 2000,
1631
+ 1490
1632
+ ],
1633
+ "size": [
1634
+ 270,
1635
+ 78
1636
+ ],
1637
+ "flags": {},
1638
+ "order": 40,
1639
+ "mode": 0,
1640
+ "inputs": [
1641
+ {
1642
+ "name": "sigmas",
1643
+ "type": "SIGMAS",
1644
+ "link": 1561
1645
+ }
1646
+ ],
1647
+ "outputs": [
1648
+ {
1649
+ "name": "high_sigmas",
1650
+ "type": "SIGMAS",
1651
+ "links": [
1652
+ 1562
1653
+ ]
1654
+ },
1655
+ {
1656
+ "name": "low_sigmas",
1657
+ "type": "SIGMAS",
1658
+ "links": [
1659
+ 1563
1660
+ ]
1661
+ }
1662
+ ],
1663
+ "properties": {
1664
+ "cnr_id": "comfy-core",
1665
+ "ver": "0.3.68",
1666
+ "Node name for S&R": "SplitSigmas",
1667
+ "ue_properties": {
1668
+ "widget_ue_connectable": {},
1669
+ "input_ue_unconnectable": {},
1670
+ "version": "7.4.1"
1671
+ }
1672
+ },
1673
+ "widgets_values": [
1674
+ 3
1675
+ ],
1676
+ "color": "#7d967d",
1677
+ "bgcolor": "#698269",
1678
+ "shape": 1
1679
+ },
1680
+ {
1681
+ "id": 172,
1682
+ "type": "CondPassThrough",
1683
+ "pos": [
1684
+ 1930,
1685
+ 980
1686
+ ],
1687
+ "size": [
1688
+ 160,
1689
+ 50
1690
+ ],
1691
+ "flags": {},
1692
+ "order": 36,
1693
+ "mode": 0,
1694
+ "inputs": [
1695
+ {
1696
+ "name": "positive",
1697
+ "shape": 7,
1698
+ "type": "CONDITIONING",
1699
+ "link": 1567
1700
+ },
1701
+ {
1702
+ "name": "negative",
1703
+ "shape": 7,
1704
+ "type": "CONDITIONING",
1705
+ "link": 1568
1706
+ }
1707
+ ],
1708
+ "outputs": [
1709
+ {
1710
+ "name": "positive",
1711
+ "type": "CONDITIONING",
1712
+ "links": [
1713
+ 1571
1714
+ ]
1715
+ },
1716
+ {
1717
+ "name": "negative",
1718
+ "type": "CONDITIONING",
1719
+ "links": [
1720
+ 1572
1721
+ ]
1722
+ }
1723
+ ],
1724
+ "properties": {
1725
+ "cnr_id": "comfyui-kjnodes",
1726
+ "ver": "5dacc975141b531ae37a673354902984283d6703",
1727
+ "Node name for S&R": "CondPassThrough",
1728
+ "ue_properties": {
1729
+ "widget_ue_connectable": {},
1730
+ "input_ue_unconnectable": {},
1731
+ "version": "7.4.1"
1732
+ }
1733
+ },
1734
+ "widgets_values": [],
1735
+ "shape": 1
1736
+ },
1737
+ {
1738
+ "id": 173,
1739
+ "type": "ModelPassThrough",
1740
+ "pos": [
1741
+ 1930,
1742
+ 920
1743
+ ],
1744
+ "size": [
1745
+ 160,
1746
+ 30
1747
+ ],
1748
+ "flags": {},
1749
+ "order": 34,
1750
+ "mode": 0,
1751
+ "inputs": [
1752
+ {
1753
+ "name": "model",
1754
+ "shape": 7,
1755
+ "type": "MODEL",
1756
+ "link": 1566
1757
+ }
1758
+ ],
1759
+ "outputs": [
1760
+ {
1761
+ "name": "model",
1762
+ "type": "MODEL",
1763
+ "links": [
1764
+ 1569,
1765
+ 1570
1766
+ ]
1767
+ }
1768
+ ],
1769
+ "properties": {
1770
+ "cnr_id": "comfyui-kjnodes",
1771
+ "ver": "be96f5c3a3f1484d4acca6226274a299f89b5cba",
1772
+ "Node name for S&R": "ModelPassThrough",
1773
+ "ue_properties": {
1774
+ "widget_ue_connectable": {},
1775
+ "input_ue_unconnectable": {},
1776
+ "version": "7.4.1"
1777
+ }
1778
+ },
1779
+ "widgets_values": [],
1780
+ "shape": 1
1781
+ },
1782
+ {
1783
+ "id": 168,
1784
+ "type": "RandomNoise",
1785
+ "pos": [
1786
+ 2670,
1787
+ 1000
1788
+ ],
1789
+ "size": [
1790
+ 260,
1791
+ 82
1792
+ ],
1793
+ "flags": {
1794
+ "collapsed": true
1795
+ },
1796
+ "order": 10,
1797
+ "mode": 0,
1798
+ "inputs": [],
1799
+ "outputs": [
1800
+ {
1801
+ "name": "NOISE",
1802
+ "type": "NOISE",
1803
+ "links": [
1804
+ 1559
1805
+ ]
1806
+ }
1807
+ ],
1808
+ "properties": {
1809
+ "cnr_id": "comfy-core",
1810
+ "ver": "0.3.66",
1811
+ "Node name for S&R": "RandomNoise",
1812
+ "ue_properties": {
1813
+ "widget_ue_connectable": {},
1814
+ "input_ue_unconnectable": {},
1815
+ "version": "7.3"
1816
+ }
1817
+ },
1818
+ "widgets_values": [
1819
+ 0,
1820
+ "fixed"
1821
+ ],
1822
+ "color": "#979798",
1823
+ "bgcolor": "#838384",
1824
+ "shape": 1
1825
+ },
1826
+ {
1827
+ "id": 166,
1828
+ "type": "CFGGuider",
1829
+ "pos": [
1830
+ 2000,
1831
+ 1130
1832
+ ],
1833
+ "size": [
1834
+ 270,
1835
+ 100
1836
+ ],
1837
+ "flags": {},
1838
+ "order": 39,
1839
+ "mode": 0,
1840
+ "inputs": [
1841
+ {
1842
+ "name": "model",
1843
+ "type": "MODEL",
1844
+ "link": 1569
1845
+ },
1846
+ {
1847
+ "name": "positive",
1848
+ "type": "CONDITIONING",
1849
+ "link": 1571
1850
+ },
1851
+ {
1852
+ "name": "negative",
1853
+ "type": "CONDITIONING",
1854
+ "link": 1572
1855
+ }
1856
+ ],
1857
+ "outputs": [
1858
+ {
1859
+ "name": "GUIDER",
1860
+ "type": "GUIDER",
1861
+ "links": [
1862
+ 1560,
1863
+ 1596
1864
+ ]
1865
+ }
1866
+ ],
1867
+ "properties": {
1868
+ "cnr_id": "comfy-core",
1869
+ "ver": "0.3.66",
1870
+ "Node name for S&R": "CFGGuider",
1871
+ "ue_properties": {
1872
+ "widget_ue_connectable": {},
1873
+ "input_ue_unconnectable": {},
1874
+ "version": "7.3"
1875
+ }
1876
+ },
1877
+ "widgets_values": [
1878
+ 1
1879
+ ],
1880
+ "color": "#408383",
1881
+ "bgcolor": "#2c6f6f",
1882
+ "shape": 1
1883
+ },
1884
+ {
1885
+ "id": 167,
1886
+ "type": "DisableNoise",
1887
+ "pos": [
1888
+ 3160,
1889
+ 1000
1890
+ ],
1891
+ "size": [
1892
+ 140,
1893
+ 26
1894
+ ],
1895
+ "flags": {
1896
+ "collapsed": true
1897
+ },
1898
+ "order": 11,
1899
+ "mode": 0,
1900
+ "inputs": [],
1901
+ "outputs": [
1902
+ {
1903
+ "name": "NOISE",
1904
+ "type": "NOISE",
1905
+ "links": [
1906
+ 1558
1907
+ ]
1908
+ }
1909
+ ],
1910
+ "properties": {
1911
+ "cnr_id": "comfy-core",
1912
+ "ver": "0.3.68",
1913
+ "Node name for S&R": "DisableNoise",
1914
+ "ue_properties": {
1915
+ "widget_ue_connectable": {},
1916
+ "input_ue_unconnectable": {},
1917
+ "version": "7.4.1"
1918
+ }
1919
+ },
1920
+ "widgets_values": [],
1921
+ "shape": 1
1922
+ },
1923
+ {
1924
+ "id": 165,
1925
+ "type": "SamplerCustomAdvanced",
1926
+ "pos": [
1927
+ 2500,
1928
+ 1030
1929
+ ],
1930
+ "size": [
1931
+ 300,
1932
+ 548
1933
+ ],
1934
+ "flags": {},
1935
+ "order": 45,
1936
+ "mode": 0,
1937
+ "inputs": [
1938
+ {
1939
+ "name": "noise",
1940
+ "type": "NOISE",
1941
+ "link": 1559
1942
+ },
1943
+ {
1944
+ "name": "guider",
1945
+ "type": "GUIDER",
1946
+ "link": 1560
1947
+ },
1948
+ {
1949
+ "name": "sampler",
1950
+ "type": "SAMPLER",
1951
+ "link": 1564
1952
+ },
1953
+ {
1954
+ "name": "sigmas",
1955
+ "type": "SIGMAS",
1956
+ "link": 1562
1957
+ },
1958
+ {
1959
+ "name": "latent_image",
1960
+ "type": "LATENT",
1961
+ "link": 1574
1962
+ }
1963
+ ],
1964
+ "outputs": [
1965
+ {
1966
+ "name": "output",
1967
+ "type": "LATENT",
1968
+ "links": [
1969
+ 1573
1970
+ ]
1971
+ },
1972
+ {
1973
+ "name": "denoised_output",
1974
+ "type": "LATENT",
1975
+ "links": null
1976
+ }
1977
+ ],
1978
+ "properties": {
1979
+ "cnr_id": "comfy-core",
1980
+ "ver": "0.3.66",
1981
+ "Node name for S&R": "SamplerCustomAdvanced",
1982
+ "ue_properties": {
1983
+ "widget_ue_connectable": {},
1984
+ "input_ue_unconnectable": {},
1985
+ "version": "7.3"
1986
+ }
1987
+ },
1988
+ "widgets_values": [],
1989
+ "color": "#c09430",
1990
+ "bgcolor": "rgba(24,24,27,.9)",
1991
+ "shape": 1
1992
+ },
1993
+ {
1994
+ "id": 164,
1995
+ "type": "SamplerCustomAdvanced",
1996
+ "pos": [
1997
+ 3000,
1998
+ 1030
1999
+ ],
2000
+ "size": [
2001
+ 300,
2002
+ 548
2003
+ ],
2004
+ "flags": {},
2005
+ "order": 47,
2006
+ "mode": 0,
2007
+ "inputs": [
2008
+ {
2009
+ "name": "noise",
2010
+ "type": "NOISE",
2011
+ "link": 1558
2012
+ },
2013
+ {
2014
+ "name": "guider",
2015
+ "type": "GUIDER",
2016
+ "link": 1596
2017
+ },
2018
+ {
2019
+ "name": "sampler",
2020
+ "type": "SAMPLER",
2021
+ "link": 1565
2022
+ },
2023
+ {
2024
+ "name": "sigmas",
2025
+ "type": "SIGMAS",
2026
+ "link": 1563
2027
+ },
2028
+ {
2029
+ "name": "latent_image",
2030
+ "type": "LATENT",
2031
+ "link": 1573
2032
+ }
2033
+ ],
2034
+ "outputs": [
2035
+ {
2036
+ "name": "output",
2037
+ "type": "LATENT",
2038
+ "links": [
2039
+ 1577
2040
+ ]
2041
+ },
2042
+ {
2043
+ "name": "denoised_output",
2044
+ "type": "LATENT",
2045
+ "links": null
2046
+ }
2047
+ ],
2048
+ "properties": {
2049
+ "cnr_id": "comfy-core",
2050
+ "ver": "0.3.66",
2051
+ "Node name for S&R": "SamplerCustomAdvanced",
2052
+ "ue_properties": {
2053
+ "widget_ue_connectable": {},
2054
+ "input_ue_unconnectable": {},
2055
+ "version": "7.3"
2056
+ }
2057
+ },
2058
+ "widgets_values": [],
2059
+ "color": "#c09430",
2060
+ "bgcolor": "rgba(24,24,27,.9)",
2061
+ "shape": 1
2062
+ },
2063
+ {
2064
+ "id": 174,
2065
+ "type": "VAEDecodeTiled",
2066
+ "pos": [
2067
+ 3500,
2068
+ 1030
2069
+ ],
2070
+ "size": [
2071
+ 300,
2072
+ 150
2073
+ ],
2074
+ "flags": {},
2075
+ "order": 51,
2076
+ "mode": 0,
2077
+ "inputs": [
2078
+ {
2079
+ "name": "samples",
2080
+ "type": "LATENT",
2081
+ "link": 1577
2082
+ },
2083
+ {
2084
+ "name": "vae",
2085
+ "type": "VAE",
2086
+ "link": null
2087
+ }
2088
+ ],
2089
+ "outputs": [
2090
+ {
2091
+ "name": "IMAGE",
2092
+ "type": "IMAGE",
2093
+ "links": [
2094
+ 1576
2095
+ ]
2096
+ }
2097
+ ],
2098
+ "properties": {
2099
+ "cnr_id": "comfy-core",
2100
+ "ver": "0.3.68",
2101
+ "Node name for S&R": "VAEDecodeTiled",
2102
+ "ue_properties": {
2103
+ "widget_ue_connectable": {},
2104
+ "input_ue_unconnectable": {},
2105
+ "version": "7.4.1"
2106
+ }
2107
+ },
2108
+ "widgets_values": [
2109
+ 512,
2110
+ 64,
2111
+ 64,
2112
+ 8
2113
+ ],
2114
+ "shape": 1
2115
+ },
2116
+ {
2117
+ "id": 177,
2118
+ "type": "easy cleanGpuUsed",
2119
+ "pos": [
2120
+ 3640,
2121
+ 1440
2122
+ ],
2123
+ "size": [
2124
+ 160,
2125
+ 30
2126
+ ],
2127
+ "flags": {
2128
+ "collapsed": true
2129
+ },
2130
+ "order": 54,
2131
+ "mode": 0,
2132
+ "inputs": [
2133
+ {
2134
+ "name": "anything",
2135
+ "type": "*",
2136
+ "link": 1578
2137
+ }
2138
+ ],
2139
+ "outputs": [
2140
+ {
2141
+ "name": "output",
2142
+ "type": "*",
2143
+ "links": [
2144
+ 1575
2145
+ ]
2146
+ }
2147
+ ],
2148
+ "properties": {
2149
+ "cnr_id": "comfyui-easy-use",
2150
+ "ver": "125b3a4905ac9367f7aae5c2df67e2282f0a3d37",
2151
+ "Node name for S&R": "easy cleanGpuUsed",
2152
+ "ue_properties": {
2153
+ "widget_ue_connectable": {},
2154
+ "input_ue_unconnectable": {},
2155
+ "version": "7.3"
2156
+ }
2157
+ },
2158
+ "widgets_values": [],
2159
+ "shape": 1
2160
+ },
2161
+ {
2162
+ "id": 60,
2163
+ "type": "easy clearCacheAll",
2164
+ "pos": [
2165
+ 3940,
2166
+ 760
2167
+ ],
2168
+ "size": [
2169
+ 140,
2170
+ 26
2171
+ ],
2172
+ "flags": {
2173
+ "collapsed": true
2174
+ },
2175
+ "order": 52,
2176
+ "mode": 0,
2177
+ "inputs": [
2178
+ {
2179
+ "name": "anything",
2180
+ "type": "*",
2181
+ "link": 257
2182
+ }
2183
+ ],
2184
+ "outputs": [
2185
+ {
2186
+ "name": "output",
2187
+ "type": "*",
2188
+ "links": null
2189
+ }
2190
+ ],
2191
+ "properties": {
2192
+ "cnr_id": "comfyui-easy-use",
2193
+ "ver": "125b3a4905ac9367f7aae5c2df67e2282f0a3d37",
2194
+ "Node name for S&R": "easy clearCacheAll",
2195
+ "ue_properties": {
2196
+ "widget_ue_connectable": {},
2197
+ "input_ue_unconnectable": {},
2198
+ "version": "7.3"
2199
+ }
2200
+ },
2201
+ "widgets_values": [],
2202
+ "shape": 1
2203
+ },
2204
+ {
2205
+ "id": 175,
2206
+ "type": "FastFilmGrain",
2207
+ "pos": [
2208
+ 3500,
2209
+ 1240
2210
+ ],
2211
+ "size": [
2212
+ 300,
2213
+ 110
2214
+ ],
2215
+ "flags": {},
2216
+ "order": 53,
2217
+ "mode": 0,
2218
+ "inputs": [
2219
+ {
2220
+ "name": "images",
2221
+ "type": "IMAGE",
2222
+ "link": 1576
2223
+ }
2224
+ ],
2225
+ "outputs": [
2226
+ {
2227
+ "name": "IMAGE",
2228
+ "type": "IMAGE",
2229
+ "links": [
2230
+ 1578,
2231
+ 1579,
2232
+ 1669
2233
+ ]
2234
+ }
2235
+ ],
2236
+ "properties": {
2237
+ "aux_id": "vrgamegirl19/comfyui-vrgamedevgirl",
2238
+ "ver": "30a24750d44fd0a5f91e64d23554816fa9621761",
2239
+ "Node name for S&R": "FastFilmGrain",
2240
+ "ue_properties": {
2241
+ "widget_ue_connectable": {},
2242
+ "input_ue_unconnectable": {},
2243
+ "version": "7.4.1"
2244
+ }
2245
+ },
2246
+ "widgets_values": [
2247
+ 0.025,
2248
+ 0.5,
2249
+ 4
2250
+ ],
2251
+ "shape": 1
2252
+ },
2253
+ {
2254
+ "id": 124,
2255
+ "type": "FastFilmGrain",
2256
+ "pos": [
2257
+ 3510,
2258
+ 410
2259
+ ],
2260
+ "size": [
2261
+ 300,
2262
+ 110
2263
+ ],
2264
+ "flags": {},
2265
+ "order": 46,
2266
+ "mode": 0,
2267
+ "inputs": [
2268
+ {
2269
+ "name": "images",
2270
+ "type": "IMAGE",
2271
+ "link": 1661
2272
+ }
2273
+ ],
2274
+ "outputs": [
2275
+ {
2276
+ "name": "IMAGE",
2277
+ "type": "IMAGE",
2278
+ "links": [
2279
+ 1168,
2280
+ 1169,
2281
+ 1208,
2282
+ 1662
2283
+ ]
2284
+ }
2285
+ ],
2286
+ "properties": {
2287
+ "aux_id": "vrgamegirl19/comfyui-vrgamedevgirl",
2288
+ "ver": "30a24750d44fd0a5f91e64d23554816fa9621761",
2289
+ "Node name for S&R": "FastFilmGrain",
2290
+ "ue_properties": {
2291
+ "widget_ue_connectable": {},
2292
+ "input_ue_unconnectable": {},
2293
+ "version": "7.4.1"
2294
+ }
2295
+ },
2296
+ "widgets_values": [
2297
+ 0.025,
2298
+ 0.5,
2299
+ 4
2300
+ ],
2301
+ "shape": 1
2302
+ },
2303
+ {
2304
+ "id": 70,
2305
+ "type": "SaveImage",
2306
+ "pos": [
2307
+ 4070,
2308
+ 790
2309
+ ],
2310
+ "size": [
2311
+ 270,
2312
+ 270
2313
+ ],
2314
+ "flags": {
2315
+ "collapsed": true
2316
+ },
2317
+ "order": 48,
2318
+ "mode": 0,
2319
+ "inputs": [
2320
+ {
2321
+ "name": "images",
2322
+ "type": "IMAGE",
2323
+ "link": 1168
2324
+ }
2325
+ ],
2326
+ "outputs": [],
2327
+ "properties": {
2328
+ "cnr_id": "comfy-core",
2329
+ "ver": "0.3.66",
2330
+ "Node name for S&R": "SaveImage",
2331
+ "ue_properties": {
2332
+ "widget_ue_connectable": {},
2333
+ "input_ue_unconnectable": {},
2334
+ "version": "7.3"
2335
+ }
2336
+ },
2337
+ "widgets_values": [
2338
+ "%date:yyyy-MM-dd/%QWEN_up1.5x-%date:yyMMdd-hhmmss%"
2339
+ ],
2340
+ "shape": 1
2341
+ },
2342
+ {
2343
+ "id": 52,
2344
+ "type": "easy cleanGpuUsed",
2345
+ "pos": [
2346
+ 3130,
2347
+ 160
2348
+ ],
2349
+ "size": [
2350
+ 157.3892578125,
2351
+ 26
2352
+ ],
2353
+ "flags": {
2354
+ "collapsed": true
2355
+ },
2356
+ "order": 41,
2357
+ "mode": 0,
2358
+ "inputs": [
2359
+ {
2360
+ "name": "anything",
2361
+ "type": "*",
2362
+ "link": 1673
2363
+ }
2364
+ ],
2365
+ "outputs": [
2366
+ {
2367
+ "name": "output",
2368
+ "type": "*",
2369
+ "links": [
2370
+ 1172,
2371
+ 1196
2372
+ ]
2373
+ }
2374
+ ],
2375
+ "properties": {
2376
+ "cnr_id": "comfyui-easy-use",
2377
+ "ver": "125b3a4905ac9367f7aae5c2df67e2282f0a3d37",
2378
+ "Node name for S&R": "easy cleanGpuUsed",
2379
+ "ue_properties": {
2380
+ "widget_ue_connectable": {},
2381
+ "input_ue_unconnectable": {},
2382
+ "version": "7.3"
2383
+ }
2384
+ },
2385
+ "widgets_values": [],
2386
+ "shape": 1
2387
+ },
2388
+ {
2389
+ "id": 43,
2390
+ "type": "VAEDecode",
2391
+ "pos": [
2392
+ 3110,
2393
+ 260
2394
+ ],
2395
+ "size": [
2396
+ 140,
2397
+ 46
2398
+ ],
2399
+ "flags": {},
2400
+ "order": 42,
2401
+ "mode": 0,
2402
+ "inputs": [
2403
+ {
2404
+ "name": "samples",
2405
+ "type": "LATENT",
2406
+ "link": 1172
2407
+ },
2408
+ {
2409
+ "name": "vae",
2410
+ "type": "VAE",
2411
+ "link": null
2412
+ }
2413
+ ],
2414
+ "outputs": [
2415
+ {
2416
+ "name": "IMAGE",
2417
+ "type": "IMAGE",
2418
+ "links": [
2419
+ 180,
2420
+ 1660
2421
+ ]
2422
+ }
2423
+ ],
2424
+ "properties": {
2425
+ "cnr_id": "comfy-core",
2426
+ "ver": "0.3.66",
2427
+ "Node name for S&R": "VAEDecode",
2428
+ "ue_properties": {
2429
+ "widget_ue_connectable": {},
2430
+ "input_ue_unconnectable": {},
2431
+ "version": "7.3"
2432
+ }
2433
+ },
2434
+ "widgets_values": [],
2435
+ "shape": 1
2436
+ },
2437
+ {
2438
+ "id": 32,
2439
+ "type": "BasicScheduler",
2440
+ "pos": [
2441
+ 1920,
2442
+ 250
2443
+ ],
2444
+ "size": [
2445
+ 270,
2446
+ 110
2447
+ ],
2448
+ "flags": {},
2449
+ "order": 33,
2450
+ "mode": 0,
2451
+ "inputs": [
2452
+ {
2453
+ "name": "model",
2454
+ "type": "MODEL",
2455
+ "link": 1049
2456
+ }
2457
+ ],
2458
+ "outputs": [
2459
+ {
2460
+ "name": "SIGMAS",
2461
+ "type": "SIGMAS",
2462
+ "links": [
2463
+ 1674
2464
+ ]
2465
+ }
2466
+ ],
2467
+ "properties": {
2468
+ "cnr_id": "comfy-core",
2469
+ "ver": "0.3.66",
2470
+ "Node name for S&R": "BasicScheduler",
2471
+ "ue_properties": {
2472
+ "widget_ue_connectable": {},
2473
+ "input_ue_unconnectable": {},
2474
+ "version": "7.3"
2475
+ }
2476
+ },
2477
+ "widgets_values": [
2478
+ "bong_tangent",
2479
+ 4,
2480
+ 1
2481
+ ],
2482
+ "color": "#7d967d",
2483
+ "bgcolor": "#698269",
2484
+ "shape": 1
2485
+ },
2486
+ {
2487
+ "id": 184,
2488
+ "type": "SaveImage",
2489
+ "pos": [
2490
+ 3880,
2491
+ 1680
2492
+ ],
2493
+ "size": [
2494
+ 270,
2495
+ 270
2496
+ ],
2497
+ "flags": {
2498
+ "collapsed": true
2499
+ },
2500
+ "order": 56,
2501
+ "mode": 0,
2502
+ "inputs": [
2503
+ {
2504
+ "name": "images",
2505
+ "type": "IMAGE",
2506
+ "link": 1669
2507
+ }
2508
+ ],
2509
+ "outputs": [],
2510
+ "properties": {
2511
+ "cnr_id": "comfy-core",
2512
+ "ver": "0.3.66",
2513
+ "Node name for S&R": "SaveImage",
2514
+ "ue_properties": {
2515
+ "widget_ue_connectable": {},
2516
+ "input_ue_unconnectable": {},
2517
+ "version": "7.3"
2518
+ }
2519
+ },
2520
+ "widgets_values": [
2521
+ "%date:yyyy-MM-dd/%QWEN-Re1.5x%date:yyMMdd-hhmmss%"
2522
+ ],
2523
+ "shape": 1
2524
+ },
2525
+ {
2526
+ "id": 135,
2527
+ "type": "LatentPixelScale",
2528
+ "pos": [
2529
+ 3510,
2530
+ 190
2531
+ ],
2532
+ "size": [
2533
+ 300,
2534
+ 150
2535
+ ],
2536
+ "flags": {},
2537
+ "order": 43,
2538
+ "mode": 0,
2539
+ "inputs": [
2540
+ {
2541
+ "name": "samples",
2542
+ "type": "LATENT",
2543
+ "link": 1196
2544
+ },
2545
+ {
2546
+ "name": "vae",
2547
+ "type": "VAE",
2548
+ "link": null
2549
+ },
2550
+ {
2551
+ "name": "upscale_model_opt",
2552
+ "shape": 7,
2553
+ "type": "UPSCALE_MODEL",
2554
+ "link": 1204
2555
+ }
2556
+ ],
2557
+ "outputs": [
2558
+ {
2559
+ "name": "LATENT",
2560
+ "type": "LATENT",
2561
+ "links": [
2562
+ 1574
2563
+ ]
2564
+ },
2565
+ {
2566
+ "name": "IMAGE",
2567
+ "type": "IMAGE",
2568
+ "links": [
2569
+ 1661
2570
+ ]
2571
+ }
2572
+ ],
2573
+ "properties": {
2574
+ "cnr_id": "comfyui-impact-pack",
2575
+ "ver": "2804f7944f125b1c10bc9d1fbb5a997a25a62726",
2576
+ "Node name for S&R": "LatentPixelScale",
2577
+ "ue_properties": {
2578
+ "widget_ue_connectable": {},
2579
+ "input_ue_unconnectable": {},
2580
+ "version": "7.4.1"
2581
+ }
2582
+ },
2583
+ "widgets_values": [
2584
+ "nearest-exact",
2585
+ 1.5,
2586
+ true
2587
+ ],
2588
+ "shape": 1
2589
+ },
2590
+ {
2591
+ "id": 37,
2592
+ "type": "ModelSamplingAuraFlow",
2593
+ "pos": [
2594
+ 1640,
2595
+ 30
2596
+ ],
2597
+ "size": [
2598
+ 220,
2599
+ 70
2600
+ ],
2601
+ "flags": {},
2602
+ "order": 28,
2603
+ "mode": 4,
2604
+ "inputs": [
2605
+ {
2606
+ "name": "model",
2607
+ "type": "MODEL",
2608
+ "link": 1160
2609
+ }
2610
+ ],
2611
+ "outputs": [
2612
+ {
2613
+ "name": "MODEL",
2614
+ "type": "MODEL",
2615
+ "links": [
2616
+ 1165
2617
+ ]
2618
+ }
2619
+ ],
2620
+ "properties": {
2621
+ "cnr_id": "comfy-core",
2622
+ "ver": "0.3.66",
2623
+ "Node name for S&R": "ModelSamplingAuraFlow",
2624
+ "ue_properties": {
2625
+ "widget_ue_connectable": {},
2626
+ "input_ue_unconnectable": {},
2627
+ "version": "7.3"
2628
+ }
2629
+ },
2630
+ "widgets_values": [
2631
+ 3.7
2632
+ ],
2633
+ "color": "#422342",
2634
+ "bgcolor": "rgba(24,24,27,.9)",
2635
+ "shape": 1
2636
+ },
2637
+ {
2638
+ "id": 1,
2639
+ "type": "UNETLoader",
2640
+ "pos": [
2641
+ 10,
2642
+ -120
2643
+ ],
2644
+ "size": [
2645
+ 480,
2646
+ 82
2647
+ ],
2648
+ "flags": {},
2649
+ "order": 12,
2650
+ "mode": 0,
2651
+ "inputs": [],
2652
+ "outputs": [
2653
+ {
2654
+ "name": "MODEL",
2655
+ "type": "MODEL",
2656
+ "links": [
2657
+ 1,
2658
+ 1239
2659
+ ]
2660
+ }
2661
+ ],
2662
+ "properties": {
2663
+ "cnr_id": "comfy-core",
2664
+ "ver": "0.3.66",
2665
+ "Node name for S&R": "UNETLoader",
2666
+ "ue_properties": {
2667
+ "widget_ue_connectable": {},
2668
+ "input_ue_unconnectable": {},
2669
+ "version": "7.3"
2670
+ }
2671
+ },
2672
+ "widgets_values": [
2673
+ "ARAZmixQwen016_fp8_4steps.safetensors",
2674
+ "default"
2675
+ ],
2676
+ "color": "#422342",
2677
+ "bgcolor": "rgba(24,24,27,.9)",
2678
+ "shape": 1
2679
+ },
2680
+ {
2681
+ "id": 136,
2682
+ "type": "UpscaleModelLoader",
2683
+ "pos": [
2684
+ 3510,
2685
+ 80
2686
+ ],
2687
+ "size": [
2688
+ 300,
2689
+ 60
2690
+ ],
2691
+ "flags": {},
2692
+ "order": 13,
2693
+ "mode": 0,
2694
+ "inputs": [],
2695
+ "outputs": [
2696
+ {
2697
+ "name": "UPSCALE_MODEL",
2698
+ "type": "UPSCALE_MODEL",
2699
+ "links": [
2700
+ 1204
2701
+ ]
2702
+ }
2703
+ ],
2704
+ "properties": {
2705
+ "cnr_id": "comfy-core",
2706
+ "ver": "0.3.68",
2707
+ "Node name for S&R": "UpscaleModelLoader",
2708
+ "ue_properties": {
2709
+ "widget_ue_connectable": {},
2710
+ "input_ue_unconnectable": {},
2711
+ "version": "7.4.1"
2712
+ }
2713
+ },
2714
+ "widgets_values": [
2715
+ "4xPurePhoto-RealPLSKR.pth"
2716
+ ],
2717
+ "shape": 1
2718
+ },
2719
+ {
2720
+ "id": 95,
2721
+ "type": "easy wildcards",
2722
+ "pos": [
2723
+ 1110,
2724
+ 580
2725
+ ],
2726
+ "size": [
2727
+ 480,
2728
+ 230
2729
+ ],
2730
+ "flags": {},
2731
+ "order": 17,
2732
+ "mode": 0,
2733
+ "inputs": [
2734
+ {
2735
+ "name": "text",
2736
+ "type": "STRING",
2737
+ "widget": {
2738
+ "name": "text"
2739
+ },
2740
+ "link": 997
2741
+ },
2742
+ {
2743
+ "name": "seed",
2744
+ "type": "INT",
2745
+ "widget": {
2746
+ "name": "seed"
2747
+ },
2748
+ "link": 996
2749
+ }
2750
+ ],
2751
+ "outputs": [
2752
+ {
2753
+ "name": "text",
2754
+ "shape": 6,
2755
+ "type": "STRING",
2756
+ "links": []
2757
+ },
2758
+ {
2759
+ "name": "populated_text",
2760
+ "shape": 6,
2761
+ "type": "STRING",
2762
+ "links": [
2763
+ 1013,
2764
+ 1014
2765
+ ]
2766
+ }
2767
+ ],
2768
+ "properties": {
2769
+ "cnr_id": "comfyui-easy-use",
2770
+ "ver": "125b3a4905ac9367f7aae5c2df67e2282f0a3d37",
2771
+ "Node name for S&R": "easy wildcards",
2772
+ "ue_properties": {
2773
+ "widget_ue_connectable": {},
2774
+ "input_ue_unconnectable": {},
2775
+ "version": "7.4"
2776
+ }
2777
+ },
2778
+ "widgets_values": [
2779
+ "Subject: Breathtaking beautiful chic young Korean woman. __qwen1__\n\nDSC_0042.NEF, unretouched RAW 16-bit photograph, perfect color science, natural skin texture, JPEG compression artifact.",
2780
+ "Select the LoRA to add to the text",
2781
+ "Select the Wildcard to add to the text",
2782
+ 0,
2783
+ "fixed",
2784
+ false
2785
+ ],
2786
+ "shape": 1
2787
+ },
2788
+ {
2789
+ "id": 10,
2790
+ "type": "Power Lora Loader (rgthree)",
2791
+ "pos": [
2792
+ 610,
2793
+ -130
2794
+ ],
2795
+ "size": [
2796
+ 380,
2797
+ 320
2798
+ ],
2799
+ "flags": {},
2800
+ "order": 27,
2801
+ "mode": 0,
2802
+ "inputs": [
2803
+ {
2804
+ "dir": 3,
2805
+ "name": "model",
2806
+ "type": "MODEL",
2807
+ "link": 7
2808
+ },
2809
+ {
2810
+ "dir": 3,
2811
+ "name": "clip",
2812
+ "type": "CLIP",
2813
+ "link": 9
2814
+ }
2815
+ ],
2816
+ "outputs": [
2817
+ {
2818
+ "dir": 4,
2819
+ "name": "MODEL",
2820
+ "shape": 3,
2821
+ "type": "MODEL",
2822
+ "links": [
2823
+ 1160
2824
+ ]
2825
+ },
2826
+ {
2827
+ "dir": 4,
2828
+ "name": "CLIP",
2829
+ "shape": 3,
2830
+ "type": "CLIP",
2831
+ "links": [
2832
+ 19,
2833
+ 20
2834
+ ]
2835
+ }
2836
+ ],
2837
+ "properties": {
2838
+ "cnr_id": "rgthree-comfy",
2839
+ "ver": "2b9eb36d3e1741e88dbfccade0e08137f7fa2bfb",
2840
+ "Show Strengths": "Single Strength",
2841
+ "ue_properties": {
2842
+ "widget_ue_connectable": {},
2843
+ "input_ue_unconnectable": {},
2844
+ "version": "7.3"
2845
+ }
2846
+ },
2847
+ "widgets_values": [
2848
+ {},
2849
+ {
2850
+ "type": "PowerLoraLoaderHeaderWidget"
2851
+ },
2852
+ {
2853
+ "on": true,
2854
+ "lora": "Qwen-Image-Lightning-4steps-8steps-V1.0-bf16.safetensors",
2855
+ "strength": 0.5,
2856
+ "strengthTwo": null
2857
+ },
2858
+ {
2859
+ "on": false,
2860
+ "lora": "None",
2861
+ "strength": 0.9,
2862
+ "strengthTwo": null
2863
+ },
2864
+ {
2865
+ "on": false,
2866
+ "lora": "None",
2867
+ "strength": 0.5,
2868
+ "strengthTwo": null
2869
+ },
2870
+ {
2871
+ "on": false,
2872
+ "lora": "None",
2873
+ "strength": 0.5,
2874
+ "strengthTwo": null
2875
+ },
2876
+ {},
2877
+ ""
2878
+ ],
2879
+ "color": "#422342",
2880
+ "bgcolor": "rgba(24,24,27,.9)",
2881
+ "shape": 1
2882
+ },
2883
+ {
2884
+ "id": 9,
2885
+ "type": "Anything Everywhere",
2886
+ "pos": [
2887
+ 340,
2888
+ 740
2889
+ ],
2890
+ "size": [
2891
+ 172.1890625,
2892
+ 46
2893
+ ],
2894
+ "flags": {
2895
+ "collapsed": true
2896
+ },
2897
+ "order": 22,
2898
+ "mode": 0,
2899
+ "inputs": [
2900
+ {
2901
+ "color_on": "#FF6E6E",
2902
+ "label": "VAE",
2903
+ "name": "anything",
2904
+ "shape": 7,
2905
+ "type": "VAE",
2906
+ "link": 6
2907
+ },
2908
+ {
2909
+ "label": "anything",
2910
+ "name": "anything11",
2911
+ "type": "*",
2912
+ "link": null
2913
+ }
2914
+ ],
2915
+ "outputs": [],
2916
+ "title": "VAE Everywhere",
2917
+ "properties": {
2918
+ "cnr_id": "cg-use-everywhere",
2919
+ "ver": "29280c06edfaee07815724bffdab17db0a0a8c99",
2920
+ "Node name for S&R": "Anything Everywhere",
2921
+ "ue_properties": {
2922
+ "version": "7.3",
2923
+ "group_restricted": 0,
2924
+ "color_restricted": 0,
2925
+ "widget_ue_connectable": {},
2926
+ "input_ue_unconnectable": {},
2927
+ "title_regex": null,
2928
+ "input_regex": null,
2929
+ "group_regex": null,
2930
+ "repeated_type_rule": 0,
2931
+ "string_to_combo": 0,
2932
+ "next_input_index": 11
2933
+ }
2934
+ },
2935
+ "widgets_values": [],
2936
+ "shape": 1
2937
+ },
2938
+ {
2939
+ "id": 8,
2940
+ "type": "VaeGGUF",
2941
+ "pos": [
2942
+ 10,
2943
+ 640
2944
+ ],
2945
+ "size": [
2946
+ 480,
2947
+ 60
2948
+ ],
2949
+ "flags": {},
2950
+ "order": 14,
2951
+ "mode": 0,
2952
+ "inputs": [],
2953
+ "outputs": [
2954
+ {
2955
+ "name": "VAE",
2956
+ "type": "VAE",
2957
+ "links": [
2958
+ 6,
2959
+ 1680,
2960
+ 1679,
2961
+ 1678
2962
+ ]
2963
+ }
2964
+ ],
2965
+ "properties": {
2966
+ "cnr_id": "gguf",
2967
+ "ver": "a64ccbf6c694a46c181a444a1ac9d2d810607309",
2968
+ "Node name for S&R": "VaeGGUF",
2969
+ "ue_properties": {
2970
+ "widget_ue_connectable": {},
2971
+ "input_ue_unconnectable": {},
2972
+ "version": "7.3"
2973
+ }
2974
+ },
2975
+ "widgets_values": [
2976
+ "qwen_image_vae.safetensors"
2977
+ ],
2978
+ "shape": 1
2979
+ },
2980
+ {
2981
+ "id": 4,
2982
+ "type": "CLIPLoaderGGUF",
2983
+ "pos": [
2984
+ 10,
2985
+ 400
2986
+ ],
2987
+ "size": [
2988
+ 480,
2989
+ 82
2990
+ ],
2991
+ "flags": {},
2992
+ "order": 15,
2993
+ "mode": 0,
2994
+ "inputs": [],
2995
+ "outputs": [
2996
+ {
2997
+ "name": "CLIP",
2998
+ "type": "CLIP",
2999
+ "links": [
3000
+ 4,
3001
+ 1242
3002
+ ]
3003
+ }
3004
+ ],
3005
+ "properties": {
3006
+ "cnr_id": "ComfyUI-GGUF",
3007
+ "ver": "be2a08330d7ec232d684e50ab938870d7529471e",
3008
+ "Node name for S&R": "CLIPLoaderGGUF",
3009
+ "ue_properties": {
3010
+ "widget_ue_connectable": {},
3011
+ "input_ue_unconnectable": {},
3012
+ "version": "7.3"
3013
+ }
3014
+ },
3015
+ "widgets_values": [
3016
+ "Qwen2.5-VL-7B-Instruct-abliterated.Q6_K.gguf",
3017
+ "qwen_image"
3018
+ ],
3019
+ "color": "#c09430",
3020
+ "bgcolor": "rgba(24,24,27,.9)",
3021
+ "shape": 1
3022
+ }
3023
+ ],
3024
+ "links": [
3025
+ [
3026
+ 1,
3027
+ 1,
3028
+ 0,
3029
+ 3,
3030
+ 0,
3031
+ "*"
3032
+ ],
3033
+ [
3034
+ 2,
3035
+ 2,
3036
+ 0,
3037
+ 3,
3038
+ 1,
3039
+ "MODEL"
3040
+ ],
3041
+ [
3042
+ 3,
3043
+ 5,
3044
+ 0,
3045
+ 7,
3046
+ 0,
3047
+ "*"
3048
+ ],
3049
+ [
3050
+ 4,
3051
+ 4,
3052
+ 0,
3053
+ 7,
3054
+ 1,
3055
+ "CLIP"
3056
+ ],
3057
+ [
3058
+ 5,
3059
+ 7,
3060
+ 0,
3061
+ 6,
3062
+ 0,
3063
+ "CLIP"
3064
+ ],
3065
+ [
3066
+ 6,
3067
+ 8,
3068
+ 0,
3069
+ 9,
3070
+ 0,
3071
+ "VAE"
3072
+ ],
3073
+ [
3074
+ 7,
3075
+ 3,
3076
+ 0,
3077
+ 10,
3078
+ 0,
3079
+ "MODEL"
3080
+ ],
3081
+ [
3082
+ 9,
3083
+ 6,
3084
+ 0,
3085
+ 10,
3086
+ 1,
3087
+ "CLIP"
3088
+ ],
3089
+ [
3090
+ 16,
3091
+ 23,
3092
+ 0,
3093
+ 22,
3094
+ 1,
3095
+ "STRING"
3096
+ ],
3097
+ [
3098
+ 19,
3099
+ 10,
3100
+ 1,
3101
+ 25,
3102
+ 0,
3103
+ "CLIP"
3104
+ ],
3105
+ [
3106
+ 20,
3107
+ 10,
3108
+ 1,
3109
+ 22,
3110
+ 0,
3111
+ "CLIP"
3112
+ ],
3113
+ [
3114
+ 23,
3115
+ 29,
3116
+ 0,
3117
+ 28,
3118
+ 0,
3119
+ "NOISE"
3120
+ ],
3121
+ [
3122
+ 24,
3123
+ 14,
3124
+ 0,
3125
+ 28,
3126
+ 4,
3127
+ "LATENT"
3128
+ ],
3129
+ [
3130
+ 30,
3131
+ 34,
3132
+ 0,
3133
+ 29,
3134
+ 0,
3135
+ "INT"
3136
+ ],
3137
+ [
3138
+ 180,
3139
+ 43,
3140
+ 0,
3141
+ 49,
3142
+ 0,
3143
+ "IMAGE"
3144
+ ],
3145
+ [
3146
+ 257,
3147
+ 61,
3148
+ 0,
3149
+ 60,
3150
+ 0,
3151
+ "*"
3152
+ ],
3153
+ [
3154
+ 846,
3155
+ 33,
3156
+ 0,
3157
+ 28,
3158
+ 2,
3159
+ "SAMPLER"
3160
+ ],
3161
+ [
3162
+ 996,
3163
+ 34,
3164
+ 0,
3165
+ 95,
3166
+ 1,
3167
+ "INT"
3168
+ ],
3169
+ [
3170
+ 997,
3171
+ 26,
3172
+ 0,
3173
+ 95,
3174
+ 0,
3175
+ "STRING"
3176
+ ],
3177
+ [
3178
+ 1013,
3179
+ 95,
3180
+ 1,
3181
+ 25,
3182
+ 1,
3183
+ "STRING"
3184
+ ],
3185
+ [
3186
+ 1014,
3187
+ 95,
3188
+ 1,
3189
+ 94,
3190
+ 0,
3191
+ "STRING"
3192
+ ],
3193
+ [
3194
+ 1030,
3195
+ 25,
3196
+ 0,
3197
+ 99,
3198
+ 0,
3199
+ "CONDITIONING"
3200
+ ],
3201
+ [
3202
+ 1031,
3203
+ 22,
3204
+ 0,
3205
+ 99,
3206
+ 1,
3207
+ "CONDITIONING"
3208
+ ],
3209
+ [
3210
+ 1049,
3211
+ 104,
3212
+ 0,
3213
+ 32,
3214
+ 0,
3215
+ "MODEL"
3216
+ ],
3217
+ [
3218
+ 1089,
3219
+ 104,
3220
+ 0,
3221
+ 112,
3222
+ 0,
3223
+ "MODEL"
3224
+ ],
3225
+ [
3226
+ 1090,
3227
+ 99,
3228
+ 0,
3229
+ 112,
3230
+ 1,
3231
+ "CONDITIONING"
3232
+ ],
3233
+ [
3234
+ 1091,
3235
+ 99,
3236
+ 1,
3237
+ 112,
3238
+ 2,
3239
+ "CONDITIONING"
3240
+ ],
3241
+ [
3242
+ 1117,
3243
+ 36,
3244
+ 0,
3245
+ 112,
3246
+ 3,
3247
+ "FLOAT"
3248
+ ],
3249
+ [
3250
+ 1141,
3251
+ 112,
3252
+ 0,
3253
+ 28,
3254
+ 1,
3255
+ "GUIDER"
3256
+ ],
3257
+ [
3258
+ 1160,
3259
+ 10,
3260
+ 0,
3261
+ 37,
3262
+ 0,
3263
+ "MODEL"
3264
+ ],
3265
+ [
3266
+ 1165,
3267
+ 37,
3268
+ 0,
3269
+ 104,
3270
+ 0,
3271
+ "MODEL"
3272
+ ],
3273
+ [
3274
+ 1168,
3275
+ 124,
3276
+ 0,
3277
+ 70,
3278
+ 0,
3279
+ "IMAGE"
3280
+ ],
3281
+ [
3282
+ 1169,
3283
+ 124,
3284
+ 0,
3285
+ 61,
3286
+ 0,
3287
+ "*"
3288
+ ],
3289
+ [
3290
+ 1172,
3291
+ 52,
3292
+ 0,
3293
+ 43,
3294
+ 0,
3295
+ "LATENT"
3296
+ ],
3297
+ [
3298
+ 1196,
3299
+ 52,
3300
+ 0,
3301
+ 135,
3302
+ 0,
3303
+ "LATENT"
3304
+ ],
3305
+ [
3306
+ 1204,
3307
+ 136,
3308
+ 0,
3309
+ 135,
3310
+ 2,
3311
+ "UPSCALE_MODEL"
3312
+ ],
3313
+ [
3314
+ 1208,
3315
+ 124,
3316
+ 0,
3317
+ 138,
3318
+ 0,
3319
+ "IMAGE"
3320
+ ],
3321
+ [
3322
+ 1239,
3323
+ 1,
3324
+ 0,
3325
+ 144,
3326
+ 0,
3327
+ "*"
3328
+ ],
3329
+ [
3330
+ 1240,
3331
+ 2,
3332
+ 0,
3333
+ 144,
3334
+ 1,
3335
+ "*"
3336
+ ],
3337
+ [
3338
+ 1241,
3339
+ 5,
3340
+ 0,
3341
+ 145,
3342
+ 0,
3343
+ "*"
3344
+ ],
3345
+ [
3346
+ 1242,
3347
+ 4,
3348
+ 0,
3349
+ 145,
3350
+ 1,
3351
+ "*"
3352
+ ],
3353
+ [
3354
+ 1301,
3355
+ 14,
3356
+ 1,
3357
+ 159,
3358
+ 0,
3359
+ "*"
3360
+ ],
3361
+ [
3362
+ 1302,
3363
+ 14,
3364
+ 2,
3365
+ 160,
3366
+ 0,
3367
+ "*"
3368
+ ],
3369
+ [
3370
+ 1558,
3371
+ 167,
3372
+ 0,
3373
+ 164,
3374
+ 0,
3375
+ "NOISE"
3376
+ ],
3377
+ [
3378
+ 1559,
3379
+ 168,
3380
+ 0,
3381
+ 165,
3382
+ 0,
3383
+ "NOISE"
3384
+ ],
3385
+ [
3386
+ 1560,
3387
+ 166,
3388
+ 0,
3389
+ 165,
3390
+ 1,
3391
+ "GUIDER"
3392
+ ],
3393
+ [
3394
+ 1561,
3395
+ 170,
3396
+ 0,
3397
+ 171,
3398
+ 0,
3399
+ "SIGMAS"
3400
+ ],
3401
+ [
3402
+ 1562,
3403
+ 171,
3404
+ 0,
3405
+ 165,
3406
+ 3,
3407
+ "SIGMAS"
3408
+ ],
3409
+ [
3410
+ 1563,
3411
+ 171,
3412
+ 1,
3413
+ 164,
3414
+ 3,
3415
+ "SIGMAS"
3416
+ ],
3417
+ [
3418
+ 1564,
3419
+ 169,
3420
+ 0,
3421
+ 165,
3422
+ 2,
3423
+ "SAMPLER"
3424
+ ],
3425
+ [
3426
+ 1565,
3427
+ 169,
3428
+ 0,
3429
+ 164,
3430
+ 2,
3431
+ "SAMPLER"
3432
+ ],
3433
+ [
3434
+ 1566,
3435
+ 104,
3436
+ 0,
3437
+ 173,
3438
+ 0,
3439
+ "MODEL"
3440
+ ],
3441
+ [
3442
+ 1567,
3443
+ 99,
3444
+ 0,
3445
+ 172,
3446
+ 0,
3447
+ "CONDITIONING"
3448
+ ],
3449
+ [
3450
+ 1568,
3451
+ 99,
3452
+ 1,
3453
+ 172,
3454
+ 1,
3455
+ "CONDITIONING"
3456
+ ],
3457
+ [
3458
+ 1569,
3459
+ 173,
3460
+ 0,
3461
+ 166,
3462
+ 0,
3463
+ "MODEL"
3464
+ ],
3465
+ [
3466
+ 1570,
3467
+ 173,
3468
+ 0,
3469
+ 170,
3470
+ 0,
3471
+ "MODEL"
3472
+ ],
3473
+ [
3474
+ 1571,
3475
+ 172,
3476
+ 0,
3477
+ 166,
3478
+ 1,
3479
+ "CONDITIONING"
3480
+ ],
3481
+ [
3482
+ 1572,
3483
+ 172,
3484
+ 1,
3485
+ 166,
3486
+ 2,
3487
+ "CONDITIONING"
3488
+ ],
3489
+ [
3490
+ 1573,
3491
+ 165,
3492
+ 0,
3493
+ 164,
3494
+ 4,
3495
+ "LATENT"
3496
+ ],
3497
+ [
3498
+ 1574,
3499
+ 135,
3500
+ 0,
3501
+ 165,
3502
+ 4,
3503
+ "LATENT"
3504
+ ],
3505
+ [
3506
+ 1575,
3507
+ 177,
3508
+ 0,
3509
+ 176,
3510
+ 0,
3511
+ "*"
3512
+ ],
3513
+ [
3514
+ 1576,
3515
+ 174,
3516
+ 0,
3517
+ 175,
3518
+ 0,
3519
+ "IMAGE"
3520
+ ],
3521
+ [
3522
+ 1577,
3523
+ 164,
3524
+ 0,
3525
+ 174,
3526
+ 0,
3527
+ "LATENT"
3528
+ ],
3529
+ [
3530
+ 1578,
3531
+ 175,
3532
+ 0,
3533
+ 177,
3534
+ 0,
3535
+ "*"
3536
+ ],
3537
+ [
3538
+ 1579,
3539
+ 175,
3540
+ 0,
3541
+ 138,
3542
+ 1,
3543
+ "IMAGE"
3544
+ ],
3545
+ [
3546
+ 1596,
3547
+ 166,
3548
+ 0,
3549
+ 164,
3550
+ 1,
3551
+ "GUIDER"
3552
+ ],
3553
+ [
3554
+ 1660,
3555
+ 43,
3556
+ 0,
3557
+ 51,
3558
+ 0,
3559
+ "IMAGE"
3560
+ ],
3561
+ [
3562
+ 1661,
3563
+ 135,
3564
+ 1,
3565
+ 124,
3566
+ 0,
3567
+ "IMAGE"
3568
+ ],
3569
+ [
3570
+ 1662,
3571
+ 124,
3572
+ 0,
3573
+ 51,
3574
+ 1,
3575
+ "IMAGE"
3576
+ ],
3577
+ [
3578
+ 1669,
3579
+ 175,
3580
+ 0,
3581
+ 184,
3582
+ 0,
3583
+ "IMAGE"
3584
+ ],
3585
+ [
3586
+ 1673,
3587
+ 28,
3588
+ 0,
3589
+ 52,
3590
+ 0,
3591
+ "*"
3592
+ ],
3593
+ [
3594
+ 1674,
3595
+ 32,
3596
+ 0,
3597
+ 28,
3598
+ 3,
3599
+ "SIGMAS"
3600
+ ]
3601
+ ],
3602
+ "groups": [
3603
+ {
3604
+ "id": 1,
3605
+ "title": "๋ชจ๋ธ (2๊ฐœ ์ค‘ 1๊ฐœ ์„ ํƒ)",
3606
+ "bounding": [
3607
+ 0,
3608
+ -200,
3609
+ 500,
3610
+ 300
3611
+ ],
3612
+ "color": "#88A",
3613
+ "font_size": 24,
3614
+ "flags": {}
3615
+ },
3616
+ {
3617
+ "id": 3,
3618
+ "title": "CLIP (2๊ฐœ ์ค‘ 1๊ฐœ ์„ ํƒ)",
3619
+ "bounding": [
3620
+ 0,
3621
+ 150,
3622
+ 500,
3623
+ 350
3624
+ ],
3625
+ "color": "#b58b2a",
3626
+ "font_size": 24,
3627
+ "flags": {}
3628
+ },
3629
+ {
3630
+ "id": 4,
3631
+ "title": "VAE",
3632
+ "bounding": [
3633
+ 0,
3634
+ 550,
3635
+ 500,
3636
+ 200
3637
+ ],
3638
+ "color": "#A88",
3639
+ "font_size": 24,
3640
+ "flags": {}
3641
+ },
3642
+ {
3643
+ "id": 5,
3644
+ "title": "Vram ๋ถ€์กฑํ•  ๋•Œ CPU๋กœ ํ™œ์„ฑํ™”",
3645
+ "bounding": [
3646
+ 600,
3647
+ 330,
3648
+ 400,
3649
+ 170
3650
+ ],
3651
+ "color": "#b58b2a",
3652
+ "font_size": 24,
3653
+ "flags": {}
3654
+ },
3655
+ {
3656
+ "id": 6,
3657
+ "title": "LORA ์„ ํƒ",
3658
+ "bounding": [
3659
+ 600,
3660
+ -200,
3661
+ 400,
3662
+ 400
3663
+ ],
3664
+ "color": "#3f789e",
3665
+ "font_size": 24,
3666
+ "flags": {}
3667
+ },
3668
+ {
3669
+ "id": 8,
3670
+ "title": "ํ”„๋กฌํ”„ํŠธ",
3671
+ "bounding": [
3672
+ 1100,
3673
+ -200,
3674
+ 500,
3675
+ 700
3676
+ ],
3677
+ "color": "#8A8",
3678
+ "font_size": 24,
3679
+ "flags": {}
3680
+ },
3681
+ {
3682
+ "id": 9,
3683
+ "title": "Qwen T2I-Generate",
3684
+ "bounding": [
3685
+ 1900,
3686
+ -200,
3687
+ 2300,
3688
+ 1000
3689
+ ],
3690
+ "color": "#3f789e",
3691
+ "font_size": 24,
3692
+ "flags": {}
3693
+ },
3694
+ {
3695
+ "id": 10,
3696
+ "title": "์„ธํŒ…",
3697
+ "bounding": [
3698
+ 1910,
3699
+ -160,
3700
+ 290,
3701
+ 950
3702
+ ],
3703
+ "color": "#b58b2a",
3704
+ "font_size": 24,
3705
+ "flags": {}
3706
+ },
3707
+ {
3708
+ "id": 12,
3709
+ "title": "Wildcards",
3710
+ "bounding": [
3711
+ 1100,
3712
+ 510,
3713
+ 500,
3714
+ 750
3715
+ ],
3716
+ "color": "#3f789e",
3717
+ "font_size": 24,
3718
+ "flags": {}
3719
+ },
3720
+ {
3721
+ "id": 14,
3722
+ "title": "Qwen 1.5x refiner",
3723
+ "bounding": [
3724
+ 1900,
3725
+ 820,
3726
+ 2300,
3727
+ 1000
3728
+ ],
3729
+ "color": "#3f789e",
3730
+ "font_size": 24,
3731
+ "flags": {}
3732
+ },
3733
+ {
3734
+ "id": 15,
3735
+ "title": "Latent Scale",
3736
+ "bounding": [
3737
+ 3500,
3738
+ 10,
3739
+ 320,
3740
+ 343.6
3741
+ ],
3742
+ "color": "#3f789e",
3743
+ "font_size": 24,
3744
+ "flags": {}
3745
+ }
3746
+ ],
3747
+ "config": {},
3748
+ "extra": {
3749
+ "ds": {
3750
+ "scale": 0.5559917313494338,
3751
+ "offset": [
3752
+ -207.93158729685968,
3753
+ 42.77971497468159
3754
+ ]
3755
+ },
3756
+ "frontendVersion": "1.28.8",
3757
+ "ue_links": [
3758
+ {
3759
+ "downstream": 174,
3760
+ "downstream_slot": 1,
3761
+ "upstream": "8",
3762
+ "upstream_slot": 0,
3763
+ "controller": 9,
3764
+ "type": "VAE"
3765
+ },
3766
+ {
3767
+ "downstream": 43,
3768
+ "downstream_slot": 1,
3769
+ "upstream": "8",
3770
+ "upstream_slot": 0,
3771
+ "controller": 9,
3772
+ "type": "VAE"
3773
+ },
3774
+ {
3775
+ "downstream": 135,
3776
+ "downstream_slot": 1,
3777
+ "upstream": "8",
3778
+ "upstream_slot": 0,
3779
+ "controller": 9,
3780
+ "type": "VAE"
3781
+ }
3782
+ ],
3783
+ "links_added_by_ue": [
3784
+ 1681,
3785
+ 1682,
3786
+ 1683
3787
+ ],
3788
+ "VHS_latentpreview": true,
3789
+ "VHS_latentpreviewrate": 0,
3790
+ "VHS_MetadataImage": true,
3791
+ "VHS_KeepIntermediate": true
3792
+ },
3793
+ "version": 0.4
3794
+ }