-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
31 lines (27 loc) · 869 Bytes
/
options.html
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
<!DOCTYPE html>
<html>
<head>
<title>Question Generator Options</title>
<style>
body {
font-family: Arial;
font-size: 12pt;
overflow: hidden;
color: white;
background-color:#6c1d5f;
}
</style>
</head>
<body>
<br><br>
OpenAI API Key: <br>
<input type="text" id="openai_api_key" value="put your openai api key here" style="width: 500px;"><br><br>
OpenAi Chat Completion Model: <br>
<input type="text" id="openai_model" value="gpt-3.5-turbo" style="width: 500px;"><br><br>
Tag id/name to extract content for questions from:<br>
<input type="text" id="questions_tag_id" value="body" style="width: 500px;"><br><br>
<button id="save">Save</button>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>