-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.16 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.16 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>LLM SimPy Models</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@stlite/browser@0.76.0/build/style.css"
/>
</head>
<body>
<div id="root"></div>
<script type="module">
import { mount } from "https://cdn.jsdelivr.net/npm/@stlite/browser@0.76.0/build/stlite.js";
mount(
{
requirements: [
"matplotlib",
"numpy",
"pandas",
"pip",
"simpy==4.1.1",
"sim-tools==0.5.0",
"streamlit==1.34.0"
],
entrypoint: "Home.py",
files: {
"Home.py": {url: "./Home.py"},
"pages/CCU_Stage_1.py": {url: "./pages/CCU_Stage_1.py"},
"pages/CCU_Stage_2.py": {url: "./pages/CCU_Stage_2.py"},
"pages/Stroke_Stage_1.py": {url: "./pages/Stroke_Stage_1.py"},
"pages/Stroke_Stage_2.py": {url: "./pages/Stroke_Stage_2.py"}
}
},
document.getElementById("root"),
);
</script>
</body>
</html>