-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (52 loc) · 2.62 KB
/
index.html
File metadata and controls
59 lines (52 loc) · 2.62 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
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
---
layout: default
title: Home
---
<section class="blog-section">
<h2>Recent Writing</h2>
<ul class="blog-list">
{% assign posts = site.posts | slice: 0, 5 %}
{% for post in posts %}
<li>
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
<span class="post-date">{{ post.date | date: "%b %d, %Y" }}</span>
</li>
{% endfor %}
</ul>
<a href="{{ '/blog/' | relative_url }}" class="section-link">All posts →</a>
</section>
<section class="projects-section">
<h2>Projects</h2>
<article class="project-card">
<a href="{{ '/projects/arbiter/' | relative_url }}"><img src="{{ '/assets/images/arbiter.jpg' | relative_url }}" alt="Arbiter" class="project-logo"></a>
<div class="project-content">
<h3><a href="{{ '/projects/arbiter/' | relative_url }}">Arbiter</a></h3>
<p>LLM evaluation with cost transparency. Know what your evals cost before the invoice arrives.</p>
<a href="{{ '/projects/arbiter/' | relative_url }}" class="project-link">Learn more →</a>
</div>
</article>
<article class="project-card">
<a href="{{ '/projects/conduit/' | relative_url }}"><img src="{{ '/assets/images/conduit.jpg' | relative_url }}" alt="Conduit" class="project-logo"></a>
<div class="project-content">
<h3><a href="{{ '/projects/conduit/' | relative_url }}">Conduit</a></h3>
<p>LLM routing that learns which model works best for each query. Stop overpaying for simple tasks.</p>
<a href="{{ '/projects/conduit/' | relative_url }}" class="project-link">Learn more →</a>
</div>
</article>
<article class="project-card">
<a href="{{ '/projects/engram/' | relative_url }}"><img src="{{ '/assets/images/engram.jpg' | relative_url }}" alt="Engram" class="project-logo"></a>
<div class="project-content">
<h3><a href="{{ '/projects/engram/' | relative_url }}">Engram</a></h3>
<p>AI memory that preserves ground truth. Because most memory systems hallucinate more than the models they serve.</p>
<a href="{{ '/projects/engram/' | relative_url }}" class="project-link">Learn more →</a>
</div>
</article>
<article class="project-card">
<a href="{{ '/projects/tessera/' | relative_url }}"><img src="{{ '/assets/images/tessera.png' | relative_url }}" alt="Tessera" class="project-logo"></a>
<div class="project-content">
<h3><a href="{{ '/projects/tessera/' | relative_url }}">Tessera</a></h3>
<p>Data contract coordination. No more 3am surprises when someone upstream drops a column.</p>
<a href="{{ '/projects/tessera/' | relative_url }}" class="project-link">Learn more →</a>
</div>
</article>
</section>