comfyui-workflow-templates 0.1.30__py3-none-any.whl → 0.1.32__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- comfyui_workflow_templates/templates/api_stability_ai_i2i.json +79 -89
- comfyui_workflow_templates/templates/api_stability_ai_sd3.5_t2i.json +89 -103
- comfyui_workflow_templates/templates/flux_dev_full_text_to_image.json +26 -49
- comfyui_workflow_templates/templates/flux_kontext_dev_basic-1.webp +0 -0
- comfyui_workflow_templates/templates/flux_kontext_dev_basic-2.webp +0 -0
- comfyui_workflow_templates/templates/flux_kontext_dev_basic.json +168 -144
- comfyui_workflow_templates/templates/flux_kontext_dev_grouped-1.webp +0 -0
- comfyui_workflow_templates/templates/flux_kontext_dev_grouped-2.webp +0 -0
- comfyui_workflow_templates/templates/flux_schnell_full_text_to_image.json +28 -51
- comfyui_workflow_templates/templates/image_omnigen2_image_edit-1.webp +0 -0
- comfyui_workflow_templates/templates/image_omnigen2_image_edit-2.webp +0 -0
- comfyui_workflow_templates/templates/image_omnigen2_image_edit.json +1497 -0
- comfyui_workflow_templates/templates/image_omnigen2_t2i-1.webp +0 -0
- comfyui_workflow_templates/templates/image_omnigen2_t2i.json +774 -0
- comfyui_workflow_templates/templates/index.json +18 -1
- {comfyui_workflow_templates-0.1.30.dist-info → comfyui_workflow_templates-0.1.32.dist-info}/METADATA +9 -5
- {comfyui_workflow_templates-0.1.30.dist-info → comfyui_workflow_templates-0.1.32.dist-info}/RECORD +20 -15
- {comfyui_workflow_templates-0.1.30.dist-info → comfyui_workflow_templates-0.1.32.dist-info}/WHEEL +0 -0
- {comfyui_workflow_templates-0.1.30.dist-info → comfyui_workflow_templates-0.1.32.dist-info}/licenses/LICENSE +0 -0
- {comfyui_workflow_templates-0.1.30.dist-info → comfyui_workflow_templates-0.1.32.dist-info}/top_level.txt +0 -0
@@ -175,13 +175,30 @@
|
|
175
175
|
"title": "Image",
|
176
176
|
"type": "image",
|
177
177
|
"templates": [
|
178
|
+
{
|
179
|
+
"name": "image_omnigen2_t2i",
|
180
|
+
"title": "OmniGen2 Text to Image",
|
181
|
+
"mediaType": "image",
|
182
|
+
"mediaSubtype": "webp",
|
183
|
+
"description": "Generate high-quality images from text prompts using OmniGen2's unified 7B multimodal model with dual-path architecture.",
|
184
|
+
"tutorialUrl": "https://docs.comfy.org/tutorials/image/omnigen/omnigen2"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"name": "image_omnigen2_image_edit",
|
188
|
+
"title": "OmniGen2 Image Edit",
|
189
|
+
"mediaType": "image",
|
190
|
+
"mediaSubtype": "webp",
|
191
|
+
"thumbnailVariant": "hoverDissolve",
|
192
|
+
"description": "Edit images with natural language instructions using OmniGen2's advanced image editing capabilities and text rendering support.",
|
193
|
+
"tutorialUrl": "https://docs.comfy.org/tutorials/image/omnigen/omnigen2"
|
194
|
+
},
|
178
195
|
{
|
179
196
|
"name": "image_cosmos_predict2_2B_t2i",
|
180
197
|
"title": "Cosmos Predict2 2B T2I",
|
181
198
|
"mediaType": "image",
|
182
199
|
"mediaSubtype": "webp",
|
183
200
|
"description": "Generate images with Cosmos-Predict2 2B T2I, delivering physically accurate, high-fidelity, and detail-rich image generation.",
|
184
|
-
"tutorialUrl": "
|
201
|
+
"tutorialUrl": "https://docs.comfy.org/tutorials/image/omnigen/omnigen2"
|
185
202
|
},
|
186
203
|
{
|
187
204
|
"name": "image_chroma_text_to_image",
|
{comfyui_workflow_templates-0.1.30.dist-info → comfyui_workflow_templates-0.1.32.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: comfyui_workflow_templates
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.32
|
4
4
|
Summary: ComfyUI workflow templates package
|
5
5
|
Author: Comfy-Org
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -688,7 +688,7 @@ Dynamic: license-file
|
|
688
688
|
|
689
689
|
# workflow_templates
|
690
690
|
|
691
|
-
ComfyUI workflow templates
|
691
|
+
ComfyUI workflow templates available in the app by clicking the **Workflow** button then the **Browse Templates** button.
|
692
692
|
|
693
693
|
- [Adding New Templates](#adding-new-templates)
|
694
694
|
- [1 — Find Templates Folder](#1--find-templates-folder)
|
@@ -710,7 +710,7 @@ I will demonstrate how to add a new template by walking through the process of a
|
|
710
710
|
|
711
711
|
### 1 — Find Templates Folder
|
712
712
|
|
713
|
-
[Set up ComfyUI_frontend dev environment](https://github.com/Comfy-Org/ComfyUI_frontend?tab=readme-ov-file#development), start the dev server
|
713
|
+
[Set up ComfyUI_frontend dev environment](https://github.com/Comfy-Org/ComfyUI_frontend?tab=readme-ov-file#development). In the `ComfyUI_frontend/.env` file, add the line `DISABLE_TEMPLATES_PROXY=true` then start the dev server with `npm run dev`.
|
714
714
|
|
715
715
|
Copy the `templates` folder from this repository to the `ComfyUI_frontend/public` folder.
|
716
716
|
|
@@ -723,6 +723,10 @@ Either
|
|
723
723
|
|
724
724
|
I will get my workflow from the [ComfyUI_examples Wan 2.1 page](https://comfyanonymous.github.io/ComfyUI_examples/wan/). To get the workflow from the video on that page, I'll drag the video into [comfyui-embedded-workflow-editor](https://comfyui-embedded-workflow-editor.vercel.app/). Then I'll copy and paste it into a new json file on my computer.
|
725
725
|
|
726
|
+
> [!IMPORTANT]
|
727
|
+
>
|
728
|
+
> Make sure you start ComfyUI with `--disable-all-custom-nodes` when creating the workflow file (to prevent custom extensions adding metadata into the saved workflow file)
|
729
|
+
|
726
730
|
### 3 — Obtain Thumbnails
|
727
731
|
|
728
732
|
Ideally, the thumbnail is simply the output produced by the workflow on first execution. As an example, see the output of the [**_Mixing ControlNets_** template](https://docs.comfy.org/tutorials/controlnet/mixing-controlnets):
|
@@ -1032,8 +1036,8 @@ Raw markdown used:
|
|
1032
1036
|
### 11 — Bump Version and Create PR
|
1033
1037
|
|
1034
1038
|
1. Fully test the workflow: delete the models, input images, etc. and try it as a new user would. Ensure the process has no hiccups and you can generate the thumbnail image on the first execution (if applicable).
|
1035
|
-
2. Create a fork of https://github.com/Comfy-Org/workflow_templates
|
1036
|
-
3. Clone the fork to your system
|
1039
|
+
2. Create a fork of https://github.com/Comfy-Org/workflow_templates (or just checkout a new branch if you are a Comfy-Org collaborator)
|
1040
|
+
3. Clone the fork to your system (if not a collaborator)
|
1037
1041
|
4. Copy your new workflow and thumbnail(s) into the `templates` folder
|
1038
1042
|
5. Add your changes to the `templates/index.json` file
|
1039
1043
|
6. Bump the version in `pyproject.toml` ([example](https://github.com/Comfy-Org/workflow_templates/pull/32))
|
{comfyui_workflow_templates-0.1.30.dist-info → comfyui_workflow_templates-0.1.32.dist-info}/RECORD
RENAMED
@@ -100,12 +100,12 @@ comfyui_workflow_templates/templates/api_runway_text_to_image-1.webp,sha256=euRT
|
|
100
100
|
comfyui_workflow_templates/templates/api_runway_text_to_image.json,sha256=ebn1XYdMSTeoxwwFt45svnVEfURNLUmJw77pTCXM0TI,5409
|
101
101
|
comfyui_workflow_templates/templates/api_stability_ai_i2i-1.webp,sha256=d30IwubF7lDzIGIV-UrAv7AJg0rOGB0v-8b6AL-zAps,12800
|
102
102
|
comfyui_workflow_templates/templates/api_stability_ai_i2i-2.webp,sha256=BKc2_mL1iAKs9sbPkiEe5Y8XXmIW33xf9LUAolR2wh0,17222
|
103
|
-
comfyui_workflow_templates/templates/api_stability_ai_i2i.json,sha256=
|
103
|
+
comfyui_workflow_templates/templates/api_stability_ai_i2i.json,sha256=Rw0C6Pb_VtCzNkzGOUXasE1Noo7ZteDbeUigoHqI3iM,4754
|
104
104
|
comfyui_workflow_templates/templates/api_stability_ai_sd3.5_i2i-1.webp,sha256=fErvFF0cAJbfQxJOEare3YE36IMCx6c8CG2rN2EGB_0,16286
|
105
105
|
comfyui_workflow_templates/templates/api_stability_ai_sd3.5_i2i-2.webp,sha256=3RqnLcBvM3O0lxle5dSWkrlfcCmfCOsudPnoyCPdQPg,19086
|
106
106
|
comfyui_workflow_templates/templates/api_stability_ai_sd3.5_i2i.json,sha256=e8seZy7Ob3549EfJvCi-HaRf75SHcZwzTMCHObNK2oQ,7623
|
107
107
|
comfyui_workflow_templates/templates/api_stability_ai_sd3.5_t2i-1.webp,sha256=hyhhCJF34Fgju7o2k9_9acdyL6azviDa9E00Bn0rrIE,18384
|
108
|
-
comfyui_workflow_templates/templates/api_stability_ai_sd3.5_t2i.json,sha256=
|
108
|
+
comfyui_workflow_templates/templates/api_stability_ai_sd3.5_t2i.json,sha256=qdxzjiPhB2iPpLfdmQ_dUdGHUgvXQayX1X3c8UkzSTY,5806
|
109
109
|
comfyui_workflow_templates/templates/api_stability_ai_stable_image_ultra_t2i-1.webp,sha256=cJZ1qYgFKaeBw0P7PdDAELblEVtFroMZIc0BMZJpl8s,11052
|
110
110
|
comfyui_workflow_templates/templates/api_stability_ai_stable_image_ultra_t2i.json,sha256=C7vthS6m-c4nx5sywUO13ezWf8NuVF02STHiskLvwJk,4811
|
111
111
|
comfyui_workflow_templates/templates/api_tripo_image_to_model-1.webp,sha256=UXjUa7LBpGYP1d2hXHMOkeD2mKg_3U37QbAeOOtUOdc,6504
|
@@ -157,25 +157,25 @@ comfyui_workflow_templates/templates/flux_dev_checkpoint_example-1.webp,sha256=Q
|
|
157
157
|
comfyui_workflow_templates/templates/flux_dev_checkpoint_example.json,sha256=pHaJN6AE455HU2gYKjS_YWlNxEoWf7MayTMvuXeHN0A,7510
|
158
158
|
comfyui_workflow_templates/templates/flux_dev_example.json,sha256=1KoScfws8ywZiiOCZ--Sc4uajEmYTG1vvZeDg3EdfjE,17859
|
159
159
|
comfyui_workflow_templates/templates/flux_dev_full_text_to_image-1.webp,sha256=H-DalXuEV_LOZSUECDMDLMgnhkMemOxHHYMFfa7ErDw,13528
|
160
|
-
comfyui_workflow_templates/templates/flux_dev_full_text_to_image.json,sha256=
|
160
|
+
comfyui_workflow_templates/templates/flux_dev_full_text_to_image.json,sha256=TRp3HG0_fhDOZGXICqj7Wouzw1Ezqnp2pQYkrIEcatA,11205
|
161
161
|
comfyui_workflow_templates/templates/flux_fill_inpaint_example-1.webp,sha256=pyW041VSXSaapbqtM0TDHV_E-3lLgAfiiZ5s_Ath0gU,163698
|
162
162
|
comfyui_workflow_templates/templates/flux_fill_inpaint_example-2.webp,sha256=EcCzFVxsZA7JU1iPesZFZz9Yw4GoNN_PnBVXnHzA4Yw,50652
|
163
163
|
comfyui_workflow_templates/templates/flux_fill_inpaint_example.json,sha256=YDQpf7OknuQJWb7HFj1eaOQJO2Cd76dqQu1gRoIQyTY,10145
|
164
164
|
comfyui_workflow_templates/templates/flux_fill_outpaint_example-1.webp,sha256=UVRez7_KbET_suN9nDMkdMLEKyDgIV4sM5FJPLDT6YQ,411528
|
165
165
|
comfyui_workflow_templates/templates/flux_fill_outpaint_example-2.webp,sha256=kN1nJRCqB5Mss3VrE1ysM84ucccKqy6B_QybyOx_Lhs,102674
|
166
166
|
comfyui_workflow_templates/templates/flux_fill_outpaint_example.json,sha256=ERUjptkcx8m8c9NTMC_rI13wraQacB-yvteSdsObASs,10789
|
167
|
-
comfyui_workflow_templates/templates/flux_kontext_dev_basic-1.webp,sha256=
|
168
|
-
comfyui_workflow_templates/templates/flux_kontext_dev_basic-2.webp,sha256=
|
169
|
-
comfyui_workflow_templates/templates/flux_kontext_dev_basic.json,sha256=
|
170
|
-
comfyui_workflow_templates/templates/flux_kontext_dev_grouped-1.webp,sha256=
|
171
|
-
comfyui_workflow_templates/templates/flux_kontext_dev_grouped-2.webp,sha256=
|
167
|
+
comfyui_workflow_templates/templates/flux_kontext_dev_basic-1.webp,sha256=I39qdFONKxwwHl10QYpuE25xUsiEvG5IkqNYPiCfs-8,6090
|
168
|
+
comfyui_workflow_templates/templates/flux_kontext_dev_basic-2.webp,sha256=vDs0V09e-y_er2_ZuAbWx0aV8b4hXkBbKcHDYhMUd7U,5750
|
169
|
+
comfyui_workflow_templates/templates/flux_kontext_dev_basic.json,sha256=s068aUHfwJ2T8dhwSK9MGQqmQuhcFWX3THdDu_ItLrI,29146
|
170
|
+
comfyui_workflow_templates/templates/flux_kontext_dev_grouped-1.webp,sha256=B-hBcdbdbQQpcnITl9Q25iKyMGA0Ls9ZCrGq2lJ2djA,19058
|
171
|
+
comfyui_workflow_templates/templates/flux_kontext_dev_grouped-2.webp,sha256=INPNwY0XkHrBxsfqOGQ5VJhdjj2keCyN4tuSd-5KyRE,18398
|
172
172
|
comfyui_workflow_templates/templates/flux_kontext_dev_grouped.json,sha256=yQPO5fL4fYiZSbOGkqv4cZuRtThc7THENS-daksfKrY,60219
|
173
173
|
comfyui_workflow_templates/templates/flux_redux_model_example-1.webp,sha256=l8rT3albRcVhscTTChI4AsSun_TrK1vheeRAT5cEWUw,241202
|
174
174
|
comfyui_workflow_templates/templates/flux_redux_model_example.json,sha256=dtNHBBMMn81Ch67l2XPTpqDAgEKbW3OmetFqXFkN1AM,22230
|
175
175
|
comfyui_workflow_templates/templates/flux_schnell-1.webp,sha256=fQ7jcpAp78BSu5t0wgmd9bpJKOcmQrJpHDw69Sd1oRw,206234
|
176
176
|
comfyui_workflow_templates/templates/flux_schnell.json,sha256=BfKqfFwc1L-rzG4lQQ9dQoYlfz7XjRDFQmVcTlxix3o,6800
|
177
177
|
comfyui_workflow_templates/templates/flux_schnell_full_text_to_image-1.webp,sha256=f01DpiGDdTmAMlVBxYU0iWXgtf455MZ6MJhq8ohfiOU,9164
|
178
|
-
comfyui_workflow_templates/templates/flux_schnell_full_text_to_image.json,sha256=
|
178
|
+
comfyui_workflow_templates/templates/flux_schnell_full_text_to_image.json,sha256=cSh1MUG1crJ5ly6dKRdBdnPcwd5pzh8ZSDraWUNBVxc,11231
|
179
179
|
comfyui_workflow_templates/templates/gligen_textbox_example-1.webp,sha256=4Lv5YE_FdAhd4WOYgyjtSeEUxLnbMnYlC1sJRa6ITmI,105278
|
180
180
|
comfyui_workflow_templates/templates/gligen_textbox_example.json,sha256=r3_kgShDHO2H4TTZMuyKb5LhWFH9TMWcOglYj8DZDxU,10644
|
181
181
|
comfyui_workflow_templates/templates/hidream_e1_full-1.webp,sha256=tXB3w4iU-xxrCl55aT2snaGzJ0mf5y5Own9YuRxtX3A,28514
|
@@ -202,11 +202,16 @@ comfyui_workflow_templates/templates/image_cosmos_predict2_2B_t2i.json,sha256=mw
|
|
202
202
|
comfyui_workflow_templates/templates/image_lotus_depth_v1_1-1.webp,sha256=24clQhse73tuC2Ri5lZsghiYoECe1XKSVUmvZSvlK4c,12820
|
203
203
|
comfyui_workflow_templates/templates/image_lotus_depth_v1_1-2.webp,sha256=2M5jXOOJrKoQLx38UACmM0P7ZVsCEBFsm6uWlEy-boY,3812
|
204
204
|
comfyui_workflow_templates/templates/image_lotus_depth_v1_1.json,sha256=h17mqGQj9DI4Q3lBCtI6b48lTrXSrqODR-hsmjTtKbY,14623
|
205
|
+
comfyui_workflow_templates/templates/image_omnigen2_image_edit-1.webp,sha256=G7DlzQV-t8C3hQvQwtGX7mmh_G29U-cIavVeLTI5wZI,17930
|
206
|
+
comfyui_workflow_templates/templates/image_omnigen2_image_edit-2.webp,sha256=UQfIYp5vMvduA5sVN2ipvYyNJlUY5X_JC4iAyJSb_To,12610
|
207
|
+
comfyui_workflow_templates/templates/image_omnigen2_image_edit.json,sha256=bbRFhV4nGAVnqx835BBAt_P5bzvJ8tFZpdo7eJfOpy4,26549
|
208
|
+
comfyui_workflow_templates/templates/image_omnigen2_t2i-1.webp,sha256=oHa0XBflw650WZZnsiNIWYBo_TFR8pRh-pf6pKoPTPU,16090
|
209
|
+
comfyui_workflow_templates/templates/image_omnigen2_t2i.json,sha256=XT4c9KpUaxXuHAn3wSL-XNZH-Zr0p8XR7e47uZt3jYA,14720
|
205
210
|
comfyui_workflow_templates/templates/image_to_video-1.webp,sha256=-3fIlyNhM-troUW26JujOOcHmwWelmA62TRJDtuzUdc,2585202
|
206
211
|
comfyui_workflow_templates/templates/image_to_video.json,sha256=K9cTs3xf59MAQJoM9oHUy0z81Eq1Be96tDstmHwSvC4,6667
|
207
212
|
comfyui_workflow_templates/templates/image_to_video_wan-1.webp,sha256=cxtxeW5KepuVvqInT1G4d6ddKN_qCWzzWW4sv0Yl6PI,926424
|
208
213
|
comfyui_workflow_templates/templates/image_to_video_wan.json,sha256=eJJzxJcRo-f2P1EW3OOPFm0Nx-6rxFdpdkRVcXPATs4,11813
|
209
|
-
comfyui_workflow_templates/templates/index.json,sha256=
|
214
|
+
comfyui_workflow_templates/templates/index.json,sha256=gR3C5kAo-n9tbeySPjB7Tp2yi48F0lMn6nesdj2C0DY,42723
|
210
215
|
comfyui_workflow_templates/templates/index.schema.json,sha256=g0sy0uPiRbVSKLVP4bxnMvR1Dp2ge-Bz24fdqktIBV4,2525
|
211
216
|
comfyui_workflow_templates/templates/inpaint_example-1.webp,sha256=K1MjV5PMIuBeOnvDXSgkiM6AVU8qCCjKCjc9TdLP6_k,130944
|
212
217
|
comfyui_workflow_templates/templates/inpaint_example-2.webp,sha256=v1vOU116p5-TSrV1LLaEaWy1n65__HHRFgMQkoB0pW4,37306
|
@@ -284,8 +289,8 @@ comfyui_workflow_templates/templates/wan2.1_fun_control-2.webp,sha256=czOi3YuJI9
|
|
284
289
|
comfyui_workflow_templates/templates/wan2.1_fun_control.json,sha256=DtwD0aCFtDAfmHFZ60SmVaTQCwAKy27Ggpi5YHTjdbE,20623
|
285
290
|
comfyui_workflow_templates/templates/wan2.1_fun_inp-1.webp,sha256=0xKRBDLFCbMrni6o5zFlVt6o5a38Rxg1_Q0ETU2hPHc,1578046
|
286
291
|
comfyui_workflow_templates/templates/wan2.1_fun_inp.json,sha256=PFoDxG-3_scsi2TGnDukSJ31dMC6j8ZYLqLQ_uJE5xM,19174
|
287
|
-
comfyui_workflow_templates-0.1.
|
288
|
-
comfyui_workflow_templates-0.1.
|
289
|
-
comfyui_workflow_templates-0.1.
|
290
|
-
comfyui_workflow_templates-0.1.
|
291
|
-
comfyui_workflow_templates-0.1.
|
292
|
+
comfyui_workflow_templates-0.1.32.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
293
|
+
comfyui_workflow_templates-0.1.32.dist-info/METADATA,sha256=FjNGrcgnCa7juik-bOh6JRFJ6m88JvnaEV2b5VrO480,55821
|
294
|
+
comfyui_workflow_templates-0.1.32.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
295
|
+
comfyui_workflow_templates-0.1.32.dist-info/top_level.txt,sha256=u4ElFwwqJ25NY9OpjIB2eFEaFoAIk4bHrlGJKPMwJOo,27
|
296
|
+
comfyui_workflow_templates-0.1.32.dist-info/RECORD,,
|
{comfyui_workflow_templates-0.1.30.dist-info → comfyui_workflow_templates-0.1.32.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|