I can get the workflow to work for a single file of getting a file (not using Google, but I have 100+ files that need to be reviewed. How can I build a loop of all the files in Google Drive or read file from the web?
Hey @Sam-Middleton! If you’re reporting an issue with a flow or an error in a run, please include the run link and make sure it’s shareable so we can take a look.
Find your run link on the history page. Format: https://www.gumloop.com/pipeline?run_id={{your_run_id}}&workbook_id={{workbook_id}}
Make it shareable by clicking “Share” → ‘Anyone with the link can view’ in the top-left corner of the flow screen.
Provide details about the issue—more context helps us troubleshoot faster.
Hey @Sam-Middleton — I noticed you’ve already set the flow correctly with the nodes in Loop mode. Is there a specific issue with this approach? If so, could you share the failed run link using the steps mentioned in the message above?
To make this flow more robust, I’d recommend creating a subflow and wrapping it in an error shield. Here’s an example: Subflow Example
Hey, I’ve done a workaround with some public images, but it is annoying that images in Google Drive can’t be read by the images.
It would be helpful if you could temporarily store the image on your platform; otherwise, it seems like the Google Drive link doesn’t really have a function for images.
The Drive File Reader node outputs the file object.
Connect the file output directly to the file input of the Analyze Image node.
Option 2: If all your image files are stored within a Drive folder, you can use this setup instead: Pipeline with Drive Folder Reader.
The Drive Folder Reader node outputs a list of files.
Connect these files directly to the Analyze Image node.
The reason the Analyze Image node can’t directly handle Drive links (for now) is that it requires authorization with Drive, which is currently handled by the Drive nodes placed in between.
If you’re using the Zip File Reader that should still work. The Zip File Reader node has two outputs:
File name (aka the file itself)
File Content
So the zip file reader node can’t read the contents of the image file but it can output the image file itself which you can connect with the Analyze Image node, similar to the examples shared above.