[ ✦ ] NDBOTZ || Share random
[ ✦ ] 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

Comments