-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmkdocs.yml
53 lines (52 loc) · 1.26 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
site_name: Embetter Docs
site_description: 'Scikit-Learn compatible embeddings'
site_copy: Embetter offers embeddings for rapid-prototyping and finetuning in scikit-learn.
repo_url: https://github.com/koaning/embetter
nav:
- Home: index.md
- Finetuners: finetuners.md
- Techniques: applications.md
- API:
- Text: API/text.md
- Vision: API/vision.md
- MultiModal: API/multimodal.md
- External: API/external.md
- Finetuners: API/finetune.md
- Model: API/model.md
plugins:
- mkdocstrings:
handlers:
python:
options:
annotations_path: brief
show_root_heading: false
show_root_toc_entry: false
show_symbol_type_heading: true
custom_templates: templates
theme:
name: material
font:
text: Inter
code: Jetbrains Mono
logo: images/icon.png
palette:
primary: white
features:
- toc.integrate
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.indexes
- toc.follow
- content.code.copy
- content.code.select
- content.code.annotate
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences
- attr_list
- md_in_html
- admonition