forked from PrefectHQ/marvin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_mkdocs.yml
171 lines (166 loc) · 5.2 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
site_name: Marvin
site_description: 'Marvin: The AI Engineering Framework'
site_copy: Marvin is a lightweight AI engineering framework for building natural language interfaces that are reliable, scalable, and easy to trust.
site_url: https://askmarvin.ai
docs_dir: docs
nav:
- Getting Started:
- src/getting_started/what_is_marvin.md
- src/getting_started/installation.md
- src/getting_started/quickstart.ipynb
- Docs:
- Overview: src/docs/index.md
- Configuration:
- src/docs/configuration/settings.md
- OpenAI Provider: src/docs/configuration/openai.md
- Anthropic Provider: src/docs/configuration/anthropic.md
- Azure OpenAI Provider: src/docs/configuration/azure_openai.md
- Utilities:
- OpenAI API: src/docs/utilities/openai.ipynb
- Prompt Engineering:
- src/docs/prompts/writing.ipynb
- src/docs/prompts/executing.ipynb
- AI Components:
- Overview: src/docs/components/overview.ipynb
- AI Model: src/docs/components/ai_model.ipynb
- AI Classifier: src/docs/components/ai_classifier.ipynb
- AI Function: src/docs/components/ai_function.ipynb
- AI Application: src/docs/components/ai_application.ipynb
- Deployment:
- src/docs/deployment.ipynb
- Guides:
- Slackbot: src/guides/slackbot.md
- API Reference:
# - src/api_reference/index.md
- AI Components:
- ai_application: src/api_reference/components/ai_application.md
- ai_classifier: src/api_reference/components/ai_classifier.md
- ai_function: src/api_reference/components/ai_function.md
- ai_model: src/api_reference/components/ai_model.md
- LLM Engines:
- base: src/api_reference/engine/language_models/base.md
- openai: src/api_reference/engine/language_models/openai.md
- anthropic: src/api_reference/engine/language_models/anthropic.md
- Prompts:
- base: src/api_reference/prompts/base.md
- library: src/api_reference/prompts/library.md
- Settings:
- settings: src/api_reference/settings.md
- Utilities:
- async_utils: src/api_reference/utilities/async_utils.md
- embeddings: src/api_reference/utilities/embeddings.md
- history: src/api_reference/utilities/history.md
- logging: src/api_reference/utilities/logging.md
- messages: src/api_reference/utilities/messages.md
- strings: src/api_reference/utilities/strings.md
- types: src/api_reference/utilities/types.md
- Community:
- src/community.md
- src/feedback.md
- Development:
- src/development_guide.md
theme:
name: material
custom_dir: docs/overrides
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
- content.action.edit
- content.code.copy
- content.code.annotate
- toc.follow
# - toc.integrate
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
palette:
# Palette toggle for light mode
- scheme: default
accent: blue
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
accent: blue
toggle:
icon: material/weather-night
name: Switch to light mode
plugins:
- search
- mkdocs-jupyter:
highlight_extra_classes: "jupyter-css"
ignore_h1_titles: True
- 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
- tables
- toc:
permalink: true
title: On this page
repo_url: https://github.com/prefecthq/marvin
edit_uri: edit/main/docs/
extra:
get_started: src/getting_started/what_is_marvin/
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
generator: false
extra_css:
- static/css/termynal.css
- static/css/custom.css
- static/css/mkdocstrings.css
- static/css/badges.css
extra_javascript:
- static/js/termynal.js
- static/js/custom.js