1.0.1 • Published 5 months ago

zerogpt v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
5 months ago

ZeroGpt - AI Word Check Tool

Install

Use the stable version:

npm install zerogpt

How To Use

const ZeroGpt = require('zerogpt');
const ZeroGpts = new ZeroGpt();

ZeroGpts.score('Hi im under the water')
    .then(result => {
        console.log(result);
    })
    .catch(error => {
        console.error('Error:', error);
    });

Result

{
  success: true,
  data: {
    sentences: [],
    isHuman: 100,
    additional_feedback: 'Please input more text for a more accurate result',
    h: [],
    hi: [],
    textWords: 5,
    aiWords: 0,
    fakePercentage: 0,
    specialIndexes: [],
    specialSentences: [],
    originalParagraph: 'Hi im under the water',
    input_text: 'Hi im under the water',
    detected_language: 'en'
  },
  code: 200,
  message: 'Detection complete'
};
1.0.1

5 months ago

1.0.0

5 months ago