All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.theokanning.openai.moderation.ModerationRequest Maven / Gradle / Ivy

There is a newer version: 0.18.2
Show newest version
package com.theokanning.openai.moderation;

import lombok.*;

import java.util.List;

/**
 * A request for OpenAi to detect if text violates OpenAi's content policy.
 *
 * https://beta.openai.com/docs/api-reference/moderations/create
 */
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Data
public class ModerationRequest {

    /**
     * The input text to classify.
     */
    @NonNull
    String input;

    /**
     * The name of the model to use, defaults to text-moderation-stable.
     */
    String model;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy