chataibot
v1.0.3
Published
A powerful library for ai chat bot for install the package : ```npm i chataibot```
Downloads
61
Maintainers
Keywords
Readme
Links :
📂 NPM
📖 Document's
📝 Github
How to install :
- Installation For CLI:
npm i chataibot -g
- Installation:
npm i chataibot
How to use:
const { ChatAi } = require('chataibot');
const chat = new ChatAi();
chat.question({
/* Available Models */
/* "v3" , "v3-32k" , "turbo" , "turbo-16k" , "gemini" */
model:"v3",
content:"Hello , How are you?"
}).then(response => {
console.log(response.reply);
});