I would like to have parameter unpack in pair, set (if there is more than 2), not cross product.
@task
def add(x: int, y: int):
return x + y
added_values = add.expand(x=[4, 8], y=[40, 80])
# I need
# add(x=4, y=40)
# add(x=8, y=80)
# I dont need
# add(x=4, y=80)
# add(x=8, y=40)