Spaces:
Running
Running
File size: 4,776 Bytes
35ea9cd 3748f8d 35ea9cd b9d7c95 35ea9cd 3b3d577 35ea9cd 3b3d577 35ea9cd 3b3d577 35ea9cd 3b3d577 35ea9cd b9d7c95 35ea9cd 3748f8d 35ea9cd | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Incident Triage Environment</title>
<link rel="stylesheet" href="/assets/styles.css?v=5">
</head>
<body data-page="home">
<div class="page-shell">
<header class="topbar">
<a class="brand" href="/">
<span class="brand-kicker">OpenEnv Environment</span>
<span class="brand-title">Incident Triage</span>
</a>
<nav class="nav-links">
<a href="/status">Status</a>
<a href="/playground">Playground</a>
<a href="/api">API</a>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-copy">
<p class="eyebrow">Production Incident Response</p>
<h1>Welcome to Incident Triage Environment</h1>
<p class="hero-text">
A real-world OpenEnv environment for severity classification, root-cause analysis,
and next-action recommendation across production incidents.
</p>
<div class="hero-actions">
<a class="button button-primary" href="/playground">Launch Playground</a>
<a class="button button-secondary" href="/status">View Live Status</a>
</div>
</div>
<div class="hero-panel floating-panel">
<div class="panel-header">
<span>Live Snapshot</span>
<span class="live-pill" data-health-pill>Checking</span>
</div>
<div class="stats-grid">
<article class="stat-card">
<span class="stat-label">Total Incidents</span>
<strong class="stat-value" data-total-incidents>--</strong>
</article>
<article class="stat-card">
<span class="stat-label">Task Families</span>
<strong class="stat-value" data-task-count>--</strong>
</article>
<article class="stat-card stat-card-text">
<span class="stat-label">API Mode</span>
<strong class="stat-value stat-value-text">FastAPI</strong>
<span class="stat-note">HTTP API</span>
</article>
<article class="stat-card stat-card-text">
<span class="stat-label">Episode Shape</span>
<strong class="stat-value stat-value-text">1 Step</strong>
<span class="stat-note">reset -> step</span>
</article>
</div>
</div>
</section>
<section class="feature-strip">
<article class="feature-card">
<span class="feature-index">01</span>
<h2>Typed contracts</h2>
<p>Observation, action, reward, state, and reset inputs are all strongly modeled for repeatable evaluation.</p>
</article>
<article class="feature-card">
<span class="feature-index">02</span>
<h2>Deterministic graders</h2>
<p>Each task returns scores in the 0.0 to 1.0 range with exact-match and partial-credit rules.</p>
</article>
<article class="feature-card">
<span class="feature-index">03</span>
<h2>Deployed workflow</h2>
<p>Docker packaging, Space-ready metadata, runtime validation, and a root-level baseline script are all included.</p>
</article>
</section>
<section class="tasks-section">
<div class="section-heading">
<p class="eyebrow">Task Ladder</p>
<h2>Three escalating operator decisions</h2>
</div>
<div class="task-grid" data-task-grid>
<article class="task-card skeleton-card"></article>
<article class="task-card skeleton-card"></article>
<article class="task-card skeleton-card"></article>
</div>
</section>
<section class="routes-section floating-panel">
<div class="section-heading compact">
<p class="eyebrow">Quick Links</p>
<h2>Use the environment your way</h2>
</div>
<div class="route-grid">
<a class="route-card" href="/status">
<strong>/status</strong>
<span>Live environment health, task inventory, and schema coverage.</span>
</a>
<a class="route-card" href="/playground">
<strong>/playground</strong>
<span>Manually reset a session, submit an action, and inspect the typed response.</span>
</a>
<a class="route-card" href="/api">
<strong>/api</strong>
<span>Styled API explorer with validator routes, payload notes, and raw JSON links.</span>
</a>
</div>
</section>
</main>
</div>
<script src="/assets/app.js?v=5" defer></script>
</body>
</html>
|