I'm currently building a workflow where I want to:
- Start with an image (binary) input.
- Extract some information from the image and categorize it based on that.
- Then use Image Explainer to analyze the image in more detail.
What I'm doing:
- I'm using the image as binary input.
- I process and categorize it first (using other nodes).
- Then I try to pass the original binary image to Image Explainer.
Issue: Image Explainer doesn't work if the binary data is not coming directly from the previous node – even if I try using a Merge (Wait) node to preserve the original binary data.
I always get the error:No binary data set
Question for the community:How can I:
- Analyze and categorize an image first,
- then still pass the original binary to Image Explainer,
- even if the previous node was not binary-based?
Any ideas or workarounds would be really appreciated 🙏