Replace default static org card page
Browse filesRender the AEC-Bench organisation card from the static Space index page instead of the default static Space placeholder.
- index.html +32 -17
- style.css +72 -16
index.html
CHANGED
|
@@ -1,19 +1,34 @@
|
|
|
|
|
|
|
|
| 1 |
<!doctype html>
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!-- ABOUTME: Static Hugging Face organisation card content for the aec-bench profile. -->
|
| 2 |
+
<!-- ABOUTME: Presents project context and links without requiring a running Space app. -->
|
| 3 |
<!doctype html>
|
| 4 |
+
<html lang="en">
|
| 5 |
+
<head>
|
| 6 |
+
<meta charset="utf-8" />
|
| 7 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 8 |
+
<title>AEC-Bench</title>
|
| 9 |
+
<link rel="stylesheet" href="style.css" />
|
| 10 |
+
</head>
|
| 11 |
+
<body>
|
| 12 |
+
<main>
|
| 13 |
+
<h1>AEC-Bench</h1>
|
| 14 |
+
<p>
|
| 15 |
+
<a href="https://github.com/TheodoreGalanos/aec-bench" target="_blank" rel="noreferrer">AEC-Bench</a>
|
| 16 |
+
is an open benchmark and Python toolkit for evaluating agentic AI systems on realistic
|
| 17 |
+
Architecture, Engineering, and Construction tasks.
|
| 18 |
+
</p>
|
| 19 |
+
<p>
|
| 20 |
+
The project combines generated engineering tasks, executable verifiers, model rollout ledgers,
|
| 21 |
+
and trace artifacts so evaluation can be inspected beyond a single leaderboard score: by task
|
| 22 |
+
family, difficulty, information visibility, tool use, cost, and failure mode.
|
| 23 |
+
</p>
|
| 24 |
+
<nav aria-label="AEC-Bench links">
|
| 25 |
+
<a href="https://arxiv.org/abs/2603.29199" target="_blank" rel="noreferrer">Paper</a>
|
| 26 |
+
<a href="https://github.com/TheodoreGalanos/aec-bench" target="_blank" rel="noreferrer">Code</a>
|
| 27 |
+
<a href="https://huggingface.co/datasets/aec-bench/release-model-rollouts" target="_blank" rel="noreferrer">Release dataset</a>
|
| 28 |
+
</nav>
|
| 29 |
+
<p class="footer">
|
| 30 |
+
This organisation hosts datasets, rollout artifacts, and benchmark releases for the AEC-Bench project.
|
| 31 |
+
</p>
|
| 32 |
+
</main>
|
| 33 |
+
</body>
|
| 34 |
</html>
|
style.css
CHANGED
|
@@ -1,28 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
h1 {
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
p {
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
|
|
|
| 1 |
+
/* ABOUTME: Lightweight styles for the Hugging Face aec-bench organisation card. */
|
| 2 |
+
/* ABOUTME: Keeps the static Space content compact inside the profile card frame. */
|
| 3 |
+
:root {
|
| 4 |
+
color: #111827;
|
| 5 |
+
background: transparent;
|
| 6 |
+
font-family:
|
| 7 |
+
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
body {
|
| 11 |
+
margin: 0;
|
| 12 |
+
background: transparent;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
main {
|
| 16 |
+
max-width: 880px;
|
| 17 |
+
padding: 26px 32px 30px;
|
| 18 |
}
|
| 19 |
|
| 20 |
h1 {
|
| 21 |
+
margin: 0 0 12px;
|
| 22 |
+
font-size: 28px;
|
| 23 |
+
line-height: 1.15;
|
| 24 |
+
letter-spacing: 0;
|
| 25 |
}
|
| 26 |
|
| 27 |
p {
|
| 28 |
+
max-width: 780px;
|
| 29 |
+
margin: 0 0 13px;
|
| 30 |
+
color: #374151;
|
| 31 |
+
font-size: 16px;
|
| 32 |
+
line-height: 1.58;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
a {
|
| 36 |
+
color: #0f4c81;
|
| 37 |
+
font-weight: 650;
|
| 38 |
+
text-decoration: none;
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
a:hover {
|
| 42 |
+
text-decoration: underline;
|
| 43 |
}
|
| 44 |
|
| 45 |
+
nav {
|
| 46 |
+
display: flex;
|
| 47 |
+
flex-wrap: wrap;
|
| 48 |
+
gap: 10px;
|
| 49 |
+
margin: 18px 0 16px;
|
|
|
|
| 50 |
}
|
| 51 |
|
| 52 |
+
nav a {
|
| 53 |
+
border: 1px solid #d1d5db;
|
| 54 |
+
border-radius: 6px;
|
| 55 |
+
padding: 7px 11px;
|
| 56 |
+
color: #111827;
|
| 57 |
+
font-size: 14px;
|
| 58 |
+
line-height: 1;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
nav a:hover {
|
| 62 |
+
border-color: #9ca3af;
|
| 63 |
+
background: #f9fafb;
|
| 64 |
+
text-decoration: none;
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
.footer {
|
| 68 |
+
margin-bottom: 0;
|
| 69 |
+
color: #4b5563;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
@media (max-width: 640px) {
|
| 73 |
+
main {
|
| 74 |
+
padding: 20px 18px 24px;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
h1 {
|
| 78 |
+
font-size: 24px;
|
| 79 |
+
}
|
| 80 |
+
|
| 81 |
+
p {
|
| 82 |
+
font-size: 15px;
|
| 83 |
+
}
|
| 84 |
}
|