-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathreport.html
More file actions
30 lines (26 loc) · 1.12 KB
/
report.html
File metadata and controls
30 lines (26 loc) · 1.12 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
<html>
<head>
<style>
body { font-family: sans-serif; max-width: 800px; margin: 2rem auto; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 8px; border-bottom: 1px solid #ddd; }
th { background-color: #f2f2f2; }
.fail { color: red; }
.pass { color: green; }
</style>
</head>
<body>
<h1>Benchmark Report: Agent-v1.0-Run</h1>
<p>Generated: 2026-01-18 16:37:29.776006</p>
<h2>📊 Metrics</h2>
<table>
<tr><th>Metric</th><th>Value</th></tr>
<tr><td>Accuracy</td><td>95.5%</td></tr><tr><td>Latency (P99)</td><td>1.2s</td></tr><tr><td>Cost</td><td>0.05$</td></tr>
</table>
<h2>❌ Failures</h2>
<table>
<tr><th>ID</th><th>Expected</th><th>Actual</th></tr>
<tr><td>test_24</td><td>Paris</td><td class='fail'>London</td></tr>
</table>
</body>
</html>