EasyUse/Logicgenerated
Batch Any(batchAnything)
The Batch Any node (class batchAnything) is a generic utility in the EasyUse/Logic category.
batch Anything
any_1
any_2
batch
Easy Use
Description
The Batch Any node (class batchAnything) is a generic utility in the EasyUse/Logic category. It takes two arbitrary inputs and combines them into a single batched output. This is useful when you need to pass multiple values — prompts, numbers, tensors, or other ComfyUI data — through one connection without requiring them to share a specific data type.
Inputs
Both inputs are required and accept any data type (ANYTYPE):
- any_1: The first item to include in the batch.
- any_2: The second item to include in the batch.
Because the inputs use ANYTYPE, any_1 and any_2 can be different types.
Outputs
- ANYTYPE: The combined batch containing
any_1andany_2. The exact structure depends on the types of the connected inputs and the batching logic used by the node.
Usage Notes
- Use this node when you need to group two arbitrary values for use in a logic workflow.
- The output is also
ANYTYPE, so it can be connected to any node that accepts a generic input, but verify that the downstream node can handle the resulting batch structure. - This node has no extra widgets or options; its behavior is controlled entirely by the two connected inputs.
Comments
Sign in with GitHub to join the discussion.