
𝐇𝐚𝐬𝐮𝐦𝐢𝐁𝐨𝐭 𝐅𝐫𝐞𝐞𝐂𝐨𝐝𝐞𝐬
February 9, 2025 at 09:55 AM
/* ౨ৎ ˖ ࣪⊹ 𝐁𝐲 𝐉𝐭𝐱𝐬 𐙚˚.ᡣ𐭩
❀ Canal Principal ≽^•˕• ྀི≼
https://whatsapp.com/channel/0029VaeQcFXEFeXtNMHk0D0n
❀ Canal Rikka Takanashi Bot
https://whatsapp.com/channel/0029VaksDf4I1rcsIO6Rip2X
❀ Canal StarlightsTeam
https://whatsapp.com/channel/0029VaBfsIwGk1FyaqFcK91S
❀ HasumiBot FreeCodes
https://whatsapp.com/channel/0029Vanjyqb2f3ERifCpGT0W
*/
// *𓍯𓂃𓏧♡ CLAUDE - AI*
import fetch from 'node-fetch'
let HS = async (m, { conn, text }) => {
if (!text) return conn.reply(m.chat, `❀ Ingresa un texto para hablar con Claude AI`, m)
try {
let api = await fetch(`https://api.agungny.my.id/api/claude?q=${text}`)
let json = await api.json()
await conn.sendMessage(m.chat, { text: json.result, contextInfo: { externalAdReply: { title: 'CLAUDE - AI', body: '', thumbnailUrl: 'https://files.catbox.moe/l312jt.jpg', sourceUrl: null, mediaType: 1, renderLargerThumbnail: false }}}, { quoted: m})
} catch (error) {
console.error(error)
}}
HS.command = ['claude', 'claudeai', 'iaclaude']
export default HS