How to install :
npm install ai-rizzpiw
How to use:
const { RizzPiwAI } = require('ai-rizzpiw');
const chat = new RizzPiwAI();
chat.question({
model: "turbo",
content:"Hai, Bagaimana Kabar Mu?"
}).then(response => {
console.log(response.reply);
});
.catch(err => {
console.error(err.message)
})