-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
59 lines (55 loc) · 1.51 KB
/
mkdocs.yml
File metadata and controls
59 lines (55 loc) · 1.51 KB
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
site_name: GenLM Eval
theme:
name: material
palette:
# Palette toggle for light mode
- scheme: default
accent: blue
primary: white
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
options:
members_order: source
members_order_submodules: source
group_by_category: false
show_protocols: true
- section-index
- mkdocs-jupyter:
execute: false
allow_errors: false
highlight_extra_classes: "custom-css-classes"
include_source: true
nav:
- Home: index.md
- API Reference: reference/
- Cookbook:
- Overview: cookbook/cookbook.md
- Supported Domains:
- Pattern Matching: cookbook/domains/pattern_matching.ipynb
- Text to SQL (Spider): cookbook/domains/spider.ipynb
- Molecular Synthesis: cookbook/domains/molecular_synthesis.ipynb
- Python for data science (DS-1000): cookbook/domains/ds1000.ipynb
- Goal Inference: cookbook/domains/goal_inference.ipynb
- Custom Domains: cookbook/custom_domains.ipynb
- Custom Potentials: cookbook/custom_potentials.ipynb
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.arithmatex:
generic: true
- footnotes
- md_in_html
repo_url: https://github.com/genlm/genlm-eval