forked from PrefectHQ/marvin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
155 lines (146 loc) · 4.67 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
site_name: Marvin
site_description: '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
repo_url: https://github.com/prefecthq/marvin
nav:
- Getting Started:
- welcome/what_is_marvin.md
- welcome/installation.md
- welcome/quickstart.md
- Examples:
- Basic Extraction API: examples/extraction_api.md
- Basic Classification API: examples/classification_api.md
- Docs:
- Overview: welcome/overview.md
- Configuration:
- Settings: configuration/settings.md
- Providers: configuration/providers.md
- Components:
- Overview: components/overview.md
- AI Function: components/ai_function.md
- AI Model: components/ai_model.md
- AI Classifier: components/ai_classifier.md
- AI Application: components/ai_application.md
- OpenAI API Utilities:
- Calling LLMs: llms/llms.md
- Building Prompts: llms/prompt.md
- Deployment:
- FastAPI:
- deployment/index.md
- Examples:
- Slackbot: examples/slackbot.md
- GitHub Digest: examples/github_digest.md
- API Reference:
# - src/api_reference/index.md
- AI Components:
- ai_application: api_reference/components/ai_application.md
- ai_classifier: api_reference/components/ai_classifier.md
- ai_function: api_reference/components/ai_function.md
- ai_model: api_reference/components/ai_model.md
- LLM Engines:
- base: api_reference/engine/language_models/base.md
- openai: api_reference/engine/language_models/openai.md
- anthropic: api_reference/engine/language_models/anthropic.md
- Prompts:
- base: api_reference/prompts/base.md
- library: api_reference/prompts/library.md
- Settings:
- settings: api_reference/settings.md
- Utilities:
- async_utils: api_reference/utilities/async_utils.md
- collections: api_reference/utilities/collections.md
- embeddings: api_reference/utilities/embeddings.md
- history: api_reference/utilities/history.md
- logging: api_reference/utilities/logging.md
- messages: api_reference/utilities/messages.md
- strings: api_reference/utilities/strings.md
- types: api_reference/utilities/types.md
- Community:
- community/index.md
- Feedback 💙: community/feedback.md
- Contributing: community/development_guide.md
theme:
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.indexes
- toc.follow
- content.code.copy
- content.code.select
- content.code.annotate
palette:
primary: custom
name: material
custom_dir: docs/overrides
logo: img/logos/askmarvin_mascot.jpeg
favicon: img/logos/askmarvin_mascot.jpeg
plugins:
- search
- markdownextradata
- social:
cards: !ENV [MKDOCS_SOCIAL_CARDS, false]
cards_layout_options:
font_family: Inter
background_color: "#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: ["!^_"]
hooks:
- docs/hooks.py
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- tables
- toc:
permalink: true
title: On this page
extra:
get_started: welcome/what_is_marvin
hero:
title: 'The AI Engineering Framework'
description: 'Marvin is a lightweight AI engineering framework for building natural language interfaces that are reliable, scalable, and easy to trust.'
announcement:
title: "Marvin 1.3 makes agents easy to debug"
url: https://github.com/PrefectHQ/marvin/releases/tag/v1.3.0
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:
- /static/css/global.css
- /static/css/badges.css
- /static/css/custom.css