Omni Moderation

omni-moderation-2024-09-26
byOpenAI|Created May 31, 2025
Moderations

Omni-Moderation is OpenAI’s newest multimodal content moderation model, available through the Moderation API. It is designed to identify potentially harmful content in both text and images, offering improved accuracy and granular control, especially in non-English languages.

Code Example

Example code for using this model through our API with Python (OpenAI SDK) or cURL. Replace placeholders with your API key and model ID.

Basic request example. Ensure API key permissions. For more details, see our documentation.

from openai import OpenAI

client = OpenAI(base_url="https://api.naga.ac/v1", api_key="YOUR_API_KEY")

# Single text
resp = client.moderations.create(
    model="omni-moderation-2024-09-26",
    input="Hello! Nice to meet you!"
)
print(resp)