Agents_Course_final / index.html
BmanClark's picture
Build local Gemma 4 evaluation runner
2b4bd40
Raw
History Blame Contribute Delete
2.48 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="dark light" />
<title>Agents Course Final Assignment</title>
<style>
:root {
font-family: Inter, ui-sans-serif, system-ui, sans-serif;
color: #e8eaf2;
background: #0d1020;
}
* { box-sizing: border-box; }
body {
min-height: 100vh;
margin: 0;
display: grid;
place-items: center;
padding: 2rem;
background:
radial-gradient(circle at 15% 15%, #343a8a66, transparent 34rem),
radial-gradient(circle at 85% 80%, #1c787066, transparent 30rem),
#0d1020;
}
main {
width: min(760px, 100%);
padding: clamp(2rem, 7vw, 4.5rem);
border: 1px solid #ffffff20;
border-radius: 24px;
background: #171a2dd9;
box-shadow: 0 24px 80px #0008;
}
.eyebrow {
color: #83e6d4;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
}
h1 {
margin: .5rem 0 1rem;
font-size: clamp(2.2rem, 7vw, 4.4rem);
line-height: .98;
}
p { color: #b9bed1; font-size: 1.08rem; line-height: 1.7; }
ol { color: #d8dbea; line-height: 1.8; padding-left: 1.25rem; }
a {
display: inline-block;
margin-top: 1rem;
padding: .85rem 1.15rem;
border-radius: 999px;
color: #0d1020;
background: #83e6d4;
font-weight: 800;
text-decoration: none;
}
</style>
</head>
<body>
<main>
<div class="eyebrow">Hugging Face Agents Course</div>
<h1>Local-first GAIA agent</h1>
<p>
This Space publishes the implementation used for the final assignment.
Inference stays on the author's machine through Ollama; this static page
requires no paid compute and contains no credentials or evaluation answers.
</p>
<ol>
<li><strong>Plan</strong> the evidence and computations needed.</li>
<li><strong>Research</strong> with web, file, and calculation tools.</li>
<li><strong>Validate</strong> one exact-match submission value.</li>
</ol>
<a href="https://huggingface.co/spaces/BmanClark/Agents_Course_final/tree/main">
Browse the source code
</a>
</main>
</body>
</html>