-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
124 lines (113 loc) · 3.36 KB
/
mkdocs.yml
File metadata and controls
124 lines (113 loc) · 3.36 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
site_name: Dandy AI Framework
site_url: https://dandysoftware.com
repo_name: stratusadv/dandy
repo_url: https://github.com/stratusadv/dandy
copyright: Copyright (c) 2024 Stratus Advanced Technologies and Contributors
exclude_docs: |
tutorials/prompt_test_document.md
extra_css:
- static/css/extra.css
- static/css/mkdocstrings.css
extra_javascript:
- https://unpkg.com/tablesort@5.3.0/dist/tablesort.min.js
- static/js/extra.js
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
- tables
- attr_list
nav:
- Home: index.md
- Getting Started:
- What is Dandy: getting_started/introduction.md
- Read this First: getting_started/read_this_first.md
- Quick Start: getting_started/quick_start.md
- Why Use Dandy: getting_started/why_use_dandy.md
- Tutorial:
- Tutorial Index: tutorials/index.md
- 01. Setup: tutorials/setup.md
- 02. Intel: tutorials/intel.md
- 03. Prompts: tutorials/prompts.md
- 04. Bots: tutorials/bots.md
- 05. Recorder: tutorials/recorder.md
- 06. Decoders: tutorials/decoders.md
- 07. Futures: tutorials/futures.md
- 08. Caching: tutorials/caching.md
- 09. Agents: tutorials/agents.md
- 10. Handling Errors: tutorials/handling_errors.md
- 11. Project Structure: tutorials/project_structure.md
- 12. Example Project: tutorials/example_project.md
- API Reference: reference/
- Roadmap:
- 2026: roadmap/2026_roadmap.md
- 2025: roadmap/2025_roadmap.md
- 2024: roadmap/2024_roadmap.md
- Legend: roadmap/roadmap_legend.md
- Changelog:
- Current (v2): changelog/v2_changelog.md
- Archived (v1): changelog/v1_changelog.md
- Archived (v0): changelog/v0_changelog.md
- About:
- Contributors: about/contributors.md
- Branding: about/branding.md
- Credits: about/credits.md
plugins:
- include-markdown
- mkdocstrings:
handlers:
python:
inventories:
- url: https://docs.python.org/3/objects.inv
domains: [py, std]
options:
show_source: true
show_if_no_docstring: True
docstring_style: sphinx
docstring_section_style: list
members_order: source
merge_init_into_class: true
show_root_full_path: true
show_root_heading: true
show_signature: false
show_signature_annotations: false
show_symbol_type_heading: true
- markdown-exec
- search
- table-reader
- gen-files:
scripts:
- docs/scripts/generate_api_reference.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
theme:
name: material
custom_dir: docs/templates
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/lightbulb
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/lightbulb-outline
name: "Switch to system preference"
features:
- toc.follow
- navigation.tabs
- navigation.footer
- navigation.sections
logo: 'static/img/dandy_icon_white_256.png'
favicon: 'favicon.png'
watch:
- dandy
- tests