-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
52 lines (52 loc) · 1.7 KB
/
popup.html
File metadata and controls
52 lines (52 loc) · 1.7 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="src/js/script.js" defer></script>
<title>Document</title>
</head>
<body>
<div id="chatbox" class="active-element">
<div class="popup">
<div id="spinner-wrapper">
<div class="loader"></div>
<p id="status-text">Loading...</p>
</div>
<div class="video-score">9.5</div>
<button class="close-button" onclick="toggleDisplay('input')">X</button>
<div class="chat-container">
<div class="prompt-container">
<div class="prompt">
<span
>When was the first time in the video that the NumPy library was
mentioned?</span
>
</div>
<div class="prompt">
<span
>Tell me about the reliability and accuracy of this video?</span
>
</div>
<div class="prompt">
<span>What is the like to dislike ratio on this video?</span>
</div>
</div>
<div class="gpt-message typing-indicator">
<span></span><span></span><span></span>
</div>
<div class="gpt-message">
<span class="message-content"></span>
</div>
<div class="user-message">
<span class="message-content"></span>
</div>
</div>
<div class="input-container">
<textarea placeholder="Type your message..."></textarea>
<button onclick="handleChatSubmit()">Submit</button>
</div>
</div>
</div>
</body>
</html>