-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
178 lines (162 loc) · 5.4 KB
/
Copy pathzensical.toml
File metadata and controls
178 lines (162 loc) · 5.4 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
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
[project]
site_name = "IndentiaDB"
site_description = "Multi-Model Database for Knowledge Graphs & Enterprise AI"
site_url = "https://dbdocs.indentia.ai"
repo_url = "https://github.com/IndentiaPlatform/IndentiaDB"
repo_name = "IndentiaPlatform/IndentiaDB"
edit_uri = ""
copyright = "(C) Copyright Indentia B.V. - Chamber of Commerce number 42041967 - The Netherlands"
extra_css = [
"stylesheets/indentia-tokens.css",
"stylesheets/indentia-brand.css",
"stylesheets/nlweb-chat.css",
]
extra_javascript = ["javascripts/nlweb-chat.js"]
nav = [
{ "Home" = "index.md" },
{ "Indentia.ai Platform" = "indentia.md" },
{ "Getting Started" = [
{ "" = "getting-started/index.md" },
{ "Quick Start" = "getting-started/quickstart.md" },
{ "Configuration" = "getting-started/configuration.md" },
{ "CLI Reference" = "getting-started/cli.md" },
]},
{ "Concepts" = [
{ "" = "concepts/index.md" },
{ "Architecture" = "concepts/architecture.md" },
{ "Data Models" = "concepts/data-models.md" },
{ "RDF-Star" = "concepts/rdf-star.md" },
]},
{ "Query Languages" = [
{ "" = "query-languages/index.md" },
{ "SPARQL 1.2" = "query-languages/sparql.md" },
{ "SurrealQL" = "query-languages/surrealql.md" },
{ "LPG Graph Queries" = "query-languages/lpg.md" },
{ "Hybrid Queries" = "query-languages/hybrid-queries.md" },
]},
{ "Features" = [
{ "" = "features/index.md" },
{ "Enterprise Search" = "features/enterprise-search.md" },
{ "Bayesian BM25 (BB25)" = "features/bayesian-bm25.md" },
{ "Vector Search & RAG" = "features/vector-search.md" },
{ "Live Queries & Events" = "features/live-queries.md" },
{ "Federated Queries" = "features/federation.md" },
{ "Semantic Inference" = "features/inference.md" },
{ "Bitemporal Queries" = "features/bitemporal.md" },
{ "Geospatial" = "features/geospatial.md" },
{ "Holonic Four-Graph Layer" = "features/holonic.md" },
{ "SHACL Validation" = "features/shacl.md" },
{ "Data Lineage" = "features/lineage.md" },
{ "Alerting Engine" = "features/alerting.md" },
{ "Entity Resolution" = "features/entity-resolution.md" },
{ "Linguistic Processing" = "features/linguistic.md" },
{ "SQL Database Federation" = "features/sql-federation.md" },
]},
{ "Security" = [
{ "" = "security/index.md" },
{ "Authentication" = "security/authentication.md" },
{ "Authorization" = "security/authorization.md" },
{ "Triple-Level ACL" = "security/acl.md" },
]},
{ "API Reference" = [
{ "" = "api-reference/index.md" },
{ "SPARQL & REST Endpoints" = "api-reference/sparql-endpoints.md" },
{ "Elasticsearch API" = "api-reference/elasticsearch-api.md" },
{ "GraphQL API" = "api-reference/graphql.md" },
]},
{ "Deployment" = [
{ "" = "deployment/index.md" },
{ "Docker" = "deployment/docker.md" },
{ "Kubernetes" = "deployment/kubernetes.md" },
{ "OpenShift / OKD" = "deployment/openshift.md" },
{ "Kubernetes Operator" = "deployment/operator.md" },
{ "WebAssembly Runtime" = "deployment/wasm.md" },
]},
{ "Examples" = [
{ "" = "examples/index.md" },
{ "SurrealQL" = "examples/surrealql.md" },
{ "RDF & SPARQL" = "examples/rdf-sparql.md" },
{ "LPG Graph" = "examples/lpg-graph.md" },
{ "Enterprise Search" = "examples/enterprise-search.md" },
{ "Live Data & Agents" = "examples/live-data.md" },
{ "Multi-Model" = "examples/multi-model.md" },
{ "Use Cases: Search, RAG & Agents" = "examples/use-cases.md" },
]},
]
# Theme
[project.theme]
variant = "classic"
logo = "assets/logo-horizontal.png"
favicon = "assets/logo-mark.png"
features = [
"navigation.tabs",
"navigation.tabs.sticky",
"navigation.sections",
"navigation.expand",
"navigation.path",
"navigation.top",
"navigation.footer",
"content.code.copy",
"content.code.annotate",
"content.tabs.link",
"search.highlight",
"search.suggest",
"search.share",
"toc.follow",
]
[project.theme.font]
text = "Inter"
code = "JetBrains Mono"
# Display font (Space Grotesk) is loaded via stylesheets/indentia-tokens.css
[project.theme.icon]
repo = "fontawesome/brands/github"
[[project.theme.palette]]
scheme = "slate"
primary = "teal"
accent = "cyan"
[project.theme.palette.toggle]
icon = "lucide/sun"
name = "Switch to light mode"
[[project.theme.palette]]
scheme = "default"
primary = "teal"
accent = "cyan"
[project.theme.palette.toggle]
icon = "lucide/moon"
name = "Switch to dark mode"
# Extra
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/IndentiaPlatform/IndentiaDB"
[project.extra.version]
provider = "mike"
# Plugins
[project.plugins.search]
lang = "en"
# Markdown extensions
# Zensical includes all pymdownx.* extensions by default.
# Only overrides where config differs from defaults.
[project.markdown_extensions]
abbr = {}
admonition = {}
attr_list = {}
def_list = {}
footnotes = {}
md_in_html = {}
tables = {}
[project.markdown_extensions.toc]
permalink = true
[project.markdown_extensions."pymdownx.arithmatex"]
generic = true
[project.markdown_extensions."pymdownx.highlight"]
anchor_linenums = true
line_spans = "__span"
pygments_lang_class = true
[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