forked from PrefectHQ/marvin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
122 lines (121 loc) · 3.38 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
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
site_name: Marvin
site_url: https://askmarvin.ai
site_description: A batteries-included library for building AI-powered software.
nav:
- Welcome:
- index.md
- Getting Started:
- Installation: getting_started/installation.md
- Configure OpenAI: getting_started/openai.md
- Chat: getting_started/chat_quickstart.md
- AI functions: getting_started/ai_functions_quickstart.md
- Bots: getting_started/bots_quickstart.md
- The Guide:
- Introduction:
- Overview: guide/introduction/overview.md
- Configuration: guide/introduction/configuration.md
- CLI: guide/introduction/cli.md
- Concepts:
- AI functions: guide/concepts/ai_functions.md
- Bots: guide/concepts/bots.md
- Loaders: guide/concepts/loaders_and_documents.md
- Infrastructure: guide/concepts/infra.md
- Plugins: guide/concepts/plugins.md
- Examples:
- Enforcing AI format: guide/use_cases/enforcing_format.md
- Development:
- Setting up: development/development.md
- FAQ: faq.md
theme:
name: material
font:
text: Inter
code: JetBrains Mono
logo: img/logos/askmarvin_mascot.jpeg
favicon: img/logos/askmarvin_mascot.jpeg
features:
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.footer
- toc.follow
- toc.integrate
- content.action.edit
- content.code.copy
- content.code.annotate
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
palette:
# Palette toggle for light mode
- scheme: default
# primary: green
# accent: light blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
# primary: blue
# accent: light blue
toggle:
icon: material/weather-night
name: Switch to light mode
plugins:
- search
- social:
cards: !ENV [MKDOCS_SOCIAL_CARDS, false]
cards_font: Inter
cards_color:
fill: "#2d6df6"
- awesome-pages
- autolinks
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_source: False
show_root_heading: True
show_object_full_path: False
show_category_heading: False
show_bases: False
show_submodules: False
show_if_no_docstring: False
show_signature: False
heading_level: 2
filters: ["!^_"]
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- toc:
permalink: true
repo_url: https://github.com/prefecthq/marvin
edit_uri: edit/main/docs/
extra:
analytics:
provider: google
property: G-2MWKMDJ9CM
social:
- icon: fontawesome/brands/github
link: https://github.com/prefecthq/marvin
- icon: fontawesome/brands/discord
link: https://discord.gg/Kgw4HpcuYG
- icon: fontawesome/brands/twitter
link: https://twitter.com/askmarvinai
extra_css:
- stylesheets/extra.css