-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
50 lines (46 loc) · 1.29 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>
<head>
<title>AI Website Chat</title>
<style>
/* CSS styles for the popup */
body {
width: 300px;
padding: 10px;
font-family: Arial, sans-serif;
}
textarea {
width: 100%;
height: 100px;
margin-bottom: 10px;
}
select, button {
margin-bottom: 10px;
}
#response {
white-space: pre-wrap;
border: 1px solid #ccc;
padding: 10px;
max-height: 200px;
overflow-y: auto;
}
</style>
</head>
<body>
<!-- Textarea for user input -->
<textarea id="userMessage" placeholder="Enter your question..."></textarea>
<!-- Dropdown to select AI model -->
<select id="modelSelect">
<option value="claude">Claude</option>
<option value="gemini">Gemini</option>
<option value="gpt">GPT</option>
<option value="mistral">Mistral</option>
</select>
<!-- Button to send the request -->
<button id="sendButton">Send</button>
<!-- Div to display the AI response -->
<div id="response"></div>
<!-- Include the JavaScript file for popup functionality -->
<script src="popup.js"></script>
</body>
</html>