-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathmkdocs.yml
More file actions
65 lines (61 loc) · 1.68 KB
/
mkdocs.yml
File metadata and controls
65 lines (61 loc) · 1.68 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
site_name: GUM Documentation
site_description: Documentation for the GUM (General User Models) project
site_author: GUM Team
repo_url: https://github.com/generalusermodels/gum
repo_name: gum
copyright: With inspiration from DSPy docs
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- search.highlight
- search.share
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
- admonition
- footnotes
- toc:
permalink: true
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: google
docstring_options:
trim_doctest_flags: true
show_source: true
show_root_heading: true
show_category_heading: true
show_if_no_docstring: true
show_signature_annotations: true
heading_level: 2
merge_init_into_class: true
nav:
- Getting Started: index.md
- Tutorials:
- Model Context Protocol: tutorials/mcp.md
- A Proactive Assistant (GUMBO): tutorials/gumbo.md
- Slackbot: tutorials/slackbot.md
- Reflection: tutorials/reflection.md
- API Reference:
- Core API: api-reference/core.md
- Models: api-reference/models.md
- Observers: api-reference/observers.md