-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
138 lines (132 loc) · 3.76 KB
/
mkdocs.yml
File metadata and controls
138 lines (132 loc) · 3.76 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
137
138
site_name: ChaosEngineAI
site_description: The local AI model runner for serious tinkerers.
# Hosted under /docs/ on the main marketing domain so backlinks accrue to
# chaosengineai.com (subdirectory > subdomain for SEO). The CI workflow at
# .github/workflows/deploy-docs.yml builds the site here and pushes the
# output into cryptopoly/ChaosEngineAI-Site under docs/.
site_url: https://chaosengineai.com/docs/
repo_url: https://github.com/cryptopoly/ChaosEngineAI
repo_name: cryptopoly/ChaosEngineAI
edit_uri: edit/staging/docs/
docs_dir: docs
theme:
name: material
language: en
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- navigation.indexes
- navigation.tracking
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon:
repo: fontawesome/brands/github
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.keys
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Home: index.md
- Getting started:
- getting-started/installation.md
- getting-started/headless-install.md
- getting-started/first-run.md
- getting-started/system-requirements.md
- Usage:
- usage/chat.md
- usage/compare.md
- usage/html-challenge.md
- usage/image-studio.md
- usage/video-studio.md
- usage/server-mode.md
- usage/benchmarks.md
- Features:
- features/mtplx.md
- features/dflash.md
- features/cache-strategies.md
- features/fused-attention.md
- features/context-sizes.md
- CLI:
- cli/overview.md
- cli/reference.md
- cli/recipes.md
- cli/automation.md
- Testing:
- testing/overview.md
- testing/e2e-testing.md
- testing/pre-build-check.md
- testing/adding-checks.md
- Architecture:
- architecture/overview.md
- architecture/inference-engines.md
- architecture/routing.md
- architecture/catalog-vs-library.md
- architecture/runtime-paths.md
- Troubleshooting:
- troubleshooting/model-load-failures.md
- troubleshooting/mtplx-install-issues.md
- troubleshooting/gpu-detection.md
- troubleshooting/orphan-workers.md
- troubleshooting/faq.md
- Contributing:
- contributing/development-setup.md
- contributing/coding-guidelines.md
- contributing/adding-a-feature.md
- Reference:
- reference/api.md
- reference/env-vars.md
- reference/third-party-deps.md
- reference/changelog.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/cryptopoly/ChaosEngineAI
# Legacy markdown files that pre-date the MkDocs site. The canonical E2E
# testing doc has been imported under docs/testing/e2e-testing.md.
exclude_docs: |
E2E_TESTING.md
image-discover-next-level.md
image-generation-mvp.md
provenance-audit.md
strict: true