-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 2.34 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
34
35
36
37
38
39
40
41
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
<link rel="icon"
type="image/x-icon"
href="./favicon.png">
<title>AI Chat</title>
</head>
<body>
<div id="chatContainer">
<div id="fakeWelcome">
Welcome to the Work in Progress Jerma AI chat room! The messages are generated using tensorflow and GPT-2 (an ai model) that is trained on Jerma's chat. Made with <3 by stick (<a href="https://twitter.com/stick_twt">@stick_twt</a>) and some help from s-crypt. <a href="https://github.com/JermaSites/Jerma-AI-Chat">GitHub</a>
</div>
</div>
</div>
<!-- <button onclick="newMessage()">Go!</button> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js" integrity="sha512-WNLxfP/8cVYL9sj8Jnp6et0BkubLP31jhTG9vhL/F5uEZmg5wEzKoXp1kJslzPQWwPT1eyMiSxlKCgzHLOTOTQ==" crossorigin="anonymous"></script>
<script src="scripts.js"></script>
<!-- SVG Blur Filter -->
<!-- 'stdDeviation' is the blur amount applied -->
<svg id="svg-filter">
<filter id="svg-blur">
<feGaussianBlur in="SourceGraphic" stdDeviation="7"></feGaussianBlur>
</filter>
</svg>
<div id="info-container">
<div id="checkbox">
<input type="checkbox" id="scroll" name="scroll" checked="true">
<label for="scroll"> Autoscroll chat with output</label>
</div>
<div id="disclaimer">
Disclaimer: We are not responsible for any content generated. If you see something bad, please let us know on discord or <a href="https://github.com/JermaSites/Jerma-AI-Chat">GitHub</a>.
<br>
Jerma, if you see this, please please please please please please do Twitch Detective again but with AI Chatbots for chat to find <img alt='jermaHeart' title='jermaHeart' class='twitch-emote twitch-emote-0' src='https://static-cdn.jtvnw.net/emoticons/v1/1279975/1.0'>
</div>
</div>
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "8a624e372b2b42baa0649413c7246f5e"}'></script><!-- End Cloudflare Web Analytics -->
</body>
</html>