-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
151 lines (144 loc) · 3.94 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
142
143
144
145
146
147
148
149
150
151
site_name: "Aana SDK"
# Repository
repo_name: mobiusml/aana_sdk
repo_url: https://github.com/mobiusml/aana_sdk
# Configuration
theme:
name: material
features:
- navigation.tabs
- navigation.indexes
- navigation.path
- toc.follow
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
- content.tooltips
language: en
logo: images/white_logo.png
favicon: images/favicon.ico
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: custom
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: custom
extra_css:
- stylesheets/extra.css
# Extensions
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- toc:
permalink: true
# - toc:
# toc_depth: 2
# Plugins
plugins:
search:
mkdocstrings:
handlers:
python:
options:
show_object_full_path: false
show_root_heading: true
show_if_no_docstring: false
show_root_toc_entry: false
inherited_members: true
members_order: source
separate_signature: true
unwrap_annotated: true
filters: ["!^_", "!^__all__$", "!^reconfigure", "!^get_methods"]
merge_init_into_class: true
docstring_section_style: spacy
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
show_labels: false
docstring_options:
ignore_init_summary: true
# Customization
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/mobiusml/aana_sdk
- icon: fontawesome/brands/x-twitter
link: https://x.com/Mobius_Labs
# Page tree
nav:
- Home: index.md
- Getting Started:
- Tutorial: pages/tutorial.md
- Model Hub:
- pages/model_hub/index.md
- pages/model_hub/text_generation.md
- pages/model_hub/image_to_text.md
- pages/model_hub/asr.md
- pages/model_hub/speaker_recognition.md
# - pages/model_hub/vad.md
- pages/model_hub/hf_pipeline.md
- Integrations:
- Deployments: pages/integrations.md
- OpenAI API: pages/openai_api.md
- Deployment:
- Docker: pages/docker.md
- Serve Config Files: pages/serve_config_files.md
- Cluster Setup: pages/cluster_setup.md
- Configuration:
- Settings: pages/settings.md
- Development:
- Code Overview: pages/code_overview.md
- Dev Environment: pages/dev_environment.md
- Code Standards: pages/code_standards.md
- Database: pages/database.md
- Testing: pages/testing.md
- Reference (Code API):
- reference/index.md
- reference/sdk.md
- reference/endpoint.md
- reference/deployments.md
- reference/settings.md
- Models:
- reference/models/index.md
- reference/models/media.md
- reference/models/asr.md
- reference/models/captions.md
- reference/models/chat.md
- reference/models/image_chat.md
- reference/models/custom_config.md
- reference/models/sampling.md
- reference/models/time.md
- reference/models/types.md
- reference/models/vad.md
- reference/models/speaker.md
- reference/models/video.md
- reference/models/whisper.md
- Storage:
- reference/storage/index.md
- reference/storage/models.md
- reference/storage/repositories.md
- reference/integrations.md
- reference/processors.md
- reference/exceptions.md
- reference/utils.md