-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmkdocs.yml
More file actions
123 lines (113 loc) · 3.71 KB
/
mkdocs.yml
File metadata and controls
123 lines (113 loc) · 3.71 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
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
site_name: Draive
site_description: All-in-one Python framework for building powerful LLM workflows and AI applications
site_url: https://miquido.github.io/draive/
repo_url: https://github.com/miquido/draive
repo_name: miquido/draive
theme:
name: material
logo: logo.png
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: purple
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- content.code.annotate
- content.code.copy
- content.footnote.tooltips
- content.tabs.link
- content.tooltips
- navigation.indexes
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- search.highlight
- search.share
- toc.follow
icon:
repo: fontawesome/brands/github
font:
text: Inter
code: JetBrains Mono
extra_css:
- stylesheets/extra.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/miquido/draive
- icon: fontawesome/solid/globe
link: https://miquido.com
copyright: Copyright © 2025 Miquido
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
- toc:
permalink: true
plugins:
- search:
lang: en
- build_plantuml:
render: 'server' # or "local" for local rendering
bin_path: '/usr/local/bin/plantuml' # ignored when render: server
server: 'http://www.plantuml.com/plantuml' # official plantuml server
disable_ssl_certificate_validation: true # for self-signed and invalid certs
output_format: 'svg' # or "png"
allow_multiple_roots: false # in case your codebase contains more locations for diagrams (all ending in diagram_root)
diagram_root: 'docs/diagrams' # should reside under docs_dir
output_folder: 'out'
input_folder: 'src'
input_extensions: '' # comma separated list of extensions to parse, by default every file is parsed
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Installation: getting-started/installation.md
- Quickstart: getting-started/quickstart.md
- First Steps: getting-started/first-steps.md
- Multimodal Data: getting-started/multimodal-data.md
- Printing Data: getting-started/printing-data.md
- Guides:
- Basic Usage: guides/BasicUsage.md
- Basic Tools Use: guides/BasicToolsUse.md
- Agents: guides/Agents.md
- Basic Conversation: guides/BasicConversation.md
- Basic Model Generation: guides/BasicModelGeneration.md
- Basic Evaluation: guides/BasicEvaluation.md
- Comprehensive Evaluation: guides/ComprehensiveEvaluation.md
- Evaluator Catalog: guides/EvaluatorCatalog.md
- Basic Stage Usage: guides/BasicStageUsage.md
- Basic Step Usage: guides/BasicStepUsage.md
- Advanced State: guides/AdvancedState.md
- Multimodal Content: guides/MultimodalContent.md
- Templates: guides/Templates.md
- Postgres: guides/Postgres.md
- Qdrant: guides/Qdrant.md
- Basics: guides/Basics.md
- Cookbooks:
- Basic RAG: cookbooks/BasicRAG.md
- Basic MCP: cookbooks/BasicMCP.md
- Basic Data Extraction: cookbooks/BasicDataExtraction.md