File size: 1,053 Bytes
984400f
 
 
 
 
 
 
 
0d4c6be
984400f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0d4c6be
 
6a53ab9
0d4c6be
984400f
 
0d4c6be
984400f
 
 
0d4c6be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { GoogleGenerativeAI } from "@google/generative-ai";
import dotenv from "dotenv";

dotenv.config();

const GoogleAPIKey = process.env.GOOGLE_API_KEY;

if (!GoogleAPIKey) {
    throw new Error("Missing variable: GOOGLE_API_KEY");
}

const genAI = new GoogleGenerativeAI(GoogleAPIKey);

/**
 * Generate a response using the Gemini AI model.
 * @param {string} prompt - The input string for the model.
 * @returns {Promise<string>} The generated response text.
 */
async function GeminiResponse(prompt) {
    try {
        const model = genAI.getGenerativeModel({
            model: "gemini-1.5-flash",
        });
        const result = await model.generateContent(prompt);
        console.log("Response:", result.response.candidates)
        const text = result.response.candidates[0]?.content;
        console.log("Results text:", text)
        return text || "No response content";
    } catch (e) {
        console.error(`Error in GeminiResponse: ${e.message}`);
        return "Error generating response.";
    }
}

export { GeminiResponse };