This might be more straightforward than I think - but I can’t seen to figure it out.
I am receiving a string representing an image from an incoming webhook. I use a conversion from that Base64 string to image, do some image processing and return the data object containing the image to the webhook reply. This works fine.
Now what I want is to execute a parallel path that creates a text output from an AI model. The goal is to return both the image and AI text in a single webhook response.
Any ideas on how I can best accomplish this?
Thanks!