-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jaehabot</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
<!-- Import TensorFlow.js -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<!-- Import tfjs-vis -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tfjs-vis.umd.min.js"></script>
<!-- Import jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Import the main script file -->
<script src="nlp.js"></script>
<script src="interface.js"></script>
</head>
<body>
<h1>Jaehabot</h1>
<img src="chatbot.png">
<p> A bot that is often dumb, sometimes smart, and makes your conversation weird. </p>
<p>Made with TensorFlow. Enjoy.</p>
<textarea id = "dialogue" readonly></textarea>
<p>Type stuff here:</p>
<input type="text">
<p><a href = "https://github.com/jaehayi25/chatbot" target = "_blank">Github Code</a></p>
</body>
</html>