-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (91 loc) · 2.66 KB
/
Copy pathindex.html
File metadata and controls
93 lines (91 loc) · 2.66 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Turing Tree — vectorless, on-device RAG that knows when it's wrong</title>
<meta
name="description"
content="Turing Tree is a vectorless, reasoning-based RAG that runs entirely on your machine. Grounded answers with a 0–100 confidence score that abstains when unsure."
/>
<meta name="theme-color" content="#070310" />
<link rel="icon" type="image/svg+xml" href="docs/assets/turing-tree-mark.svg" />
<link rel="canonical" href="./docs/" />
<!--
GitHub Pages entry point. When Pages serves the repository root, this file is
the home page and forwards to the full landing page in /docs. The relative
target means the same page works whether Pages is set to "/" or "/docs".
-->
<meta http-equiv="refresh" content="0; url=./docs/" />
<script>
window.location.replace("./docs/");
</script>
<style>
:root {
--bg: #070310;
--fg: #f4f2ef;
--muted: #b9b4c7;
--accent: #a78bfa;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background: var(--bg);
color: var(--fg);
font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
text-align: center;
padding: 24px;
}
body::before {
content: "";
position: fixed;
inset: 0;
z-index: -1;
background:
radial-gradient(60% 50% at 18% 0%, rgba(124, 92, 240, 0.22), transparent 70%),
radial-gradient(50% 45% at 92% 8%, rgba(168, 85, 247, 0.14), transparent 70%);
}
.wrap {
max-width: 30rem;
}
.logo {
width: 64px;
height: 64px;
margin: 0 auto 20px;
display: block;
}
h1 {
font-size: 1.5rem;
margin: 0 0 8px;
letter-spacing: -0.01em;
}
p {
color: var(--muted);
margin: 0 0 24px;
line-height: 1.6;
}
a.btn {
display: inline-block;
padding: 12px 22px;
border-radius: 999px;
background: var(--accent);
color: #1a0b33;
font-weight: 600;
text-decoration: none;
}
</style>
</head>
<body>
<div class="wrap">
<img class="logo" src="docs/assets/turing-tree-mark.svg" alt="Turing Tree" />
<h1>Turing Tree</h1>
<p>Taking you to the landing page…</p>
<a class="btn" href="./docs/">Enter site →</a>
</div>
</body>
</html>