Parallel modules executing and data distributing

Greetings,

[Google sheets → Watch New rows] module gets me all values from A column at once.
Then, the values from that module are sent [OpenAI - Ask an Assistant] module one-by-one and answers are written oe-by-one to the same sheet, to B column.

That works good.

But can some parallelism be used here? Like - from that [Watch new rows] module, values would be distributed to TWO (or more) openAI modules (each module receives different value) and they would write answers to B column (row of that question) of that sheet. (?)

1 Like

Welcome to the Make community!

Make does not allow running of bundles/operations within a single scenario execution in Parallel.

That’s a great idea! I’m sure others would agree that this is a nice feature to have.

You can submit this suggestion to the Idea exchange, under Platform ideas and improvements.

Don’t forget to search for it first, just in case someone already suggested it, so that you don’t end up creating a duplicate.
Screenshot_2024-01-17_130153

Hope this helps!

samliewrequest private consultation

Join the Make Fans Discord server to chat with other makers!

If i understand the ask correctly … could you do this by wrapping the OpenAI call behind a webhook - and then calling the webhook multiple times - not waiting on a reply.
I’m not sure if the webhook wrapper would process these serially or in parallel - something you would have to test.
Just a thought :nerd_face:

I’m looking for the same.