Scraper for chatgpt. (No api, No limit, 100% free)
npm install chatgpt-scraperjs
const {
ChatGpt
} = require('chatgpt-scraper');
//await ChatGpt('prompt');
const res = await ChatGpt('Hi');
console.log(res);
`
*
OutPut
`js
{
owner: '@vihangayt0',
response: 'Hi there! How can I assist you today?'
}
``