-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
49 lines (47 loc) · 1.17 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
site_name: OpenML RAG Documentation
theme:
name: material
features:
- content.code.copy
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
primary: indigo
accent: indigo
scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
markdown_extensions:
- admonition
- codehilite
- attr_list
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- toc:
permalink: true
plugins:
- search
- mknotebooks:
execute: false
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [backend/modules, tests/, frontend, llm_service, ollama, tools, evaluation/, documentation_bot/, structured_query/]
load_external_modules: true
show_source: true
options:
docstring_section_style: table
show_docstring_functions: true