-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
46 lines (36 loc) · 1.44 KB
/
app.js
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
37
38
39
40
41
42
43
44
45
46
require('dotenv').config(); // Para usar las variables de entorno
const express = require('express');
const { GoogleGenerativeAI } = require('@google/generative-ai');
const app = express();
const port = 3000;
app.use(express.json()); // Permitir solicitudes en formato JSON
// Crear una instancia del cliente GoogleGenerativeAI
// git remote add origin https://github.com/martinmilitello/ApiRest_Chatbot_Node.git
const genAI = new GoogleGenerativeAI(process.env.API);
// Endpoint para interactuar con el chatbot
app.post('/chatbot', async (req, res) => {
const { message } = req.body;
if (!message) {
return res.status(400).json({ error: 'El mensaje es requerido.' });
}
try {
// Obtén el modelo generativo "gemini-1.5-flash"
const model = genAI.getGenerativeModel({ model: 'gemini-1.5-flash' });
// Generar contenido usando el mensaje del usuario como prompt
const result = await model.generateContentStream(message);
let botReply = '';
// Recibir las respuestas por partes y concatenarlas
for await (const chunk of result.stream) {
botReply += chunk.text();
}
// Enviar la respuesta completa del chatbot
res.json({ reply: botReply });
} catch (error) {
console.error('Error al generar la respuesta:', error);
res.status(500).json({ error: 'Error al procesar la solicitud' });
}
});
// Iniciar el servidor
app.listen(port, () => {
console.log(`API escuchando en http://localhost:${port}`);
});