-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpt.html
202 lines (183 loc) · 4.88 KB
/
gpt.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
animation: fadeInAnimation ease 2s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.navbar {
overflow: hidden;
background-color: #333;
}
.navbar a {
float: left;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: red;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.secret a {
float: left;
font-size: 16px;
color: rgb(44, 42, 42);
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}
.alert {
padding: 20px;
background-color: #f44336;
color: white;
opacity: 1;
transition: opacity 0.6s;
margin-bottom: 15px;
}
.alert.success {background-color: #04AA6D;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
#showMe {
animation: cssAnimation 0s 5s forwards;
opacity: 0;
}
@keyframes cssAnimation {
to { opacity: 1; }
}
.closebtn:hover {
color: black;
}
</style>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GSBY6FKHLP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GSBY6FKHLP');
</script>
<body>
<div class="navbar">
<a href="http://xavierhale.github.io/index.html">Home</a>
<a href="http://xavierhale.github.io/news.html">News</a>
<div class="dropdown">
<button class="dropbtn">Downloads
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="http://xavierhale.github.io/dlpage.html">Games</a>
<a href="http://xavierhale.github.io/ems.html">Emulators</a>
<a href="http://xavierhale.github.io/tools.html">Tools & Trolls</a>
</div>
</div>
<a href="http://xavierhale.github.io/contact.html">Contact</a>
<a href="http://xavierhale.github.io/ultraviolet.html">ultraviolet</a>
<a href="http://xavierhale.github.io/gpt.html">xGPT</a>
<div class="secret">
<a href="http://xavierhale.github.io/dev.html">secret</a>
</div>
</div>
</div>
<div style="padding-left:16px">
<img src="logo.png" alt="logo">
</div>
<div style="padding-left:16px">
<p>So, this is an AI environment similar to Chat-Gpt. It has similar cabibilites, but some differences.</p>
<p>It will randomly switch from thinking its a human, an AI, or a cosmic being that can be anything it wants.</p>
<p>It can only display text, or text based diagrams. It has limited programing functionality.</p>
<p>Every thing you send it will be added to its model and will be able to be referenced.</p>
<h3>I do not condone use of this for any cheating. Use the AI for whatever you want, but please do not do anything against any rules with it.</h3>
<p>Download:</p>
<a href="https://www.mediafire.com/file/05gtshvinlnov0n/xGPT.zip/file">xGPT Model 4</a>
</div>
<script>
function playMusic(){
var music = new Audio('damage.mp3');
music.play();
}
</script>
<script>
function myFunction() {
alert("Oh No! It looks like this isn't implemented");
}
</script>
<script>
var close = document.getElementsByClassName("closebtn");
var i;
for (i = 0; i < close.length; i++) {
close[i].onclick = function(){
var div = this.parentElement;
div.style.opacity = "0";
setTimeout(function(){ div.style.display = "none"; }, 600);
}
}
</script>
<script>
function servealert() {
alert("The servers may be down, but you can still browse the games. If they are down, just ask me to start them")
}
</script>
</body>
</html>