GPT-4o mini, image_url is only supported by certain models

Hello,

I’ve recently encountered an issue where I’m receiving the error message “image_url is only supported by certain models” when pushing an image to the API. Previously, I didn’t experience this error. Has there been any recent change to the image handling rules for the GPT-4o Mini model?

Thank you for your assistance.

I’ve been encountering a similar issue with the GPT-4o-2024-08-06 where I receive random “image_url is only supported by certain models” errors when sending queries sequentially in response to a stream of video frames. This issue started occurring only recently, and wasn’t a problem before yesterday.

To troubleshoot, I’ve confirmed that there are no formatting issues with my messages. Also, when I resend the same message that previously caused an error, it works without any issues on the second try. I’ve even tried downgrading the python-openai package to v1.50.2, but the problem persists, which leads me to believe that recent changes to the Realtime API might have affected the backend server behavior.

Hope this issue to be resolved soon

1 Like

Recently also encountered the same issue with gpt-4o-mini, the application originally had been containerized and deployed for production, and suddenly the API enpoint returns:

{ "error": { "message": "Invalid content type. image_url is only supported by certain models.", "type": "invalid_request_error", "param": "messages.[0].content.[1].type", "code": null }

The method I used is the API requests/httpx instead of python-sdk, for the reference.