I’m developing a CV review system that processes thousands of submissions daily. It seems that all the submissions are currently being sent to the model simultaneously for evaluation. How can I configure it to process them one at a time instead? Or does processing them concurrently have no significant impact?
I tried working with the “loop over items node“, but the loops finishes, then sends everything at the same time to the model.