Authorization: Bearer ********************
{
"model": "gi-image-moderation",
"input": [
{
"type": "image_url",
"image_url": {
"url": "https://oss.chats.li/1744473372484_8815.png"
}
}
]
}
curl --location --request POST 'https://api.gpt.ge/v1/moderations' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gi-image-moderation",
"input": [
{
"type": "image_url",
"image_url": {
"url": "https://oss.chats.li/1744473372484_8815.png"
}
}
]
}'
{
"id": "abfc99e9-392e-44e3-aedd-e63f33079491",
"model": "nsfw-classifier",
"results": [
{
"flagged": false,
"categories": {
"neutral": false,
"drawings": true,
"sexy": false,
"hentai": false,
"porn": false
},
"category_scores": {
"neutral": 0.22734691202640533,
"drawings": 0.9943661689758301,
"sexy": 0.12325877696275711,
"hentai": 0.2198520451784134,
"porn": 0.05567243695259094
}
}
]
}