UNPKG

notmebotz-tools

Version:

Sebuah Tools yang berfungsi untuk mendownload Video atau Foto dari media sosial, serta sebagai tools yang berguna untuk aplikasi kamu seperti untuk BOT

17 lines (14 loc) 440 B
const { GoogleGenerativeAI } = require("@google/generative-ai"); async function geminiai(prompt) { const client = new GoogleGenerativeAI("AIzaSyBeBhBn8Q4bSwwF3Ku8QPd-7voUnucKDiw"); const model = client.getGenerativeModel({ model: "gemini-2.0-flash-exp" }); const result = await model.generateContent([prompt]); return { author: "Herza", status: 200, msg: result.response.text() }; } module.exports = { geminiai };