|
OpenAI 推出了新的多模态审核模型 `omni-moderation-latest`,支持文字和图片输入。该模型提升了非英语内容的审核准确率,新增了两个违规类别:`illicit` 和 `illicit/violent`,并继续免费提供。
你可以阅读 [博客文章](https://openai.com/index/upgrading-the-moderation-api-with-our-new-multimodal-moderation-model/) 或查看 [更新的文档](https://platform.openai.com/docs/guides/moderation/)了解更多信息。
旧版审核模型将被弃用,具体时间未定。我们会在旧模型用户使用期限结束前通知您。
示例代码:
```bash
curl https://api.openai.com/v1/moderations \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "omni-moderation-latest",
"input": [
{ "type": "text", "text": "...text to classify goes here..." },
{
"type": "image_url",
"image_url": {
"url": "https://example.com/image.png"
}
}
]
}'
```
赶快试试吧! |
|