
clarifai2.solutions.Solutions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Clarifai Java API Client
The newest version!
package clarifai2.solutions;
import clarifai2.api.BaseClarifaiClient;
import clarifai2.api.ClarifaiBuilder;
import clarifai2.solutions.moderation.Moderation;
import org.jetbrains.annotations.NotNull;
public class Solutions {
@NotNull private final Moderation moderation;
public Solutions(@NotNull String apiKey) {
this.moderation = new Moderation(apiKey);
}
public Moderation moderation() {
return this.moderation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy