-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompt.js
90 lines (75 loc) · 2.04 KB
/
prompt.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const express = require("express");
const bodyParser = require("body-parser");
const readline = require("readline");
const path = require("path");
const {
GoogleGenerativeAI,
HarmCategory,
HarmBlockThreshold,
} = require("@google/generative-ai");
require("dotenv").config();
const app = express();
const MODEL_NAME = "gemini-pro";
const API_KEY = process.env.API_KEY;
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const genAI = new GoogleGenerativeAI(API_KEY);
const model = genAI.getGenerativeModel({ model: MODEL_NAME });
const generationConfig = {
temperature: 1,
topK: 1,
topP: 1,
maxOutputTokens: 2048,
};
const safetySettings = [
{
category: HarmCategory.HARM_CATEGORY_HARASSMENT,
threshold: HarmBlockThreshold.BLOCK_MEDIUM_AND_ABOVE,
},
{
category: HarmCategory.HARM_CATEGORY_HATE_SPEECH,
threshold: HarmBlockThreshold.BLOCK_MEDIUM_AND_ABOVE,
},
{
category: HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT,
threshold: HarmBlockThreshold.BLOCK_MEDIUM_AND_ABOVE,
},
{
category: HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT,
threshold: HarmBlockThreshold.BLOCK_MEDIUM_AND_ABOVE,
},
];
const chat = model.startChat({
generationConfig,
safetySettings,
history: [],
});
app.use(bodyParser.json());
app.post("/send-message", async (req, res) => {
const userInput = req.body.userInput;
try {
const result = await chat.sendMessage(userInput);
const response = result.response;
res.json({ response: response.text() });
} catch (error) {
console.error("Error during chat:", error.message);
res.status(500).json({ error: "Error during chat" });
}
});
app.use(express.static(path.join(__dirname, "public")));
const server = app.listen(3000, () => {
console.log("Server is running on port 3000");
});
async function askQuestion(question) {
return new Promise((resolve) => {
rl.question(question, resolve);
});
}
function cleanup() {
rl.close();
server.close();
}
process.on("SIGINT", cleanup);
process.on("SIGTERM", cleanup);