-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathmkdocs.yml
More file actions
112 lines (104 loc) · 3.42 KB
/
Copy pathmkdocs.yml
File metadata and controls
112 lines (104 loc) · 3.42 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
105
106
107
108
109
110
111
112
site_name: Croissant
site_description: Documentation for the MLCommons Croissant metadata format and ecosystem.
site_url: https://docs.mlcommons.org/croissant/
repo_url: https://github.com/mlcommons/croissant
repo_name: mlcommons/croissant
# Theme configuration
theme:
name: material
logo: https://raw.githubusercontent.com/twitter/twemoji/master/assets/svg/1f950.svg
favicon: https://raw.githubusercontent.com/twitter/twemoji/master/assets/svg/1f950.svg
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- content.code.copy
palette:
- scheme: default
primary: light-green
accent: green
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: light-green
accent: green
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
# This plugin runs the script to pull in outside files
- gen-files:
scripts:
- gen_pages.py
- mkdocstrings:
handlers:
python:
paths: [python, src]
# Navigation Structure
nav:
# 'README.md' was copied to 'index.md' by our script
- Croissant:
- Overview: index.md
- Specification:
# These files are physically in docs/, so we REMOVE the 'docs/' prefix
- 'Croissant v1.1': croissant-spec-1.1.md
- 'Croissant v1.0': croissant-spec-1.0.md
- Extensions:
- 'Responsible AI (RAI)': croissant-rai-spec.md
- Library:
- 'Python Package': python/mlcroissant/README.md
- Tools:
- 'Croissant Editor': editor/README.md
- 'Health Monitor': health/README.md
- 'Online Validator': health/croissant-validator-neurips/README.md
- 'Croissant RDF': croissant-rdf/README.md
- Eclair:
- Getting Started:
- Welcome: eclair/docs/index.md
- Installation and Setup: eclair/docs/getting-started/installation.md
- Running the Server: eclair/docs/getting-started/running-server.md
- Usage Guides:
- Overview: eclair/docs/usage/overview.md
- AI Agents:
- Gemini CLI: eclair/docs/usage/ai-agents/gemini-cli.md
- Claude Code: eclair/docs/usage/ai-agents/claude-code.md
- IDE Integration:
- VS Code + Gemini Code Assist: eclair/docs/usage/ide/vscode-gemini.md
- VS Code + Copilot: eclair/docs/usage/ide/vscode-copilot.md
- Python API: eclair/docs/usage/python-api.md
- Command Line Interface: eclair/docs/usage/cli.md
- API Reference:
- Available Tools: eclair/docs/api/tools.md
- Python Client: eclair/docs/api/python-client.md
- Development:
- Getting Started: eclair/docs/development/index.md
# Markdown Extensions
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
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- attr_list
- md_in_html
- tables
- toc:
permalink: true
# Optional: Exclude build artifacts from scanning
exclude_docs: |
*.py
__pycache__/