![[ ✦ ] NDBOTZ || Share random](https://cdn1.wapeek.io/whatsapp/2025/02/27/02/ndbotz-share-random-cover_d90afa224de8a72e95abd3c3b75916f8.webp)
[ ✦ ] NDBOTZ || Share random
February 7, 2025 at 06:44 AM
//💬 fungsi ai dari apikey fongsi by: Deku
//🌃 source: deku
const axios = require('axios')
async function ai(teks) {
//buat apikey nya
const ai = await axios.post('https://fgsi-ai.hf.space', {
//message ini buat fungsi ai
messages: [{
role: "system",
content: "You are a helpful assistant."
},
{
role: "user",
content: teks
}
],
temperature: 1,
})
return ai.data
}
module.exports = ai