-
Notifications
You must be signed in to change notification settings - Fork 33
/
mkdocs.yml
47 lines (47 loc) · 1 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
site_name: Vectorize
theme:
name: material
palette:
- scheme: default
primary: teal
toggle:
icon: material/weather-night
name: dark mode
- scheme: slate
primary: teal
toggle:
icon: material/weather-sunny
name: light mode
nav:
- Vectorize: 'index.md'
- API:
- Overview: 'api/index.md'
- 'api/search.md'
- 'api/rag.md'
- 'api/utilities.md'
- Examples:
- Search:
- 'examples/sentence_transformers.md'
- 'examples/openai_embeddings.md'
- 'examples/scheduling.md'
- Model Providers: 'models/index.md'
- Extension Configuration: 'configuration.md'
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- codehilite:
- admonition
- extra
- pymdownx.snippets:
check_paths: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
plugins:
- search
- mkdocstrings