βοΈcheckToxicityImage
Last updated
// import the ai-core-sdk
import {AIServices} from '@nest25/ai-core-sdk';
// create a new instance of the sdk
const aiServices = new AIServices();
async function main() {
// get the result of the test
const result = await aiServices.checkToxicityImage('https://ik.imagekit.io/BIOSPHERE/1678716455079_PTj9bkO9d.jpeg');
console.log(result);
}
main();{
"message": "Request successful",
"response": {
"bumble": 94.26363110542297,
"is_toxic": true,
"nsfw": 99.0408182144165
},
"status": 1
}