-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathmkdocs.yml
More file actions
104 lines (100 loc) · 2.82 KB
/
mkdocs.yml
File metadata and controls
104 lines (100 loc) · 2.82 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
93
94
95
96
97
98
99
100
101
102
103
104
site_name: MolmoSpaces
site_description: Large scale assets and benchmarks for vision language policies
site_url: https://allenai.github.io/molmospaces
repo_url: https://github.com/allenai/molmospaces
repo_name: allenai/molmospaces
edit_uri: edit/main/docs/
copyright: Copyright © 2026 Allen Institute for Artificial Intelligence
theme:
name: material
logo: images/MolmoSpacesLogo.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.indexes
- search.highlight
- search.suggest
- content.code.copy
- content.action.edit
- toc.follow
nav:
- Home: index.md
- Guides:
- Assets: assets.md
- Data Format: data_format.md
- Data Processing: data_processing.md
- Code Structure: code_structure.md
- Development: development.md
- API Reference:
- Overview: api/index.md
- molmo_spaces: api/molmo_spaces.md
- env: api/env.md
- tasks: api/tasks.md
- robots: api/robots.md
- controllers: api/controllers.md
- kinematics: api/kinematics.md
- renderer: api/renderer.md
- policy: api/policy.md
- evaluation: api/evaluation.md
- utils: api/utils.md
plugins:
- search
- git-revision-date-localized:
enable_creation_date: true
type: timeago
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [.]
options:
docstring_style: google
docstring_section_style: table
show_source: true
show_root_heading: true
show_root_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
members_order: source
merge_init_into_class: true
show_submodules: false
allow_inspection: false
preload_modules: []
inherited_members: true
show_if_no_docstring: true
show_root_toc_entry: true
summary: true
# type annotation display
separate_signature: true
show_signature_annotations: true
annotations_path: brief
signature_crossrefs: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
- toc:
permalink: true