-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yaml
60 lines (56 loc) · 1.65 KB
/
mkdocs.yaml
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
site_name: flexeval
markdown_extensions:
# Configure Table of Contents
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#table-of-contents
- toc:
permalink: true
toc_depth: 2
# Required to add admonitions
# https://squidfunk.github.io/mkdocs-material/reference/admonitions/
- admonition
- pymdownx.details
- pymdownx.superfences
theme:
name: "material"
palette:
primary: "green"
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_section_style: list
docstring_style: google
show_root_heading: yes
show_root_toc_entry: yes
show_root_full_path: no
show_object_full_path: no
show_category_heading: no
show_if_no_docstring: yes
show_signature: yes
show_signature_annotations: yes
show_bases: no
show_source: yes
separate_signature: yes
members_order: source
summary: no
- gen-files:
scripts:
- docs/api_reference.py
- docs/preset_configs.py
- literate-nav:
- section-index
nav:
- index.md
- Installation: installation.md
- Getting Started: getting_started.md
- Configuration Guide: configuration_guide.md
- How to:
- how_to/index.md
- Configure Few-shot Examples: how_to/configure_few_shot_examples.md
- Evaluate with LLM Judges: how_to/evaluate_with_llm_judges.md
- Implement Your Own Class: how_to/implement_your_own_module.md
- Design Principles: design_principles.md
- Preset Configs: preset_configs/
- API Reference: api_reference/