client.createModeration(...)
import app.phaseo.sdk.Phaseo;
Phaseo client = new Phaseo(System.getenv("PHASEO_API_KEY"));
String body = """
{
"model": "openai/omni-moderation",
"input": "Please rate this message for safety"
}
""";
Object response = client.createModeration(body);
System.out.println(String.valueOf(response));