-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
280 lines (237 loc) · 8.72 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
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: rgba(52, 53, 65);
color: rgba(236, 236, 241, 100%);
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
.header {
font-size: 2.25rem;
font-weight: 600;
line-height: 2.5rem;
}
.success {
color: #19c37d;
}
.error {
color: #ef4146;
}
.disabled {
color: #acacbe;
}
.secondary {
color: #6e6e80;
}
.centered {
}
.vertical-margin {
margin-top: 2vh;
margin-bottom: 2vh;
}
.card {
border-radius: 0.375rem;
border: 0 solid #d9d9e3;
box-sizing: border-box;
padding: 0.75rem;
background-color: hsla(0, 0%, 100%, .05);
width: 75%;
height: fit-content;
}
p {
line-height: 1.75;
font-size: 1rem;
}
code {
font-family: "Lucida Console", "Courier New", monospace;
font-size: 0.8rem;
font-weight: 500;
background: #202123;
border-radius: 4px;
border: 4px solid #202123;
color: white;
}
</style>
<style>
.content {
display: flex;
flex-direction: row;
}
#sideboard {
width: 10%;
background: rgba(0, 0, 0, 0.5);
}
#queriesList {
padding-inline-start: 20px !important;
}
.history-query {
list-style: none;
height: 20px;
padding: 10px 0 10px 4px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
cursor: pointer;
}
.active {
background: gray;
}
.main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
width: 90%;
}
</style>
<title>ChatGPT API</title>
</head>
<body>
<div class="content">
<div id="sideboard">
<ul id="queriesList"></ul>
</div>
<div class="main">
<div class="header">ChatGPT API</div>
<div class="centered">
<p><b>Input: </b> 
<span id="input" class="success"></span>
</p>
</div>
<div id="result" class="card"></div>
<div class="secondary centered vertical-margin">
Status: <span id="status" class="disabled"></span>
</div>
<div class="secondary centered vertical-margin">
Cost: <span id="cost" class="disabled"></span>
</div>
<div class="secondary centered vertical-margin">
<span id="config"></span>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
const interval = 500; // time in ms to fetch new data from backend
let localHistory = {}; // in case flask is stopped after a one-time query, history needs to be available offline
let currentData = {};
function getResults() {
$.ajax({
url: "/update",
type: "GET",
dataType: "json",
success: function (r) {
document.getElementById("input").innerHTML = currentData["input"] ?? "";
document.getElementById("result").innerHTML = currentData["result"] ?? "";
document.getElementById("cost").innerHTML = currentData["cost"] ?? "";
document.getElementById("config").innerHTML = currentData["config"] ?? "";
document.getElementById("status").innerHTML = currentData["status"] ?? "";
// get current ID from history side panel
let currentId = $('#queriesList li:first').attr("data-query-id");
// update currently displayed data
currentData = {
"input": r.config.input_prompt,
"result": r.result,
"cost": r.config.session_spent_text,
"config": "<pre>" + JSON.stringify(r.config, null, 2) + "</pre>",
"status": r.config.status,
};
// if current ID differs from config
if (r.config.last_history_id && r.config.last_history_id !== currentId) {
// create new link, add to history sidebar after 500ms
setTimeout(() => {
let $li = $('<li>').text(r.config.input_prompt).addClass('history-query').addClass('active');
$li.attr('data-query-id', r.config.last_history_id); // Set the data-query-id attribute
// add history element to list
$('#queriesList').prepend($li);
// add data to local history
localHistory[r.config.last_history_id] = currentData;
}, 500);
}
if (r.config.done && r.config.stop_after_one_request) {
setTimeout(() => {
clearInterval(intervalRunner);
}, 500);
}
}
});
}
let intervalRunner = setInterval(getResults, interval);
window.onload = function() {
$.ajax({
url: "/get_history",
type: "GET",
dataType: "json",
success: function (r) {
let $queriesList = $('#queriesList')
$.each(r.data, function(index, item) {
let $li = $('<li>').text(item[1]).addClass('history-query');
$li.attr('data-query-id', item[0]); // Set the data-query-id attribute
$queriesList.append($li);
localHistory[item[0]] = {
"input": item[1],
"result": item[2],
"cost": item[3],
"config": item[4],
"status": item[5]
};
})
}
});
$('#queriesList').on('click', 'li', function() {
// remove active class from other li
$('#queriesList li').removeClass('active');
// add active class to the clicked li
$(this).addClass('active');
const queryId = $(this).data('query-id'); // Retrieve the data-query-id attribute
console.log(queryId);
// get data from local history
let historyData = localHistory[queryId];
let config = null;
if (historyData["config"].startsWith("<pre>")) {
config = historyData["config"];
} else {
const configObject = JSON.parse(historyData["config"]);
// Exclude the "completion_text" key from the stringified JSON
const formattedConfig = JSON.stringify(configObject, (key, value) => {
if (key === "completion_text") {
return undefined; // Exclude the key from the stringification
}
return value; // Include other keys as usual
}, 2);
config = "<pre>" + formattedConfig + "</pre>";
}
currentData = {
"input": historyData["input"],
"result": historyData["result"],
"cost": historyData["cost"],
"config": config,
"status": historyData["status"],
};
document.getElementById("input").innerHTML = currentData["input"];
document.getElementById("result").innerHTML = currentData["result"];
document.getElementById("cost").innerHTML = currentData["cost"];
document.getElementById("config").innerHTML = currentData["config"];
document.getElementById("status").innerHTML = currentData["status"];
});
}
window.addEventListener('beforeunload', function() {
// send request to server, trigger to kill thread
$.ajax({
url: '/close_process',
method: 'GET',
success: function(response) {
// handle response
console.log('thread killed');
},
error: function(xhr, status, error) {
// handle error
console.error('error when kill thread:', error);
}
});
});
</script>
</body>