We’re seeing an increased error rate with GPT-4o vision. Est. ~5-10% of requests are failing (in production!). This started to spike in the last 3h.
The error returned from the completion:
BadRequestError: 400 You uploaded an unsupported image. Please make sure your image is below 20 MB in size and is of one the following formats: ['png', 'jpeg', 'gif', 'webp'].
Images are valid (type and size).
Example image:
"type":"image/jpeg",
"sizeMB":0.448
Completion request:
const response = await openai.chat.completions.create({
model: "gpt-4o",
messages: [
{
role: "user",
content: [
{...},
{
type: "image_url",
image_url: {
url: base64String,
detail: "low",
},
},
],
},
],
});
Seems impossible to debug from our end. We’ve inspected the images manually - all valid (content, type, size).
Status page doesn’t show any issues/outage. Anyone else experiencing this?