-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2.04 KB
/
Copy pathindex.html
File metadata and controls
53 lines (53 loc) · 2.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="icon" href="/brand/agentic-dataset-mark.svg" type="image/svg+xml" />
<title>Agentic Datasets</title>
<meta
name="description"
content="An independent technical programme defining a behavioural contract for governed agentic datasets: 15 assertions, language-neutral vectors, checked without implementation access."
/>
<link rel="canonical" href="https://agenticdatasets.org/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Agentic Datasets" />
<meta
property="og:description"
content="A behavioural contract for governed agentic datasets: 15 assertions, language-neutral vectors, checked without implementation access."
/>
<meta property="og:url" content="https://agenticdatasets.org/" />
<meta
property="og:image"
content="https://agenticdatasets.org/brand/agentic-dataset-mark-512.png"
/>
<meta name="twitter:card" content="summary" />
<link
rel="preload"
href="/fonts/roboto-slab-latin.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<script>
// Applied before first paint, so a reader who chose a theme never sees
// the other one flash. Deliberately duplicates the logic in
// ThemeToggle.tsx rather than importing it: by the time the bundle runs,
// the wrong theme has already been painted. Absent or unreadable storage
// means no attribute, which leaves the page following the OS setting.
(function () {
try {
var t = localStorage.getItem('theme')
if (t === 'light' || t === 'dark') {
document.documentElement.setAttribute('data-theme', t)
}
} catch (e) {}
})()
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>