-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for ComfyUI (#254)
Co-authored-by: Shigma <[email protected]> Co-authored-by: idranme <[email protected]>
- Loading branch information
1 parent
39cdf4f
commit b27a02c
Showing
4 changed files
with
381 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
{ | ||
"3": { | ||
"inputs": { | ||
"seed": 1, | ||
"steps": 20, | ||
"cfg": 8, | ||
"sampler_name": "euler", | ||
"scheduler": "normal", | ||
"denoise": 0.87, | ||
"model": [ | ||
"14", | ||
0 | ||
], | ||
"positive": [ | ||
"6", | ||
0 | ||
], | ||
"negative": [ | ||
"7", | ||
0 | ||
], | ||
"latent_image": [ | ||
"12", | ||
0 | ||
] | ||
}, | ||
"class_type": "KSampler", | ||
"_meta": { | ||
"title": "KSampler" | ||
} | ||
}, | ||
"6": { | ||
"inputs": { | ||
"text": "", | ||
"clip": [ | ||
"14", | ||
1 | ||
] | ||
}, | ||
"class_type": "CLIPTextEncode", | ||
"_meta": { | ||
"title": "CLIP Text Encode (Prompt)" | ||
} | ||
}, | ||
"7": { | ||
"inputs": { | ||
"text": "", | ||
"clip": [ | ||
"14", | ||
1 | ||
] | ||
}, | ||
"class_type": "CLIPTextEncode", | ||
"_meta": { | ||
"title": "CLIP Text Encode (Prompt)" | ||
} | ||
}, | ||
"8": { | ||
"inputs": { | ||
"samples": [ | ||
"3", | ||
0 | ||
], | ||
"vae": [ | ||
"14", | ||
2 | ||
] | ||
}, | ||
"class_type": "VAEDecode", | ||
"_meta": { | ||
"title": "VAE Decode" | ||
} | ||
}, | ||
"9": { | ||
"inputs": { | ||
"filename_prefix": "ComfyUI", | ||
"images": [ | ||
"8", | ||
0 | ||
] | ||
}, | ||
"class_type": "SaveImage", | ||
"_meta": { | ||
"title": "Save Image" | ||
} | ||
}, | ||
"10": { | ||
"inputs": { | ||
"image": "example.png", | ||
"upload": "image" | ||
}, | ||
"class_type": "LoadImage", | ||
"_meta": { | ||
"title": "Load Image" | ||
} | ||
}, | ||
"12": { | ||
"inputs": { | ||
"pixels": [ | ||
"10", | ||
0 | ||
], | ||
"vae": [ | ||
"14", | ||
2 | ||
] | ||
}, | ||
"class_type": "VAEEncode", | ||
"_meta": { | ||
"title": "VAE Encode" | ||
} | ||
}, | ||
"14": { | ||
"inputs": { | ||
"ckpt_name": "" | ||
}, | ||
"class_type": "CheckpointLoaderSimple", | ||
"_meta": { | ||
"title": "Load Checkpoint" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
{ | ||
"3": { | ||
"inputs": { | ||
"seed": 1, | ||
"steps": 20, | ||
"cfg": 8, | ||
"sampler_name": "euler", | ||
"scheduler": "normal", | ||
"denoise": 0.87, | ||
"model": [ | ||
"14", | ||
0 | ||
], | ||
"positive": [ | ||
"6", | ||
0 | ||
], | ||
"negative": [ | ||
"7", | ||
0 | ||
], | ||
"latent_image": [ | ||
"16", | ||
0 | ||
] | ||
}, | ||
"class_type": "KSampler", | ||
"_meta": { | ||
"title": "KSampler" | ||
} | ||
}, | ||
"6": { | ||
"inputs": { | ||
"text": "", | ||
"clip": [ | ||
"14", | ||
1 | ||
] | ||
}, | ||
"class_type": "CLIPTextEncode", | ||
"_meta": { | ||
"title": "CLIP Text Encode (Prompt)" | ||
} | ||
}, | ||
"7": { | ||
"inputs": { | ||
"text": "", | ||
"clip": [ | ||
"14", | ||
1 | ||
] | ||
}, | ||
"class_type": "CLIPTextEncode", | ||
"_meta": { | ||
"title": "CLIP Text Encode (Prompt)" | ||
} | ||
}, | ||
"8": { | ||
"inputs": { | ||
"samples": [ | ||
"3", | ||
0 | ||
], | ||
"vae": [ | ||
"14", | ||
2 | ||
] | ||
}, | ||
"class_type": "VAEDecode", | ||
"_meta": { | ||
"title": "VAE Decode" | ||
} | ||
}, | ||
"9": { | ||
"inputs": { | ||
"filename_prefix": "ComfyUI", | ||
"images": [ | ||
"8", | ||
0 | ||
] | ||
}, | ||
"class_type": "SaveImage", | ||
"_meta": { | ||
"title": "Save Image" | ||
} | ||
}, | ||
"14": { | ||
"inputs": { | ||
"ckpt_name": "" | ||
}, | ||
"class_type": "CheckpointLoaderSimple", | ||
"_meta": { | ||
"title": "Load Checkpoint" | ||
} | ||
}, | ||
"16": { | ||
"inputs": { | ||
"width": 512, | ||
"height": 800, | ||
"batch_size": 1 | ||
}, | ||
"class_type": "EmptyLatentImage", | ||
"_meta": { | ||
"title": "Empty Latent Image" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.