How to process multiple iterated variables through filters

Hey everyone this is my first post here hope you’ll be patient if i get something wrong :pray:
i am having a hard time figuring out how to perform the following workflow:

  1. a text parser outputs multiple bundles each with two variables $1 and 2$

$1 can be either “google” or “dalle”
$2 is a text description of something

  1. an aggregator

  2. an iterator

  3. a router with filters to split all the $2 in two directions according to whether the variable $1 in their bundle was “google” or “dalle”. each direction of the router proceeds then to be processed by an AI module which generate/searches an image for the given description.

i have managed to get it right for the first result of the iterator, however i would like to know how to have this scenario process all the results not just the first bundle.
this is because i could have 5 variables $2 going to route “A” for example and 4 variables $2 going to route “B”. I would need all of them to be processed accordingly resulting in 9 images total.
some attachments for context, if i need to upload something else or provide certain info please let me know!

thanks to everyone who will help!