Spaces:
Running
Running
Update index.html
Browse files- index.html +29 -14
index.html
CHANGED
@@ -1,22 +1,37 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="de">
|
3 |
-
|
4 |
<head>
|
5 |
-
<meta charset="UTF-8"
|
6 |
-
<
|
7 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
8 |
<title>Chatbot Interface</title>
|
|
|
9 |
</head>
|
10 |
-
|
11 |
<body>
|
12 |
-
<
|
13 |
-
<
|
14 |
-
<
|
15 |
-
<
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</body>
|
20 |
-
|
21 |
</html>
|
22 |
-
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="de">
|
|
|
3 |
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
6 |
<title>Chatbot Interface</title>
|
7 |
+
<link rel="stylesheet" href="style.css">
|
8 |
</head>
|
|
|
9 |
<body>
|
10 |
+
<aside id="sidebar">
|
11 |
+
<button id="new-conversation">+ New Conversation</button>
|
12 |
+
<button id="clear-conversations">Clear Conversations</button>
|
13 |
+
<div id="dark-mode-toggle">
|
14 |
+
<label for="dark-mode">Dark Mode</label>
|
15 |
+
<input type="checkbox" id="dark-mode" checked>
|
16 |
+
</div>
|
17 |
+
<div id="version">Version: 0.0.10-Alpha</div>
|
18 |
+
</aside>
|
19 |
+
<section id="chat-interface">
|
20 |
+
<div id="conversation-history"></div>
|
21 |
+
<div id="message-input-area">
|
22 |
+
<input type="text" id="message-input" placeholder="Ask a question...">
|
23 |
+
<button id="send-message">➤</button>
|
24 |
+
</div>
|
25 |
+
<footer id="footer">
|
26 |
+
<label id="model-version-label">GPT-3.5-turbo-16k-0613</label>
|
27 |
+
<div id="settings-toggle">
|
28 |
+
<label for="default-settings">Default</label>
|
29 |
+
<input type="checkbox" id="default-settings">
|
30 |
+
<label for="web-access">Web Access</label>
|
31 |
+
<input type="checkbox" id="web-access" checked>
|
32 |
+
</div>
|
33 |
+
</footer>
|
34 |
+
</section>
|
35 |
+
<script src="chat.js"></script>
|
36 |
</body>
|
|
|
37 |
</html>
|
|