-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
78 lines (74 loc) · 2.28 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
site_name: Intentional
repo_url: https://github.com/intentional-ai/intentional
site_dir: ../site
docs_dir: "."
theme:
name: material
nav:
- 'Home': docs/home.md
- 'Installation': docs/installation.md
- 'High-level Concepts': docs/concepts.md
- 'Configuration File': docs/config-file.md
- 'Plugins': docs/plugins.md
- 'API Reference':
- 'Main Package': docs/reference.md
- 'Core Package': docs/core-reference.md
- 'Plugins':
- 'FastAPI':
- 'Getting Started': plugins/intentional-fastapi/README.md
- 'API Reference': plugins/intentional-fastapi/docs/reference.md
- 'OpenAI':
- 'Getting Started': plugins/intentional-openai/README.md
- 'API Reference': plugins/intentional-openai/docs/reference.md
- 'Pipecat':
- 'Getting Started': plugins/intentional-pipecat/README.md
- 'API Reference': plugins/intentional-pipecat/docs/reference.md
- 'Telegram UI':
- 'Getting Started': plugins/intentional-telegram/README.md
- 'API Reference': plugins/intentional-telegram/docs/reference.md
- 'Terminal':
- 'Getting Started': plugins/intentional-terminal/README.md
- 'API Reference': plugins/intentional-terminal/docs/reference.md
- 'Textual UI':
- 'Getting Started': plugins/intentional-textual-ui/README.md
- 'API Reference': plugins/intentional-textual-ui/docs/reference.md
- 'Contribute': CONTRIBUTING.md
- 'CLA': docs/cla.md
markdown_extensions:
- toc:
permalink: "#"
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid_custom
plugins:
- exclude:
glob:
- .venv/*
- README.md
- intentional/README.md
- intentional-core/README.md
- plugins/README.md
- header.txt
- redirects:
redirect_maps:
'index.md': 'docs/home.md'
- search
- same-dir
- mermaid2:
version: 10.3.0
- include-markdown
- mkdocstrings:
handlers:
python:
options:
show_submodules: true
validation:
omitted_files: warn
links:
absolute_links: relative_to_docs
anchors: warn
unrecognized_links: warn