Hi everyone,
I have a question about using OpenAI in Make.
Right now, I have an Array output that gives me 3 direct image URLs. What I want is to send these 3 images to OpenAI (GPT) in one single call, so GPT can analyze them together at the same time.
But when I pass the array directly, GPT only reads the first item.
My question: How can I structure the data (messages/content) so that GPT will analyze all 3 images in a single request?
And if this is not possible in one call, what’s the best alternative solution?
Thanks in advance for your help!
Can you ask ChatGPT to analyze three images simultaneously? If you can’t, the API won’t be able to either.
If you can.… well, that still doesn’t mean you can do it with the API. It’s possible that ChatGPT does some magic with its API to do that.
In your case, you might have to use an iterator and send three separate requests to the AI so it analyzes each image separately.
If the API says that you are allowed to send multiple images for analysis, the best approach is to understand the structure of the call as it’s explained by the API documentation.
Then, find a way with the various text parser tools to generate the same thing with Make.
L