AI bulk image processing

Hi Glide Community, I have created AI image processing with workflow like this.


My question is that how can I make it bulk image processing with AI and adding row for each image with its details. How should I design the workflow for that?

You could use the new webhook workflow that allow you to do loops and call that Webhook with a call API action.

Or… Wait until the new “Manual Trigger” workflow is public!

So your flow works, but you want to process multiple rows/multiple images in an array like this? What’s the expected input?

So, input is multiple images of receipts. I Tried to use multiple images column and file upload component, but the issue is images are being processed in this kind of array, but being stored in just one row. A new row should be added for each image of receipt with its extracted data

I saw the video of invoice processing Ai agent from Glide’s you tube channel, and I thought it is achievable. Their app allowed bulk upload, and Ai processed and added multiple rows, each image in separate row. How they did it?

For now, you exactly need to move your flow from user activated to web trigger workflow which provide the loop operation thru array of the images.

1 Like

You can do it like this, assuming you’re on a plan that supports webhook workflows:

  • Add a webhook workflow and copy the steps above to that workflow. I think you also need a “Query” step first to parse out the image, and a loop to loop through the array.
  • Copy the workflow URL to your clipboard.
  • Add a normal action and a button on your screen to trigger the webhook workflow URL, paste the URL from the previous step here.
  • Add the image variable to the body of the trigger webhook module. This is what you’ll parse out later.