forked from stanford-crfm/helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
55 lines (54 loc) · 1.21 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
site_name: CRFM HELM
repo_url: https://github.com/stanford-crfm/helm/
edit_uri: blob/main/docs/
theme:
name: readthedocs
highlightjs: false
plugins:
- search
- macros:
module_name: docs/mkdocs_macros
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
show_signature_annotations: true
show_bases: false
show_source: false
show_root_full_path: false
show_if_no_docstring: true
members_order: source
merge_init_into_class: true
docstring_options:
ignore_init_summary: true
- include-markdown
hooks:
- docs/mkdocs_hooks.py
extra_css:
- docstrings.css
markdown_extensions:
- pymdownx.magiclink
watch:
- src
nav:
- 'Home': 'index.md'
- 'User Guide':
- 'installation.md'
- 'quick_start.md'
- 'heim.md'
- 'get_helm_rank.md'
- 'tutorial.md'
- 'benchmark.md'
- 'huggingface_models.md'
- 'proxy-server.md'
- 'Reference':
- 'models.md'
- 'metrics.md'
- 'perturbations.md'
- 'scenarios.md'
- 'schemas.md'
- 'Developer Guide':
- 'developer_setup.md'
- 'code.md'
- 'adding_new_models.md'