-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
99 lines (88 loc) · 2.64 KB
/
index.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
91
92
93
94
95
96
97
98
99
(async () => {
function buildPostUrl() {
const selectedEngine = [...document.getElementById("engine-selection").childNodes].find(opt => opt.selected).value;
return `https://api.openai.com/v1/engines/${selectedEngine}/completions`;
}
async function getAnswer(
token,
prompt,
modelParams = { max_tokens: 16 },
) {
buildPostUrl();
const result = await fetch(
buildPostUrl(), {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer " + token
},
body: JSON.stringify({
prompt,
...modelParams
})
});
return (await result.json());
}
function initEngineSelection() {
const engines = [
"ada",
"text-curie-001",
"babbage",
"text-davinci-002",
"text-davinci-001",
"curie",
"davinci",
"text-ada-001",
"text-babbage-001"
];
const select = document.getElementById("engine-selection");
engines.forEach((engine) => {
const option = document.createElement("option");
option.value = engine;
option.innerHTML = engine;
if (engine === "text-curie-001") option.selected = true;
select.appendChild(option);
});
}
initEngineSelection();
async function submitHandler(event) {
event.preventDefault();
const token = document.getElementById("token").value;
const prompt = document.getElementsByClassName("prompt-input")[0]?.value;
const chatArea = document.getElementById("chat");
const modelParams = {
temperature: 0.5,
max_tokens: 64,
top_p: 1.0,
frequency_penalty: 0.0,
presence_penalty: 0.0,
};
if (!token || !prompt) {
alert("Please, specify token and prompt");
return;
}
const answer = await getAnswer(token, prompt, modelParams);
const divForResponse = document.createElement("div");
let output;
if (chatArea.childNodes.length > 1) {
chatArea.prepend(divForResponse);
output = divForResponse;
} else {
output = chatArea.appendChild(divForResponse);
}
output.classList.add("response")
output.innerHTML = "Response: " + answer?.choices[0]?.text || "Robot doesn't have an answer to this question."
const divForPrompt = document.createElement("div");
let input;
if (chatArea.childNodes.length > 1) {
chatArea.prepend(divForPrompt);
input = divForPrompt;
} else {
input = chatArea.appendChild(divForPrompt);
}
input.classList.add("prompt")
input.innerHTML = "Prompt: " + prompt;
}
const form = document.getElementById("chatForm");
form.addEventListener("submit", submitHandler)
})();