-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmkdocs.yml
141 lines (127 loc) · 3.58 KB
/
mkdocs.yml
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
site_name: Redbox
site_description: Bringing Generative AI to the way the Civil Service works
site_author: Incubator for AI
repo_url: https://github.com/i-dot-ai/redbox
theme:
logo: assets/briefcase_white.svg
favicon: assets/i-dot-ai.svg
name: "material"
font:
text: "Inter"
code: "DM Mono"
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- content.tooltips
- search.suggest
- search.highlight
- content.tabs.link
- navigation.indexes
- content.tooltips
- navigation.path
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.tabs
nav:
- Home: index.md
- Installation:
- Overview: installation/index.md
- Local Development: installation/local.md
- AWS Deployment: installation/aws.md
- Architecture:
- Overview: architecture/index.md
- Workers and Queues: architecture/workers_and_queues.md
- Transactions and Schema: architecture/transactions_and_schema.md
- Docker and Dependencies: architecture/docker_and_dependencies.md
- Frontends:
- Overview: frontends/index.md
- Code Reference:
- Home: code_reference/index.md
- Models:
- Overview: code_reference/models/index.md
- File: code_reference/models/file.md
- Embedding: code_reference/models/embedding.md
- Settings: code_reference/models/settings.md
- Storage:
- Overview: code_reference/storage/index.md
- ElasticsearchStorageHandler: code_reference/storage/elasticsearch_storage_handler.md
- Contributing: contributing.md
plugins:
minify:
minify_html: true
search: null
mermaid2: null
git-revision-date-localized:
type: timeago
locale: en
fallback_to_build_date: true
glightbox: null
mkdocstrings:
handlers:
python:
paths:
- redbox-core
options:
extensions:
- griffe_typingdoc
show_root_heading: true
show_if_no_docstring: true
inherited_members: true
members_order: source
separate_signature: true
unwrap_annotated: true
filters:
- '!^_'
merge_init_into_class: true
docstring_section_style: spacy
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
markdown_extensions:
- abbr
- attr_list
- meta
- admonition
- pymdownx.details
- pymdownx.highlight
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.pathconverter
- codehilite:
guess_lang: true
use_pygments: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.snippets:
auto_append:
- docs/abbreviations.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/i-dot-ai/redbox
- icon: fontawesome/solid/envelope
link: mailto:[email protected]
- icon: fontawesome/solid/globe
link: https://ai.gov.uk
generator: false
extra_css:
- stylesheets/extra.css