-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 782 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 782 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>SynthMind</title>
<link rel="stylesheet" href="assets/style.css" />
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@latest"></script>
<script src="https://cdn.plot.ly/plotly-3.0.1.min.js"></script>
</head>
<body>
<div id="chat-container">
<header>
<h1>SynthMind</h1>
<p>💬 Ask me anything — I evolve with you.</p>
</header>
<div id="chat-window">
<div id="chat-log"></div>
</div>
<div id="input-bar">
<input type="text" id="input" placeholder="Type your message..." />
<button onclick="handleInput()">➤</button>
</div>
</div>
<script src="main.js"></script>
</body>
</html>