-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
81 lines (77 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
site_name: OpenPO Documentation
site_url: https://docs.openpo.dev
site_author: Daniel Lee
repo_url: https://github.com/dannylee1020/openpo
repo_name: dannylee1020/openpo
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-colors-scheme:dark)"
scheme: slate
primary: black
accent: black
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- search.highlight
- content.code.copy
- def_list
- navigation.expand
icon:
repo: fontawesome/brands/github
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [openpo]
options:
docstring_style: google
show_root_heading: true
show_source: true
show_root_full_path: false
show_symbol_type_heading: true
show_symobl_type_toc: true
heading_level: 3
members_order: source
separate_signature: true
show_signature_annotations: true
docstring_section_style: table
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.inlinehilite
- admonition
- pymdownx.details
- pymdownx.snippets
- attr_list
- md_in_html
nav:
- Welcome: index.md
- Installation: installation.md
- Quick Start: quickstart.md
- Usage:
- Completion: completions.md
- Evaluation: evaluations.md
- Structured Output (JSON): json.md
- Storage: storage.md
- Providers: provider.md
- Parameters: parameters.md
- Responses: response.md
- Errors: errors.md
- Resources:
- Notebooks: notebook.md
- Papers: paper.md
- API Reference: api.md