My scenario is that in a flow, I use a set of images for the model to understand, but the model’s provider has a limit on the number of images per request—say, 5. So I want to chunk this set of images into groups of 5 and call the model in parallel for each group.
I’d like to ask the community if anyone has any ideas for this scenario.
-
The List Operator doesn’t support chunk operations.
-
The Code node can operate on arrays, but the output type of the node cannot be set to File, so the type mismatch prevents its use in subsequent nodes.