-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmkdocs.yml
120 lines (111 loc) · 3.02 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
site_name: Quarkus LangChain4j Workshop
repo_url: https://github.com/cescoffier/quarkus-langchain4j-workshop
edit_uri: edit/main/docs/
docs_dir: docs
nav:
- Requirements: 'requirements.md'
- Step 1 - Introduction to Quarkus LangChain4j: 'step-01.md'
- Step 2 - Playing with model parameters: 'step-02.md'
- Step 3 - Streaming responses: 'step-03.md'
- Step 4 - Using system messages: 'step-04.md'
- Step 5 - Introduction to the RAG pattern: 'step-05.md'
- Step 6 - Deconstructing the RAG: 'step-06.md'
- Step 7 - Function calling and tools: 'step-07.md'
- Step 8 - Guardrails: 'step-08.md'
- Conclusion: 'conclusion.md'
theme:
name: material
custom_dir: mkdocs-customizations/overrides
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: amber
toggle:
icon: material/lightbulb-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: orange
toggle:
icon: material/lightbulb-on
name: Switch to light mode
font:
text: Roboto
code: Ubuntu Mono
icon:
repo: fontawesome/brands/github
logo: images/logo.png
favicon: images/logo.png
features:
- navigation.sections
- content.tabs.link
- content.code.annotate
- navigation.instant
- navigation.indexes
- navigation.tracking
- navigation.footer
- navigation.tabs.sticky
- content.code.select
- content.code.copy
extra_css:
- extra.css
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
markdown_extensions:
- toc:
permalink:
- admonition
- smarty
- attr_list
- md_in_html
- meta
- tables
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.snippets:
check_paths: true
base_path: !relative $docs_dir
restrict_base_path: false
dedent_subsections: true
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.smartsymbols
- pymdownx.betterem
- pymdownx.superfences
- pymdownx.mark
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- build_plantuml:
render: "server"
server: "https://www.plantuml.com/plantuml"
output_format: "svg"
diagram_root: "docs"
output_folder: "target"
input_folder: "diagrams"
input_extensions: "puml"
- macros:
verbose: true
module_name: mkdocs-customizations/macros/docissimo
include_dir: mkdocs-customizations/macros
- mkdocs-video:
is_video: True
extra:
snippet_dir: ../
manifest: manifest.webmanifest
version:
provider: mike