💬Chat Bot

Use The Package:

To Importe the package:

const { ChatAi } = require('chataibot');

To extract the package:

const chat = new ChatAi(); 

To talk with AI:

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);
  

});

Last updated