It’ been like this for days now, only one request went through and returned a partial response, this is what I usually get:
"error": {
"message": "Too Many Requests",
"type": "invalid_request_error",
"param": null,
"code": null
}
Request:
curl https://api.openai.com/v1/moderations \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer [REDACTED]" \
-d '{
"model": "omni-moderation-latest",
"input":
[
{ "type": "text", "text": "Lions likes to kill" },
{
"type": "image_url",
"image_url": {
"url": "https://www.wallart.com/media/catalog/product/cache/871f459736130e239a3f5e6472128962/w/1/w12700-small.jpg"
}
}
]
}'