-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathpopup.html
50 lines (47 loc) · 1.25 KB
/
popup.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Chatbot</title>
<link rel="stylesheet" href="popup.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
</head>
<body>
<select id="model-selection"></select>
<div id="loadingBox">
<p id="init-label">Initializing model...</p>
<div id="loadingContainer"></div>
</div>
<p id="model-name"></p>
<div class="input-container form-group">
<input
type="search"
id="query-input"
placeholder="What's on your mind?"
/>
<button id="submit-button" class="btn">
<i class="fa fa-comments"></i>
</button>
</div>
<div class="stage">
<div id="loading-indicator" class="dot-flashing"></div>
</div>
<div id="answerWrapper">
<div id="answer"></div>
<div class="copyRow">
<span id="timestamp"></span>
<button
id="copyAnswer"
class="btn copyButton"
title="Copy the Answer to the Clipboard"
>
<i class="fa-solid fa-copy fa-lg"></i>
</button>
</div>
</div>
<script type="module" src="./popup.ts"></script>
</body>
</html>