File size: 2,476 Bytes
2b4bd40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>