-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
77 lines (73 loc) · 1.82 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
site_name: LiteSwarm
site_description: A lightweight framework for building AI agent systems
repo_url: https://github.com/GlyphyAI/liteswarm
repo_name: GlyphyAI/liteswarm
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.expand
- navigation.indexes
- toc.follow
- content.code.copy
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [.]
options:
show_source: true
show_root_heading: true
show_root_full_path: true
show_if_no_docstring: true
show_signature_annotations: true
docstring_style: google
docstring_section_style: spacy
merge_init_into_class: true
separate_signature: true
show_submodules: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- tables
- toc:
permalink: true
toc_depth: 3
baselevel: 1
marker: null
- mdx_truly_sane_lists:
nested_indent: 2
truly_sane: true
nav:
- Home: index.md
- API Reference: api.md
- Advanced Usage: advanced.md
- Examples: examples.md