-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexplore.html
287 lines (245 loc) · 13.8 KB
/
explore.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
281
282
283
284
285
286
287
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<!--
CODEPROJECT.AI SERVER MODULE EXPLORER
This page provides the means to test this module using the same infrastructure as
the CodeProject.AI Server explorer. This page also provides the UI elements that
the explorer will parse and use to build up the UI of the main explorer itself.
RULES AND CONVENTIONS
1. This page should provide sufficient functionality to test and explore this
module.
2. This page should use the functionality in the explorer.js file so that when
the elements of this page are inserted into the main explorer, it all works
seamlessly. Specifically, you will probably use
- clearImagePreview: Clears the image preview area.
- previewImage: Displays an image in the shared image preview area and takes a
input[type=file] as parameter.
- submitRequest: Sends a request to the AI server.
- setResultsHtml: Sets the HTML in the shared 'results' element. Parameter is the HTML
to display.
- getProcessingMetadataHtml: Gets HTML representing the common data returned from a call to a
module.
- displayBaseResults: Displays the common data returned from a call to a module.
- showPredictionSummary: Displays in the shared HTML results pane the list of predictions
returned from an inference operation.
- clearImageResult: Clears the image result area
- showResultsImageData: Displays an image in the shared image results area using the data
returned from a call to a module, and overlays bounding boxes if
present in the data
- showResultsBoundingBoxes: Displays bounding boxes on the shared image results area based on
the boxes returned in the predictions parameter. The first param is
an array of predictions returned from a computer vision operation.
3. There are 3 parts of this page that will be pulled into the main explorer
during runtime: The HTML, the script, and the CSS. These sections are bounded by
- HTML: START EXPLORER MARKUP / END EXPLORER MARKUP pair, each within HTML comment brackets
- Script: START EXPLORER SCRIPT / END EXPLORER SCRIPT pair, each as a // comment on its own line
- CSS: START EXPLORER STYLE / END EXPLORER STYLE pair, each inside /* ... */ comments
These delimiters should be on a line by themselves
4. **Please provide output elements to display the results of operations** if
you wish to use the standard HTML / Image results elements in the main explorer
- For HTML output, include a DIV with id 'results'
- For Image preview/output, include an IMG element with id img and a DIV with
id 'imageMask'
- For Sound preview, include an AUDIO element with id 'snd' that contains a
SOURCE tag
5. When this file is parsed and injected into the larger explorer, the HTML is
injected first, then the script, then the CSS.
6. **To ensure uniqueness of elements** you can include the _MID_ macro in any
name. This will be expanded to be [ModuleId]_ where [ModuleId] is the literal
ID of this module. For instance <div id="_MID_TextBox"> becomes <div id="MyModuleId_TextBox">
-->
<head>
<meta charset="utf-8" />
<title>MultiMode LLM Module Test</title>
<link id="bootstrapCss" rel="stylesheet" type="text/css" href="http://localhost:32168/assets/bootstrap-dark.min.css">
<link rel="stylesheet" type="text/css" href="http://localhost:32168/assets/server.css?v=2.5.0.0">
<script type="text/javascript" src="http://localhost:32168/assets/server.js"></script>
<script type="text/javascript" src="http://localhost:32168/assets/explorer.js"></script>
<style>
/* START EXPLORER STYLE */
.auto-height{
resize: none;
overflow: hidden;
min-height: 32px;
width: calc(100% - 4.25rem)
}
/* END EXPLORER STYLE */
</style>
</head>
<body class="dark-mode">
<div class="mx-auto" style="max-width: 800px;">
<h2 class="mb-3">Mulit-modal LLM Module Test</h2>
<form method="post" action="" enctype="multipart/form-data" id="myform">
<div class="form-group row mt-1">
<label class="col-3 col-form-label text-end">Service URL</label>
<input class="form-control" id="serviceUrl" type="text"
value="http://localhost:32168" style="width:20rem" />
</div>
<!-- START EXPLORER MARKUP -->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<!-- - to use with syntax highlighting. Except this doesn't work. Thanks docs.
<script src="https://cdn.jsdelivr.net/npm/marked/lib/marked.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked-highlight/lib/index.umd.js"></script>
<script>
const {markedHighlight} = globalThis.markedHighlight;
</script>
-->
<div class="form-group">
<label class="form-label text-end">How can I help you?</label>
<div class="input-group mt-1">
<textarea id="_MID_promptText" class="auto-height me-1" rows="1"
placeholder="Ask a question"></textarea>
<input class="btn btn-info btn-sm " id="_MID_queryBtn"
type="button" value="Send" style="height:2rem;width:4rem"
onclick="_MID_onMultiModalChat(_MID_promptText.value, _MID_image, _MID_systemPrompt.value, _MID_maxTokens.value, _MID_temperature.value)">
<input class="btn btn-warning btn-sm " type="button" value="Stop" id="_MID_stopBtn"
onclick="_MID_onMultiModalStop()" style="display: none;height:2rem;width:4rem" />
</div>
<div class="input-group mt-1">
<input class="col form-control btn-light" id="_MID_image" type="file" style="width:100%"
onchange="previewImage(this)" />
</div>
</div>
<div class="mt-2">
<div id="_MID_answerText" style="resize:vertical;height: 10rem;white-space: pre-wrap;"
class="overflow-auto bg-white text-dark w-100">
<div class='text-muted'>Answer will appear here...</div>
</div>
</div>
<div class="form-group row mt-1">
<label class="col-3 col-form-label text-end">System Prompt</label>
<input class="form-control" id="_MID_systemPrompt" type="text"
value="You're a helpful assistant who answers questions the user asks of you concisely and accurately"
style="width:25rem" />
</div>
<div class="form-group row mt-1">
<label class="col-3 col-form-label text-end">Max tokens</label>
<input class="form-control" value="16000" id="_MID_maxTokens" type="number"
style="width:5rem" />
<label class="col-3 col-form-label text-end">Temperature</label>
<input class="form-control" value="0.0" id="_MID_temperature" type="text"
style="width:5rem" />
</div>
<div><small><b>Warning: </b>LLMs can fabricate and hallucinate. <b>Always</b> verify results.</small></div>
<!-- END EXPLORER MARKUP -->
<div class="w-100 position-relative form-control my-4 p-0">
<img src="" id="imgPreview" class="w-100" style="height:250px;visibility:hidden">
</div>
<div class="mt-3">
<h2>Status</h2>
<div id="results" name="results" class="bg-light p-3" style="min-height: 100px;"></div>
</div>
</form>
<script type="text/javascript">
// START EXPLORER SCRIPT
// set the auto-height textarea(s)
document.querySelectorAll('.auto-height').forEach(function (el) {
el.style.height = (el.scrollHeight) + "px";
el.addEventListener("input", function (e) {
this.style.height = "auto";
this.style.height = (this.scrollHeight) + "px";
});
});
let renderMarkdown = false;
let chat = '';
let commandId = '';
async function _MID_onMultiModalChat(prompt, fileChooser, systemPrompt, maxTokens, temperature) {
// show the stop button and hide the query button
_MID_queryBtn.style.display = "none";
_MID_stopBtn.style.display = "inline";
clearImagePreview();
if (!prompt) {
alert("No text was provided for MultiModal chat");
return;
}
let params = [
['prompt', prompt],
['system_prompt', systemPrompt],
['max_tokens', maxTokens],
['temperature', temperature]
];
previewImage(fileChooser);
let images = fileChooser.files ? [ fileChooser.files[0] ] : [];
setResultsHtml("Sending prompt and image...");
let data = await submitRequest('text', 'multimodal-chat', images, params)
if (data) {
_MID_answerText.innerHTML = "<div class='text-muted'>Answer will appear here...</div>";
// get the commandId to so we can poll for the results
commandId = data.commandId;
moduleId = data.moduleId;
params = [['commandId', commandId], ['moduleId', moduleId]];
let done = false;
/*
- to use with syntax highlighting. Except this doesn't work. Thanks docs.
const marked = new Marked(
markedHighlight({
langPrefix: 'hljs language-',
highlight(code, lang, info) {
const language = hljs.getLanguage(lang) ? lang : 'plaintext';
return hljs.highlight(code, { language }).value;
}
})
);
*/
while (!done) {
await delay(250);
let results = await submitRequest('MultiModeLLM', 'get_command_status', null, params);
if (results) {
if (results.success) {
done = results.commandStatus == "completed";
let html = '';
if (renderMarkdown) {
html = marked.parse("<b>You</b>: " + prompt + "\n\n<b>Assistant</b>: " + results.reply);
}
else {
html = "<b>You</b>: " + prompt + "<br><br><b>Assistant</b>: "
+ results.reply.replace(/[\u00A0-\u9999<>\&]/g, function(i) {
return '&#'+i.charCodeAt(0)+';';
});
}
_MID_answerText.innerHTML = html
_MID_answerText.scrollTop = _MID_answerText.scrollHeight;
if (done) {
// only clear the prompt if the command is done and not canceled
// otherwise leave it so the user can modify it and re-run.
/*
if (results.stop_reason != "cancelled") {
_MID_promptText.value = "";
_MID_promptText.style.scrollHeight = 32;
_MID_promptText.style.height = "32px";
}
*/
html = getProcessingMetadataHtml(results);
setResultsHtml(html);
// setResultsHtml("Done");
}
}
else {
// TODO: check for timeouts and other network errors.
done = true;
// setResultsHtml(results?.error || "No response from server");
}
}
}
// show the query button and hide the stop button
_MID_queryBtn.style.display = "inline";
_MID_stopBtn.style.display = "none";
_MID_promptText.focus();
}
}
async function _MID_onMultiModalStop() {
let params = [['commandId', commandId], ['moduleId', 'MultiModeLLM']];
let result = await submitRequest('MultiModeLLM', 'cancel_command', null, params);
setResultsHtml("Command stopped");
// show the query button and hide the stop button
_MID_queryBtn.style.display = "inline";
_MID_stopBtn.style.display = "none";
_MID_promptText.focus();
}
// =====================================================================
// Startup
// END EXPLORER SCRIPT
</script>
</div>
</body>
</html>