-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
136 lines (128 loc) · 4.85 KB
/
Copy pathzensical.toml
File metadata and controls
136 lines (128 loc) · 4.85 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
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
[project]
site_name = "Edge Computing LLM Documentation"
site_description = "End-to-end documentation for local Ollama GGUF inference on Ubuntu, k3s, and NVIDIA GPUs with an observability stack."
site_author = "Edge-Computing-LLM contributors"
site_url = "https://edge-computing-llm.github.io/"
repo_url = "https://github.com/Edge-Computing-LLM/Edge-Computing-LLM.github.io"
repo_name = "Edge-Computing-LLM/Edge-Computing-LLM.github.io"
edit_uri = "edit/main/docs/"
copyright = "Copyright © 2026 Edge-Computing-LLM contributors"
nav = [
{ "Home" = "index.md" },
{ "Get started" = [
{ "Orientation" = "getting-started/index.md" },
{ "Prerequisites" = "getting-started/prerequisites.md" },
{ "Fresh-clone quickstart" = "getting-started/quickstart.md" },
{ "First inference" = "getting-started/first-inference.md" },
] },
{ "Concepts" = [
{ "Architecture" = "concepts/architecture.md" },
{ "Repository map" = "concepts/repository-map.md" },
{ "Ownership boundaries" = "concepts/ownership-boundaries.md" },
{ "Accelerator modes" = "concepts/accelerator-modes.md" },
] },
{ "Install" = [
{ "Prepare Ubuntu" = "installation/prepare-host.md" },
{ "NVIDIA substrate" = "installation/nvidia-layer.md" },
{ "LLM and observability" = "installation/observability-layer.md" },
{ "Model profiles" = "installation/model-profiles.md" },
{ "CPU fallback" = "installation/cpu-fallback.md" },
] },
{ "Operate" = [
{ "Codex and EdgeProof" = "operations/codex-edgeproof.md" },
{ "Operations runbook" = "operations/runbook.md" },
{ "Access services" = "operations/access-services.md" },
{ "Model lifecycle" = "operations/model-lifecycle.md" },
{ "Storage and upgrades" = "operations/storage-upgrades.md" },
{ "Troubleshooting" = "operations/troubleshooting.md" },
] },
{ "Observe" = [
{ "Telemetry flow" = "observability/telemetry-flow.md" },
{ "Metrics and dashboards" = "observability/metrics-dashboards.md" },
{ "GPU observability" = "observability/gpu.md" },
] },
{ "Develop" = [
{ "Development setup" = "development/setup.md" },
{ "CLI and Go boundaries" = "development/cli-go.md" },
{ "Tests and evidence" = "development/tests-evidence.md" },
{ "Add a GGUF model" = "development/add-model.md" },
] },
{ "Secure" = [
{ "Threat model" = "security/threat-model.md" },
{ "Hardening checklist" = "security/hardening.md" },
{ "Privacy and evidence" = "security/privacy-evidence.md" },
] },
{ "Reference" = [
{ "CLI reference" = "reference/cli.md" },
{ "Profiles and services" = "reference/profiles-services.md" },
{ "Test matrix" = "reference/test-matrix.md" },
{ "Validated environment" = "reference/validated-environment.md" },
{ "Glossary" = "reference/glossary.md" },
] },
{ "FAQ" = "faq.md" },
]
[project.theme]
language = "en"
logo = "assets/images/mark.svg"
favicon = "assets/images/mark.svg"
features = [
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.code.copy",
"content.tabs.link",
"navigation.footer",
"navigation.indexes",
"navigation.instant",
"navigation.instant.prefetch",
"navigation.path",
"navigation.sections",
"navigation.tabs",
"navigation.tabs.sticky",
"navigation.top",
"navigation.tracking",
"search.highlight",
"toc.follow",
]
[project.theme.icon]
repo = "fontawesome/brands/github"
[project.theme.font]
text = "Inter"
code = "JetBrains Mono"
[[project.theme.palette]]
scheme = "default"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode for Edge Computing LLM docs"
[[project.theme.palette]]
scheme = "slate"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode for Edge Computing LLM docs"
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/Edge-Computing-LLM"
name = "Edge-Computing-LLM on GitHub"
[project.markdown_extensions.abbr]
[project.markdown_extensions.admonition]
[project.markdown_extensions.attr_list]
[project.markdown_extensions.def_list]
[project.markdown_extensions.footnotes]
[project.markdown_extensions.md_in_html]
[project.markdown_extensions.toc]
permalink = true
[project.markdown_extensions.pymdownx.details]
[project.markdown_extensions.pymdownx.emoji]
emoji_generator = "zensical.extensions.emoji.to_svg"
emoji_index = "zensical.extensions.emoji.twemoji"
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
line_spans = "__span"
pygments_lang_class = true
[project.markdown_extensions.pymdownx.inlinehilite]
[project.markdown_extensions.pymdownx.keys]
[project.markdown_extensions.pymdownx.magiclink]
[project.markdown_extensions.pymdownx.superfences]
custom_fences = [{ name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" }]
[project.markdown_extensions.pymdownx.tabbed]
alternate_style = true
[project.markdown_extensions.pymdownx.tasklist]
custom_checkbox = true