forked from satellitecomponent/Neurite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
594 lines (535 loc) · 31.6 KB
/
Copy pathindex.html
File metadata and controls
594 lines (535 loc) · 31.6 KB
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
<!DOCTYPE HTML>
<html>
<head>
<title>Neurite</title>
<link rel="stylesheet" type="text/css" href="./styles_v1.css">
<meta charset="UTF-8">
<script src="https://cdn.jsdelivr.net/npm/codemirror@5/lib/codemirror.js"></script>
<script src="https://cdn.jsdelivr.net/npm/codemirror@5/addon/scroll/simplescrollbars.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/codemirror@5/lib/codemirror.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/codemirror@5/addon/scroll/simplescrollbars.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet" />
<style type="text/css">
.cm-node {
color: #D15050;
}
.cm-ref {
color: #4F8EB7;
}
.cm-Prompt {
color: #E0B0FF;
background-color: #464250;
border-radius: 5px;
padding: 2px;
}
</style>
</head>
<body id="body">
<div ondragover="dragOverHandler(event);" ondrop="dropHandler(event);">
<svg id="svg_bg" viewBox="-128 -128 256 256" width="100%" height="100vh" top="0" left="0" position="fixed">
<title>Mandelbrot</title>
<g id="viewmatrix">
<g id="bg" />
<path id="mousePath" d="" fill="none" stroke="red" stroke-width="0.01" />
<g id="edges" />
</g>
</svg>
</div>
<svg id="debug_layer" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" style="position: absolute; left:0px; top:0px; display:none; visibility:hidden; width: 100%; height: 100vh;">
<style type="text/css">
.white {
font: 12px sans-serif;
fill: white;
}
</style>
<text x="0" y="0" class="white">fps:</text>
</svg>
<div class="dropdown">
<div class="menu-button">
<div class="menu-icon"></div>
</div>
<div class="dropdown-content">
<div style="display: none;" id="search-results">
<div class="submenu">
</div>
</div>
<div>
<div class="tabs">
<button class="tablink" onclick="openTab('tab1', this)">Notes</button>
<button class="tablink" onclick="openTab('tab4', this)">Ai</button>
<button class="tablink" onclick="openTab('tabExtract', this)">Data</button>
<button class="tablink" onclick="openTab('tab2', this)">Edit</button>
<button class="tablink" onclick="openTab('tab6', this)">Save</button>
<button class="tablink" onclick="openTab('tab3', this)">?</button>
</div>
<div id="tab1" class="tabcontent">
<!-- First tab content here -->
<div class="submenu">
<form id="prompt-form" onsubmit="sendMessage(event);">
<div>
<div style="display: flex; align-items: center;">
<input id="Searchbar" class="Searchbar" placeholder="search notes..." onkeydown="if(event.key === 'Enter') event.preventDefault();" />
<div class="status-icons-container">
<div class="loader" id="aiLoadingIcon" style="display:none;"></div>
<div class="error-icon-css" id="aiErrorIcon" style="display:none;">
<div class="error-x-mark">
<span class="error-x-mark-left"></span>
<span class="error-x-mark-right"></span>
</div>
</div>
</div>
<div class="btn-group" style="margin-left: 10px;">
<button type="submit">⏵</button>
<button id="regen-button" type="button">↺</button>
</div>
</div>
<div class="input-group" style="margin-top: 10px;">
<textarea id="prompt" rows="1" onkeydown="handleKeyDown(event);" oninput="autoGrow(event);" placeholder="Enter prompt..." required></textarea>
</div>
</div>
</form>
<br />
<div>
<textarea id="note-input" class="zettelkasten" rows="10" cols="50"></textarea>
</div>
<div class="checkboxarray">
<div>
<input type="checkbox" id="google-search-checkbox" name="enable-search">
<label for="google-search-checkbox">Search</label>
</div>
<div>
<input type="checkbox" id="code-checkbox" name="code-checkbox">
<label for="code-checkbox">Code</label>
</div>
<div>
<input type="checkbox" id="auto-mode-checkbox">
<label for="auto-mode-checkbox">Auto</label>
</div>
<div>
<input type="checkbox" id="embed-checkbox">
<label for="embed-checkbox">Data</label>
</div>
<div>
<input type="checkbox" id="enable-wolfram-alpha" name="enable-wolfram-alpha">
<label for="enable-wolfram-alpha">Wolfram</label>
</div>
<div>
<input type="checkbox" id="wiki-checkbox">
<label for="wiki-checkbox">Wiki</label>
</div>
</div>
</div>
</div>
<div id="tab2" class="tabcontent">
<!-- Second tab content here -->
<div class="submenu">
<div class="settingsSlider" style="margin-bottom: 10px;">
<label style="white-space: nowrap;">
z <sup id="exponent_value" style="color: powderblue">2</sup> + c
</label>
<input id="exponent" type="range" min="1" max="8" value="2">
</div>
<div class="settingsSlider" style="margin-bottom: 10px;">
<div style="display:flex; justify-content: space-between;">
<div id="quality_value">Quality</div>
<div id="fps">fps:?? (is javascript enabled?)</div>
</div>
<input id="quality" type="range" min="0" max="100" value="0">
</div>
<div class="gridLayout">
<div class="settingsSlider">
<label for="length">Length: <span id="length_value"></span></label>
<input id="length" type="range" min="0" max="100" value="30">
</div>
<div class="settingsSlider">
<label for="renderWidthMultSlider">Width: <span id="renderWidthMultValue"></span></label>
<input type="range" id="renderWidthMultSlider" min="0" max="12" step="0.001">
</div>
<div class="settingsSlider">
<label for="maxLinesSlider">Max Lines: <span id="maxLinesValue"></span></label>
<input type="range" id="maxLinesSlider" min="0" max="1024" step="1">
</div>
<div class="settingsSlider">
<label for="regenDebtSlider">Speed: <span id="regenDebtValue"></span></label>
<input type="range" id="regenDebtSlider" min="0" max="4" step="0.001">
</div>
</div>
<div id="colorselection">
<div class="color-picker-container">
<div class="color-picker-item">
<label for="rColor">R</label>
<input type="color" id="rColor" name="rColor" value="#FF0000">
</div>
<div class="color-picker-item">
<label for="gColor">G</label>
<input type="color" id="gColor" name="gColor" value="#00FF00">
</div>
<div class="color-picker-item">
<label for="bColor">B</label>
<input type="color" id="bColor" name="bColor" value="#0000FF">
</div>
</div>
<br />
<div id="colorsliders">
<input type="range" min="0" max="255" id="rSlider" value="0" style="display: none;">
<div class="gridLayout">
<div class="settingsSlider">
<label for="cSlider">Brightness: <span id="c_value"></span></label>
<input type="range" min="0" max="255" id="cSlider" value="128">
</div>
<div class="settingsSlider">
<label for="sSlider">Saturation: <span id="s_value"></span></label>
<input type="range" min="0" max="255" id="sSlider" value="127">
</div>
<div class="settingsSlider">
<label for="outer_opacity">Outer Opacity: <span id="outer_opacity_value"></span></label>
<input id="outer_opacity" type="range" min="0" max="100" value="100">
</div>
<div class="settingsSlider">
<label for="inner_opacity">Inner Opacity: <span id="inner_opacity_value"></span></label>
<input id="inner_opacity" type="range" min="0" max="100" value="100">
</div>
</div>
</div>
</div>
<div id="bgpick">
<input type="color" id="colorPicker" name="colorPicker" value="#000000" style="background:#222226; margin-top:5px">
<label for="colorPicker"> Background Color</label>
</div>
<br />
<button id="screenshotButton" class="key-button">Screenshot</button>
<button id="recordButton" class="key-button">Record</button>
<br />
<div id="coordinates" style="background-color: none;background-color: none; color:none; position: inherit; display: initial; left: 0px; top: 0px;">
pan:
<input id="pan" type="text" value="0+0i" style="background:none; border:none;" size="28" />
<br />
zoom:
<input id="zoom" type="text" value="1" style="background:none; border:none;" size="25" />
</div>
</div>
</div>
<div id="tab3" class="tabcontent">
<div id="howto" class="howto custom-scrollbar">
<table>
<tr>
<td><strong>AI HOW-TO</strong></td>
<td><input type="checkbox" id="instructions-checkbox"><label for="instructions-checkbox">←This checkbox enables the Ai to explain Neurite</label></td>
</tr>
<tr>
<td><a href="https://github.com/satellitecomponent/Neurite" id="clickable-link">Github Link</a></td>
<td>Visit our Github for extended documentation.</td>
</tr>
<tr>
<td><strong>CLICK AND DRAG</strong></td>
<td>Move around the fractal.</td>
</tr>
<tr>
<td>
<strong>
SCROLL WHEEL
<br />PINCH on touchpad
</strong>
</td>
<td>Zoom in/out.</td>
</tr>
<tr>
<td><strong>SHIFT + DOUBLE CLICK</strong></td>
<td>Creates a text node</td>
</tr>
<tr>
<td><strong>SHIFT (hold)</strong></td>
<td>Freeze Windows</td>
</tr>
<tr>
<td><strong>ALT + SCROLL</strong></td>
<td>Rotate the view.</td>
</tr>
<tr>
<td><strong>ALT + CLICK</strong></td>
<td>Selects multiple nodes. Allows for multiple nodes to be re-scaled</td>
</tr>
<tr>
<td><strong>ALT + DOUBLE CLICK</strong></td>
<td>Creates an ai chat node</td>
</tr>
<tr>
<td><strong>DOUBLE CLICK</strong></td>
<td>'Anchor' a window in place.</td>
</tr>
<tr>
<td><strong>SHIFT + SCROLL</strong></td>
<td>Resize a window.</td>
</tr>
<tr>
<td>
<strong>Local LLM</strong>
</td>
<td>In the Ai tab, check Local LLM and select a model. The Ai will download into your browser cache. More info on our <a href="https://github.com/satellitecomponent/Neurite" target="_blank" id="clickable-link">Github</a> or <a href="https://mlc.ai/web-llm/" target="_blank" id="clickable-link">web-llm</a></td>
</tr>
<tr>
<td>
<strong>Local Embeddings</strong>
</td>
<td>In the Ai tab, check Local Embeddings. The embeddings model will download into your browser cache.</td>
</tr>
<tr>
<td><strong>LocalHost Servers</strong></td>
<td>Wiki, Wolfram, and Webpage Extraction currently require setting up of personal localhosts.<br /> More info on our <a href="https://github.com/satellitecomponent/Neurite" target="_blank" id="clickable-link">Github</a><br /> The Ai How-To Checkbox at the top of the instructions will allow the ai to explain basic set-up.</td>
</tr>
<tr>
<td>Extras</td>
<td><input type="checkbox" id="novelty-checkbox"><label for="novelty-checkbox"><strong>: Novelty<br />(Shuffled Wiki Results)</strong></label></td>
</tr>
<tr>
<td>Extras</td>
<td>
<input type="checkbox" id="ai-nodes-checkbox">
<label for="ai-nodes-checkbox"><strong>: AI Generated AI Nodes <br />(or, Alt + Double Click / type LLM:)</strong></label>
</td>
</tr>
<tr>
<td>
<input type="text" id="node-tag" class="tags" value="node:" style="width:80px;" />
<label for="node-tag">Node Tag</label>
</td>
<td>
<input type="text" id="ref-tag" class="tags" value="ref:" style="width:80px;" />
<label for="ref-tag">Reference Tag</label>
</td>
</tr>
</table>
</div>
</div>
<div id="tab4" class="tabcontent">
<!-- Fourth tab content here -->
<div class="submenu">
<!--<div>
<button id="ai-cursor-button">Enable Ai Cursor</button>
</div>-->
<div class="inline-container">
<input type="checkbox" id="localLLM">
<label for="localLLM">:</label>
</div>
<button id="downloadAiButton" class="key-button">INSTALL</button>
<div class="inline-container">
<select id="LocalLLMselect" class="model-dropdown">
<option value="RedPajama-INCITE-Chat-3B-v1-q4f32_0" selected>Red Pajama 3B f32</option>
<option value="vicuna-v1-7b-q4f32_0">Vicuna 7B f32</option>
</select>
</div>
<div class="inline-container">
<div class="loader" id="loadingIcon" style="display:none;"></div>
</div>
<div class="inline-container">
<div id="errorIcon" style="display:none;">
<div class="error-icon-css">
<div class="error-x-mark">
<span class="error-x-mark-left"></span>
<span class="error-x-mark-right"></span>
</div>
</div>
</div>
</div>
<br />
<input type="checkbox" id="local-embeddings-checkbox">
<label for="local-embeddings-checkbox">: Local Embeddings</label>
<br />
<br />
<div class="api-container">
<div class="api-inputs">
<div>
<label for="api-key-input">OpenAI API Key:</label>
<input type="password" id="api-key-input">
</div>
<div class="google-key-input">
<label for="googleApiKey">Google API Key:</label>
<input type="password" id="googleApiKey">
</div>
<div class="google-key-input">
<label for="googleSearchEngineId">Search Engine ID:</label>
<input type="password" id="googleSearchEngineId">
</div>
<div class="wolfram-key-input">
<label for="wolframApiKey">Wolfram API Key:</label>
<input type="password" id="wolframApiKey">
</div>
</div>
<div class="api-buttons">
<button class="key-button" onclick="saveKeys()">Save Keys</button>
<button class="key-button" onclick="clearKeys()">Clear Keys</button>
</div>
</div>
<br />
<div style="display: flex; justify-content: flex-end; align-items: center;">
<label for="model-select" style="margin-right: 10px;">Select Model:</label>
<select id="model-select" class="model-selector" onchange="checkOtherModel(this)">
<option value="gpt-3.5-turbo">gpt-3.5-turbo</option>
<option value="gpt-3.5-turbo-16k">gpt-3.5-turbo-16k</option>
<option value="gpt-3.5-turbo-0613">gpt-3.5-turbo-0613</option>
<option value="gpt-3.5-turbo-16k-0613">gpt-3.5-turbo-16k-0613</option>
<option value="gpt-4">gpt-4</option>
<option value="gpt-4-0613">gpt-4-0613</option>
<option value="other">Other...</option>
</select>
<input id="model-input" class="model-input" style="display: none;" placeholder="Enter model name">
</div>
<br />
<div class="gridLayout">
<div class="settingsSlider">
<label for="max-tokens-slider">Max Tokens: <br /><span id="max-tokens-display">2000</span></label>
<input type="range" id="max-tokens-slider" name="max-tokens-slider" min="1" max="32000" value="2000">
</div>
<div class="settingsSlider">
<label id="model-temperature-label" for="model-temperature">Tempurature:<br /> 0.1</label>
<input type="range" id="model-temperature" name="model-temperature" min="0" max="1" step="0.1" value="0.1" onchange="updateLabel()">
</div>
<div class="settingsSlider">
<label for="max-context-size-slider">Context Size:</label>
<span id="max-context-size-display">32000</span>
<input type="range" id="max-context-size-slider" name="max-context-size-slider" min="0" max="32000" value="500">
</div>
<div class="settingsSlider">
<label id="node-slider-label">Top 3 <br />nodes</label>
<input type="range" id="node-count-slider" name="node-count-slider" min="1" max="25" value="3">
</div>
</div>
</div>
</div>
<div id="tabExtract" class="tabcontent">
<!-- Extract tab content here -->
<div class="submenu">
<label for="inputKeyExtract">Key:</label><br>
<input type="text" id="inputKeyExtract" name="inputKeyExtract"><br>
<label for="inputTextExtract">Text:</label><br>
<textarea id="inputTextExtract" rows="10" cols="50" class="zettelkasten"></textarea><br>
<div class="button-container">
<button id="chunkAndStoreButton" class="linkbuttons">Store Chunks</button>
<button onclick="deleteSelectedKeys()" class="linkbuttons">Delete Key(s)</button>
</div>
<strong><p style="font-weight: bold;">Stored Keys</p></strong>
<div id="key-list" class="scrollable-list">
<!-- Stored keys will be dynamically added here -->
</div>
<!--<input type="file" id="fileInput" />
<button id="fileUploadButton" onclick="promptForFileUpload()">Upload Files</button>-->
<br />
<div class="settingsSlider" style="margin-bottom: 10px;">
<label for="topN">Top <span id="topNValue">5</span> Webpage Excerpts</label>
<input type="range" id="topNSlider" name="topN" min="1" max="100" value="5">
</div>
<div class="gridLayout">
<div class="settingsSlider">
<label for="maxChunkSizeSlider">Chunk Size: <br /><span id="maxChunkSizeValue"></span></label>
<input type="range" min="1" max="4096" value="256" class="slider" id="maxChunkSizeSlider">
</div>
<div class="settingsSlider">
<label for="overlapSizeSlider">Overlap:<br /><span id="overlapSizeDisplay">10</span></label>
<input type="range" id="overlapSizeSlider" name="overlapSize" min="1" max="100" value="10">
</div>
</div>
</div>
</div>
<div id="tab6" class="tabcontent">
<div class="submenu">
<br />
<div id="saved-networks-container" class="scrollable-list"></div>
<a id="save-button">Save</a>
<input id="save-or-load" type="text" placeholder="save data..." style="width: 244px;" />
<a id="load-button">Load</a>
<a id="clear-button">Clear</a>
<div id="clear-sure" style="display:none">
<a id="clear-unsure-button">no</a>
<a id="clear-sure-button">yes</a>
</div>
<br />
<div style="text-align: center;">
<button id="clearLocalStorage" class="key-button">Clear Local Storage</button>
</div>
</div>
</div>
</div>
</div>
</div>
<a id="nodes">
<!-- Copy all text to personal storage -->
</a>
<!--iframe id="inlineFrameExample"
title="Inline Frame Example"
width="150"
height="100"
src="https://m.media-amazon.com/images/M/MV5BOTY2NDY4OGUtYWE0Ni00NWZiLWI3NDktYmE2YWM3Njc3YmRkXkEyXkFqcGdeQXVyMTIxOTU1MjQ3._V1_.jpg">
</iframe>
<iframe id="inlineFrameExample"
title="Inline Frame Example"
width="768"
height="512"
src="https://xkcd.com">
</iframe>
<svg width="20" height="20"><circle cx="10" cy="10" r="10" fill="red"/></svg>
<svg width="20" height="20"><circle cx="10" cy="10" r="10" fill="orange"/></svg>
<svg width="20" height="20"><circle cx="10" cy="10" r="10" fill="yellow"/></svg>
<svg width="20" height="20"><circle cx="10" cy="10" r="10" fill="green"/></svg>
<svg width="20" height="20"><circle cx="10" cy="10" r="10" fill="blue"/></svg>
<svg width="20" height="20"><circle cx="10" cy="10" r="10" fill="purple"/></svg>
</a-->
<div id="elements" class="windowbuttons" style="display:none; visibility:hidden;">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 2.125" height="16pt">
<g id="button-delete" transform="scale(0.125 0.125) translate(1 1)">
<rect x="0" y="0" width="16" height="16" fill="RGB(100,100,100)" stroke="none" />
<path d="M 1,1 l 3,0 4,4 4,-4 3,0
0,3 -4,4 4,4 0,3
-3,0 -4,-4 -4,4 -3,0
0,-3 4,-4 -4,-4 0,-3 z" fill="RGB(170,170,170)" stroke="none" />
</g>
<g id="button-fullscreen" transform="scale(0.125 0.125) translate(21 1)">
<rect x="0" y="0" width="16" height="16" fill="RGB(100,100,100)" stroke="none" />
<path d="M 1, 1 l 3,0 1.5,1.5 -3,0 0,3 -1.5,-1.5 0,-3 z
M 15, 1 l -3,0 -1.5,1.5 3,0 0,3 1.5,-1.5 0,-3 z
M 15,15 l -3,0 -1.5,-1.5 3,0 0,-3 1.5,1.5 0,3 z
M 1,15 l 3,0 1.5,-1.5 -3,0 0,-3 -1.5,1.5 0,3 z
M 4, 4 l 2,0 1,1 -2,0 0,2 -1,-1 0,-2 z
M 12, 4 l -2,0 -1,1 2,0 0,2 1,-1 0,-2 z
M 12,12 l -2,0 -1,-1 2,0 0,-2 1,1 0,2 z
M 4,12 l 2,0 1,-1 -2,0 0,-2 -1,1 0,2 z
" fill="RGB(170,170,170)" stroke="none" />
</g>
<g id="button-collapse" transform="scale(0.125 0.125) translate(41 1)">
<rect x="0" y="0" width="16" height="16" fill="RGB(100,100,100)" stroke="none" />
<circle cx="8" cy="8" r="5.375" stroke="RGB(170,170,170)" stroke-width="2.75" fill="none" />
</g>
</svg>
</div>
<script>
window.onload = function () {
var input = document.createElement("input");
input.type = "file";
if ('webkitdirectory' in input) {
// If the browser supports directory selection, add the webkitdirectory attribute
input.setAttribute('webkitdirectory', '');
input.setAttribute('multiple', '');
}
input.id = "fileInput";
// Append the input field to the body (or any other container you prefer)
document.body.appendChild(input);
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/2.3.3/purify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/autoloader/prism-autoloader.min.js"></script>
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>-->
<script type="text/javascript" src="https://cdn.jsdelivr.net/pyodide/v0.23.0/full/pyodide.js"></script>
<script src="js/dropdown_v1_0_2.js"></script>
<script src="js/mandelbrot_v1_0_1.js"></script>
<script src="js/zettelkasten_v1.js"></script>
<script defer type="module" src="/embeddings.js"></script>
<script src="js/interface_v1_0_1.js"></script>
<script type="module" src="/webLLM/webllm_v1_0_1.ts" defer></script>
<script src="js/ainodes_v1_0_1.js"></script>
<script src="js/ai_v1_0_3.js"></script>
<!--<script src="js/aicursor.js"></script>-->
<script src="js/searchapi_v1_0_1.js"></script>
<script src="js/record_v1.js"></script>
</body>
</html>