-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLLM.html
46 lines (34 loc) · 1.23 KB
/
LLM.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="LLM.css">
<title> Oikko's LLM </title>
</head>
<body>
<div class="container">
<div class="header">
<h1> OIKKO'S ASSISTANT </h1>
</div>
<div class="info">
<h1> Hi Oikko! Send me a message to get started! </h1>
</div>
<div class="chat-container">
<div id="chat-log"></div>
</div>
<div class="input-container">
<input type="text" id="user-input" placeholder="Send Message">
<button id="send-button">
<i class="fa-solid fa-bolt" id="button-icon"></i>
</button>
<span class = "status-indicator"></span>
</div>
<audio id = "audio-output" style="display: none"></audio>
</div>
<div id = "speech-status" style="display: none;"></div>
<script src="LLM.js"></script>
</body>
</html>