Commit ·
779353a
1
Parent(s): 5704043
Fix App tab HTML, remove broken iframe link
Browse files- server/app.py +5 -3
server/app.py
CHANGED
|
@@ -29,15 +29,17 @@ async def root():
|
|
| 29 |
<body style="font-family: sans-serif; padding: 2rem; background: #0f172a; color: #e2e8f0;">
|
| 30 |
<h1>🦠 Cascade Containment</h1>
|
| 31 |
<p>An RL benchmark for epidemic containment policy under uncertainty.</p>
|
| 32 |
-
<p>Status: <strong style="color: #4ade80;">Running</strong></p>
|
| 33 |
-
<h3>Endpoints</h3>
|
| 34 |
<ul>
|
| 35 |
<li><a href="/health" style="color: #60a5fa;">/health</a> — Health check</li>
|
| 36 |
<li>/reset — Start new episode</li>
|
| 37 |
<li>/step — Take action</li>
|
| 38 |
<li>/state — Get episode state</li>
|
| 39 |
</ul>
|
| 40 |
-
<p
|
|
|
|
|
|
|
| 41 |
</body>
|
| 42 |
</html>
|
| 43 |
"""
|
|
|
|
| 29 |
<body style="font-family: sans-serif; padding: 2rem; background: #0f172a; color: #e2e8f0;">
|
| 30 |
<h1>🦠 Cascade Containment</h1>
|
| 31 |
<p>An RL benchmark for epidemic containment policy under uncertainty.</p>
|
| 32 |
+
<p>Status: <strong style="color: #4ade80;">Running ✓</strong></p>
|
| 33 |
+
<h3>Available Endpoints</h3>
|
| 34 |
<ul>
|
| 35 |
<li><a href="/health" style="color: #60a5fa;">/health</a> — Health check</li>
|
| 36 |
<li>/reset — Start new episode</li>
|
| 37 |
<li>/step — Take action</li>
|
| 38 |
<li>/state — Get episode state</li>
|
| 39 |
</ul>
|
| 40 |
+
<p style="color: #94a3b8; margin-top: 2rem;">
|
| 41 |
+
Tasks: easy (2 districts) · medium (4 districts) · hard (6 districts, 3-day data lag)
|
| 42 |
+
</p>
|
| 43 |
</body>
|
| 44 |
</html>
|
| 45 |
"""
|