Nodes Browser
ComfyDeploy: How ComfyUI JMNodes works in ComfyUI?
What is ComfyUI JMNodes?
Provides nodes to support generation of all possible combinations of a set of prompts via boolean logic
How to install it in ComfyDeploy?
Head over to the machine page
- Click on the "Create a new machine" button
- Select the
Edit
build steps - Add a new step -> Custom Node
- Search for
ComfyUI JMNodes
and select it - Close the build step dialig and then click on the "Save" button to rebuild the machine
JMNodes for ComfyUI
Nodes to allow for binary combinations of several additive prompts. Useful for situations where you want to create every combination of a set of prompts. Can be more controllable than random picks using comfyUIs built in {option1|option2} prompt syntax
Installation
- Clone this repo into
custom_nodes
folder. - These nodes have no dependencies so no need to pip install a requirements.txt
- You will need a combination node to join multiple prompt options together like
- An example workflow is provided in the repo (it uses some other nodes you can install from comfyUI Manager)
Nodes:
Create List of Numbers JM
Given a n integer from 0 to 1023, returns a list of every integer up to that number.
Useful as an input to Integer to Boolean Values JM
Integer to Boolean Values JM
Converts the list of integers provided by create List of Numbers JM
(or any other integer input) into binary outputs
For use by Switchable Prompt JM
or other Nodes
Switchable Prompt JM
Takes a string input and passes on either that string or the empty string depending on a boolean input.
Can be used with create List of Numbers JM
and Integer to Boolean Values JM
to create prompt combinations