Nodes:Inspect, Any String, Model From URL
A collection of nodes I find useful.
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.
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)
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.
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.
Prints the input to the console, for debugging purposes.
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.