-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (53 loc) · 2.18 KB
/
index.html
File metadata and controls
59 lines (53 loc) · 2.18 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
<!--
~ Copyright (c) 2023-2025 Datalayer, Inc.
~ Distributed under the terms of the Modified BSD License.
-->
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Datalayer Core Examples</title>
<!-- Datalayer Configuration -->
<script id="datalayer-config-data" type="application/json">
{
"runUrl": "%VITE_DATALAYER_RUN_URL%",
"token": "%VITE_DATALAYER_API_KEY%",
"credits": 100,
"cpuEnvironment": "ai-agents-env",
"gpuEnvironment": "ai-env"
}
</script>
<!-- Jupyter Configuration -->
<script id="jupyter-config-data" type="application/json">
{
"appName": "Datalayer Core Examples",
"baseUrl": "%VITE_DATALAYER_RUN_URL%/api/jupyter-server",
"wsUrl": "%VITE_DATALAYER_RUN_URL_WS%/api/jupyter-server",
"token": "60c1661cc408f978c309d04157af55c9588ff9557c9380e4fb50785750703da6",
"appUrl": "/lab",
"themesUrl": "/lab/api/themes",
"disableRTC": false,
"terminalsAvailable": "false",
"mathjaxUrl": "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js",
"mathjaxConfig": "TeX-AMS_CHTML-full,Safe"
}
</script>
<!-- IPyWidgets support -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script>
<script
data-jupyter-widgets-cdn="https://cdn.jsdelivr.net/npm/"
data-jupyter-widgets-cdn-only="true"
></script>
<!-- Favicon -->
<link
rel="shortcut icon"
href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAC7SURBVFiF7ZU9CgIxEIXfTHbPopfYc+pJ9AALtmJnZSOIoJWFoCTzLHazxh/Ebpt5EPIxM8XXTCKTxYyMCYwJFhOYCo4JFiMuu317PZwaqEBUIar4YMmskL73DytGjgu4gAt4PDJdzkkzMBloBhqBgcu69XW+1I+rNSQESNDuaMEhdP/Fj/7oW+ACLuACHk/3F5BAfuMLBjm8/ZnxNvNtHmY4b7Ztut0bqStoVSHfWj9Z6mr8LXABF3CBB3nvkDfEVN6PAAAAAElFTkSuQmCC"
type="image/x-icon"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/examples/main.tsx"></script>
</body>
</html>