Nodes Browser

ComfyDeploy: How ComfyUI-Vivax-Nodes works in ComfyUI?

What is ComfyUI-Vivax-Nodes?

Nodes:Inspect, Any String, Model From URL

How to install it in ComfyDeploy?

Head over to the machine page

  1. Click on the "Create a new machine" button
  2. Select the Edit build steps
  3. Add a new step -> Custom Node
  4. Search for ComfyUI-Vivax-Nodes and select it
  5. Close the build step dialig and then click on the "Save" button to rebuild the machine

Vivax-Nodes

A collection of nodes I find useful.

Nodes

Chunk Up

Splits the input list or batch into chunks of the specified size. This is usefull in combination with For Loops to process large lists in smaller chunks. For example you can process 64 latents in batches of 32 if you dont have enough vram.

Get chunk

Gets the chunk at the specified index from the input list. The index input can be attached to the remaining output of a for loop (make sure "one_index" is enabled to use 1-based indexing in this case)

Join Chunks

This takes in a chunk and a batch, and joins the chunk to the batch. this is useful at the end of the for loop to collect the results.

Model from URL

Download the model from the specified URL to the output folder, and outputs it filename. If no filename is provided the response headers, or url ending will be used. The nodes checks if the file already exists, and if it does it will not download it again.

Inspect

Prints the input to the console, for debugging purposes.

Any String

Outputs the input string, but allowed to connect to anything, useful for example to specify the same lora model to multiple nodes. Or other string inputs that arent a generic string input.