https://github.com/bobmagicii/comfykit-custom-nodes
My custom nodes for ComfyUI
https://github.com/bobmagicii/comfykit-custom-nodes
Last synced: 10 days ago
JSON representation
My custom nodes for ComfyUI
- Host: GitHub
- URL: https://github.com/bobmagicii/comfykit-custom-nodes
- Owner: bobmagicii
- License: bsd-2-clause
- Created: 2024-04-02T20:33:09.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-22T22:28:30.000Z (8 months ago)
- Last Synced: 2024-08-22T23:53:07.948Z (8 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-comfyui - **ComfyKit Custom Nodes**
README
# ComfyKit Custom Nodes
## LoraStackFiveSimple (LoRA S5)
Accepts 5 LoRAs to blend and a weight value to apply. It applies the same
weight to both the Model and CLIP as I never found myself with an obvious
positive result when desyncing them. Does not mean it cannot, I just do not
and therefore did this to save screen space on the home view of the workflow.
## Typecaster
### (CLIP, Conditioning, Image, Latent, Model, VAE)Recasts the input as typed output without doing anything to it. This helps with workflows where one node can output "anything" and send it to a node that can take "anything". These type of nodes often struggle the first time a workflow is loaded in the browser as their wiring accepts anything but may not notice what kind of anything it had until you queue a job once and let it fail.
In code it would be the same as being like `emptyLatent = (Latent)emptyLatent;`
