I’m crating a message and adding it into the assistant trun and its working well apart from if I send a url to Azure blob storage account.
If the value of blobUrl below is a random pic i grab the url of from google image search then it can see the image and it works but if the url is on blobstorage then it says "I’m unable to view the image directly. "
Why will it not see the image? The image is visible externally of azure
const message = JSON.stringify({
model: "gpt-4o",
messages: [
{
role: "user",
content: [
{
type: "text",
text: "",
},
{
type: "image_url",
image_url: blobUrl,
},
],
},
],
});