Yapayzeka ile sohbet edebileceğiniz yapayzeka sohbet bot komutudur.
exports.run = async(client, message, args) => { let mesaj = args.slice(0).join(' '); if (mesaj.length < 1) return message.reply('Bir şeyler yazmalısın.'); const request = require('request'); request.get(`http://api.kenucorp.com/ai/api.php?uid=${message.author.id}&msg=${mesaj}`, (err, response, body) => { const veri = body.split(':"').pop().split('"}')[0]; if (veri === "(Zaman aşımı)") { return message.reply("Bir hata oluştu. Lütfen daha sonra tekrar deneyin."); } else { return message.reply(veri); } }) } exports.conf = { aliases: ["ai", "kenuai","yapayzeka"] }; exports.help = { name: "sohbet" };