-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmkdocs.yml
More file actions
92 lines (88 loc) · 2.35 KB
/
mkdocs.yml
File metadata and controls
92 lines (88 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
site_name: BioML-bench Documentation
site_description: A benchmark suite for evaluating machine learning agents on biomedical tasks
site_url: https://science-machine.github.io/biomlbench
repo_url: https://github.com/science-machine/biomlbench
repo_name: biomlbench
use_directory_urls: true
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.path
- navigation.top
- search.highlight
- search.share
- toc.follow
- content.code.copy
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: purple
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: purple
accent: teal
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- md_in_html
- toc:
permalink: true
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
show_source: false
members_order: source
separate_signature: true
filters: ["!^_"]
merge_init_into_class: true
nav:
- Home: index.md
- Quick Start:
- Installation: installation.md
- Basic Usage: usage.md
- API Reference:
- Overview: api/overview.md
- CLI: api/cli.md
- Registry: api/registry.md
- Tasks: api/tasks.md
- Agents: api/agents.md
- Data Sources: api/data_sources.md
- Grading: api/grading.md
- Utilities: api/utils.md
- Components:
- Environment: components/environment.md
- Scripts: components/scripts.md
- Agents: components/agents.md
- Task Development: components/task_development.md
- Developer Guide:
- Contributing: developer/contributing.md
- Adding Tasks: developer/adding_tasks.md
- Creating Agents: developer/creating_agents.md
- Architecture: developer/architecture.md