33 lines
1 KiB
HTML
33 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Benchmark Visualizer</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="/static/css/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h1>Benchmark Visualizer</h1>
|
|
<p>Analyze and visualize benchmark results</p>
|
|
</div>
|
|
|
|
<div class="benchmark-selector">
|
|
<label>Select Benchmark:</label>
|
|
<select id="benchmark-select" onchange="selectBenchmark()">
|
|
<option value="">-- Select a benchmark --</option>
|
|
<option value="locomo-search">LoComo (search)</option>
|
|
<option value="locomo-think">LoComo (think)</option>
|
|
<option value="longmemeval">LongMemEval</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div id="benchmark-content">
|
|
<div class="welcome-message">
|
|
<h2>Welcome to Benchmark Visualizer</h2>
|
|
<p>Select a benchmark from the dropdown above to view results.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/static/js/app.js"></script>
|
|
</body>
|
|
</html>
|