File size: 676 Bytes
1768d92
892d25a
1768d92
 
 
892d25a
 
 
 
1768d92
892d25a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1768d92
 
 
 
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
<script lang="ts">
  let data = fetch("/args").then((d) => d.json());
</script>

<main>
  <h1>OpenAI Evals Hub</h1>
  <h3>
    Explore the results of OpenAI evals using <a href="https://zenoml.com">Zeno</a>
  </h3>

  <!-- table with links to zeno sites. -->
  <table>
    <thead>
      <tr>
        <th>Evaluation</th>
      </tr>
    </thead>
    <tbody>
      {#await data}
        <p>loading</p>
      {:then final_data}
        {#each final_data as d}
          {@const name = Array.from(Object.keys(d))[0]}
          <tr>
            <td><a href="/{name}/">{name}</a></td>
          </tr>
        {/each}
      {/await}
    </tbody>
  </table>
</main>

<style>
</style>