[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. (?)
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