-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathmkdocs.yml
More file actions
97 lines (91 loc) · 2.48 KB
/
mkdocs.yml
File metadata and controls
97 lines (91 loc) · 2.48 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
site_name: MCP Adapt
repo_url: https://github.com/grll/mcpadapt
repo_name: grll/mcpadapt
theme:
name: material
features:
# Allows copying code blocks
- content.code.copy
# Allows selecting code blocks
- content.code.select
# Shows the current path in the sidebar
- navigation.path
# Shows sections in the sidebar
- navigation.sections
# Shows sections expanded by default
- navigation.expand
# Enables annotations in code blocks
- content.code.annotate
palette:
primary: custom
accent: custom
scheme: default
logo: assets/logo_dark_transparent_cropped.png
favicon: images/favicon.ico
font:
text: Inter
code: Fira Code
nav:
- Intro: index.md
- Quickstart: quickstart.md
- Guided Examples:
- guide/smolagents.md
- guide/crewai.md
- guide/langchain.md
- guide/google-genai.md
- API Reference:
- Core: ref/core.md
- SmolAgents Adapter: ref/smolagents_adapter.md
- CrewAI Adapter: ref/crewai_adapter.md
- LangChain Adapter: ref/langchain_adapter.md
- Google GenAI Adapter: ref/google_genai_adapter.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: ["src/mcpadapt"]
selection:
docstring_style: google
options:
# Shows links to other members in signatures
signature_crossrefs: true
# Orders members by source order, rather than alphabetical
members_order: source
# Puts the signature on a separate line from the member name
separate_signature: true
# Shows type annotations in signatures
show_signature_annotations: true
# Makes the font sizes nicer
heading_level: 3
# Show inherited members
inherited_members: true
extra:
# Remove material generation message in footer
generator: false
markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- admonition
- pymdownx.details
- attr_list
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
extra_css:
- stylesheets/extra.css
watch:
- "src/mcpadapt"