nsey-sdk
v1.0.0
Published
Simple NSFW text detection SDK for NSey
Readme
NSEY SDK
A simple SDK for NSFW text detection using NSey.
Installation
npm install nsey-sdkUsage
import { detect } from "nsey-sdk";
async function RunDetection() {
const result = await detect("your text here");
console.log(result);
}
RunDetection();