-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
446 lines (410 loc) · 16.1 KB
/
index.html
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<html>
<head>
<title>dottxt - make ai speak computer</title>
<!-- PostHog analytics -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script>
!(function (t, e) {
var o, n, p, r;
e.__SV ||
((window.posthog = e),
(e._i = []),
(e.init = function (i, s, a) {
function g(t, e) {
var o = e.split(".");
2 == o.length && ((t = t[o[0]]), (e = o[1])),
(t[e] = function () {
t.push(
[e].concat(
Array.prototype.slice.call(
arguments,
0,
),
),
);
});
}
((p = t.createElement("script")).type =
"text/javascript"),
(p.async = !0),
(p.src = s.api_host + "/static/array.js"),
(r =
t.getElementsByTagName(
"script",
)[0]).parentNode.insertBefore(p, r);
var u = e;
for (
void 0 !== a ? (u = e[a] = []) : (a = "posthog"),
u.people = u.people || [],
u.toString = function (t) {
var e = "posthog";
return (
"posthog" !== a && (e += "." + a),
t || (e += " (stub)"),
e
);
},
u.people.toString = function () {
return u.toString(1) + ".people (stub)";
},
o =
"capture identify alias people.set people.set_once set_config register register_once unregister opt_out_capturing has_opted_out_capturing opt_in_capturing reset isFeatureEnabled onFeatureFlags getFeatureFlag getFeatureFlagPayload reloadFeatureFlags group updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures getActiveMatchingSurveys getSurveys onSessionId".split(
" ",
),
n = 0;
n < o.length;
n++
)
g(u, o[n]);
e._i.push([i, s, a]);
}),
(e.__SV = 1));
})(document, window.posthog || []);
posthog.init("phc_L5c1ud1IlNPP3574tv2tMIrOxEgWZOFbikLP5NdeR71", {
api_host: "https://app.posthog.com",
});
</script>
<link
href="https://fonts.googleapis.com/css2?family=VT323&display=swap"
rel="stylesheet"
/>
<link
href="//fonts.googleapis.com/css?family=Raleway:400,300,600"
rel="stylesheet"
type="text/css"
/>
<script src="https://unpkg.com/[email protected]/dist/index.umd.js"></script>
<style>
@font-face {
font-family: "NeueBit";
src:
url("fonts/PPNeueBit-Regular.woff2") format("woff2"),
url("fonts/PPNeueBit-Regular.woff") format("woff");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "NeueBit Bold";
src:
url("fonts/PPNeueBit-Bold.woff2") format("woff2"),
url("fonts/PPNeueBit-Bold.woff") format("woff");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Montreal";
src:
url("fonts/PPNeueMontreal-Regular.woff2") format("woff2"),
url("fonts/PPNeueMontreal-Regular.woff") format("woff");
font-weight: normal;
font-style: normal;
}
body {
background-color: white;
margin: 0;
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
height: 100vh;
font-family: "NeueBit";
color: #333;
text-align: center;
margin: 0 auto;
width: 100%;
}
p {
margin: 0;
}
.dottxt-inline {
font-family: NeueBit Bold;
font-size: 2.2rem;
font-weight: bold;
line-height: 1;
}
.container {
/* display: flex; */
/* flex-direction: column; */
/* justify-content: center; */
align-items: center;
padding-left: 2rem;
padding-right: 2rem;
/* padding-top: 2rem; */
/* padding-bottom: 4rem; */
height: 100%;
}
a {
/* display: block; */
color: #444;
text-decoration-thickness: 2px;
text-decoration: underline;
}
a:hover {
color: blue;
text-decoration-color: blue;
text-decoration-thickness: 2px;
}
/* Set links already clicked to black */
a:visited {
color: #444;
}
a:visited:hover {
color: blue;
text-decoration-color: blue;
text-decoration-thickness: 2px;
}
.manifesto {
max-width: 800px;
width: 100%;
font-size: 2rem;
font-family: "Montreal";
text-align: left;
padding-bottom: 2.5rem;
line-height: 1.5;
}
h1 {
font-size: 6rem;
font-family: "NeueBit Bold";
line-height: 0.8;
margin-top: 1rem;
}
.navbar {
display: flex;
justify-content: center;
text-align: center;
align-items: center;
gap: 2rem;
font-size: 4rem;
width: 100%;
padding-bottom: 10vh;
padding-top: 2.5rem;
}
.navbar a {
font-family: "NeueBit Bold";
}
.navbar-signup {
display: flex;
flex-direction: row !important;
align-items: center;
justify-content: center;
gap: 1rem !important;
padding-top: 2.5rem;
}
.navbar-signup img {
width: 3rem;
}
.logo {
padding-top: 10vh;
padding-bottom: 7vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo img {
width: 100%;
max-width: 500px;
}
.company-name {
font-size: 10rem;
font-family: "NeueBit Bold";
color: #000;
}
@media screen and (max-width: 770px) {
/* Stack links vertically on small screens */
.navbar {
/* overflow: hidden; */
/* display: flex;
justify-content: start;
flex-direction: column; */
/* text-align: center; */
width: 100%;
align-items: center;
gap: 2rem;
font-size: 4rem;
}
.logo img {
width: 100%;
max-width: 400px;
}
.container {
height: fit-content;
}
.manifesto {
font-size: 1.5rem;
line-height: 1.5;
}
h1 {
font-size: 4rem;
}
}
@media screen and (max-width: 730px) {
.logo img {
width: 100%;
max-width: 700px;
}
.navbar {
font-size: 3rem;
gap: 1rem;
}
}
@media screen and (max-width: 570px) {
.logo img {
width: 100%;
max-width: 400px;
}
.navbar {
font-size: 2.5rem;
gap: 1rem;
}
}
@media screen and (max-width: 490px) {
/* Prevents the logo from "smushing" against the
top of the viewport when the screen height is small */
.container {
height: fit-content;
}
.logo img {
width: 100%;
max-width: 300px;
}
/* Shrink h1 */
h1 {
font-size: 4rem;
}
.navbar {
/* Column if on mobile */
display: flex;
font-size: 3rem;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
padding-top: 1rem;
}
}
</style>
</head>
<body>
<!-- Fixed at top -->
<div class="container">
<div class="logo">
<img src="logo-signature.svg" />
</div>
<!-- Manifesto -->
<div class="manifesto">
There are hidden rules in every system.
<br />
<br />
Rules to govern the sentences we write, the software we code,
and the music we play. These rules aren’t created to subjugate,
but to integrate. Without them, the different parts of a system
can’t work together to form something greater.
<br />
<br />
Some believe that these rules reflect our unique way of thinking and conceiving the world.
But for computers alike, without structure there is chaos.
Keywords and variable names, out of order, don’t make a program.
You need a grammar — <i>a syntax</i> — to make the system work.
<br />
<br />
For almost a century, we’ve been teaching our machines the
grammars of our world to help us work, play, and create better.
But as of yet, our AIs remain stubbornly resistant to learning
them. While they can string together sentences to emulate human
syntax, they’ve yet to learn the syntax of computer, and of the
applications that run our world.
<br />
<br />
Without more <i>predictable</i> outputs, LLMs simply can’t be
integrated into our systems and businesses. It’s their
fundamental flaw.
<br />
<br />
We believe that this demands a new programming paradigm, which
allows LLMs to respond in a way that software understands. Until
then, our generations are fun. But they are not transformative.
<br />
<br />
Until then, it’s just the beginning for how AI will change our
world.
<br />
<br />
<h1>
Our mission is to help AI speak the language of every
application
</h1>
This is why we built <span class="dottxt-inline">.txt</span>. A tool to make LLMs reliable
enough for the world to build on. A spellcheck for programming
the future. And more broadly, an ecosystem where developers can
design, execute, deploy, and evaluate LLM applications.
<br />
<br />
But how? LLMs are probabilistic by nature, so we believe the
only solution is implementing guard rails at the outset based on
your unique criteria… taking all potential probabilities and
setting all the useless ones to zero. In other words, <span class="dottxt-inline">.txt</span> stops
LLMs from making errors before they even make them.
<br />
<br />Fewer tokens. Less money. More efficiency. We are not the
average AI engineers.
<br />
<br />
We cut our teeth in applied statistical modeling — a job where
you make bespoke models specially designed to give only correct
answers. To us, applying this field to LLMs is the logical next
step. The missing layer that will make AI truly useful, cutting
out the noise and uncertainty endemic to LLMs.
<br />
<br />
It’s the thing that makes LLMs act like <i>computers</i>.
Finally. If your goal is to sound conversational and believable
enough, the everyday language works just fine. But to be good
enough to <i>compute</i> with, the level of clarity must be far
higher. In this sense, LLMs are, ironically, a regression!
<br />
<br />
So, let’s create the new rules for AI and invent a new way to
<i>program</i> with them… together.
Join the discussion on <a href="https://discord.gg/ErZ8XnCmkQ">Discord</a>.
Post at us on <a href="https://x.com/dottxtai">Twitter</a> or
<a href="https://bsky.app/profile/dottxtai.bsky.social">Bluesky</a>.
We can’t wait to see what you create!
<br />
<br />
-Remi, Brandon, and Dan
</div>
<hr/>
<div class="navbar">
<img src="star.gif" />
<a href="https://blog.dottxt.co" target="_blank">blog</a>
<a
href="https://github.com/outlines-dev/outlines"
target="_blank"
>github</a
>
<a href="https://jobs.ashbyhq.com/dottxt" target="_blank"
>careers</a
>
<a href="https://h1xbpbfsf0w.typeform.com/to/ZgBCvJHF"
>sign up</a
>
<img src="star.gif" />
</div>
</div>
</body>
<script>
new TypeIt("#animation", {
speed: 60,
afterComplete: function (instance) {
instance.destroy();
},
})
.type("Large Language Models")
.break()
.type("that speak the language")
.break()
.type("of <b>every</b> application.")
.go();
</script>
</html>