-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
59 lines (55 loc) · 1.53 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
site_name: Intentional
repo_url: https://github.com/intentional-ai/intentional
site_dir: ../site
docs_dir: "."
theme:
name: material
nav:
- 'Home': docs/home.md
- 'Contribute': CONTRIBUTING.md
- 'API Reference - Main Package': docs/reference.md
- 'API Reference - Core Package': docs/core-reference.md
- 'Plugins':
- 'Local CLI':
- 'Getting Started': plugins/intentional-local/README.md
- 'API Reference': plugins/intentional-local/docs/reference.md
- 'OpenAI':
- 'Getting Started': plugins/intentional-openai/README.md
- 'API Reference': plugins/intentional-openai/docs/reference.md
- 'Text Chat':
- 'Getting Started': plugins/intentional-text-chat/README.md
- 'API Reference': plugins/intentional-text-chat/docs/reference.md
- 'WebSocket':
- 'Getting Started': plugins/intentional-websocket/README.md
- 'API Reference': plugins/intentional-websocket/docs/reference.md
markdown_extensions:
- toc:
permalink: "#"
- admonition
- pymdownx.details
- pymdownx.superfences
plugins:
- exclude:
glob:
- .venv/*
- README.md
- intentional/README.md
- intentional-core/README.md
- plugins/README.md
- redirects:
redirect_maps:
'index.md': 'docs/home.md'
- search
- same-dir
- include-markdown
- mkdocstrings:
handlers:
python:
options:
show_submodules: true
validation:
omitted_files: warn
links:
absolute_links: relative_to_docs
anchors: warn
unrecognized_links: warn