-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathastro.config.mjs
More file actions
151 lines (150 loc) · 5.31 KB
/
Copy pathastro.config.mjs
File metadata and controls
151 lines (150 loc) · 5.31 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
site: 'https://internrobotics.github.io',
base: '/EBench-doc',
integrations: [
starlight({
title: 'EBench Docs',
description: 'Documentation for EBench — an indoor VLA manipulation benchmark for long-horizon tasks, dexterous manipulation, and mobile manipulation.',
titleDelimiter: '·',
logo: {
src: './src/assets/brand-mark.svg',
alt: 'EBench Docs',
},
favicon: '/favicon.svg',
tableOfContents: {
minHeadingLevel: 2,
maxHeadingLevel: 3,
},
locales: {
root: {
label: 'English',
lang: 'en',
},
'zh-cn': {
label: '简体中文',
lang: 'zh-CN',
},
fr: {
label: 'Français',
lang: 'fr',
},
ja: {
label: '日本語',
lang: 'ja',
},
ko: {
label: '한국어',
lang: 'ko',
},
de: {
label: 'Deutsch',
lang: 'de',
},
es: {
label: 'Español',
lang: 'es',
},
},
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/InternRobotics/GenManip' }],
expressiveCode: {
themes: ['github-dark-dimmed', 'github-light'],
styleOverrides: {
borderRadius: '0.75rem',
borderColor: 'var(--ebench-line-soft)',
codeFontFamily: "'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace",
codeFontSize: '0.855rem',
codePaddingBlock: '1rem',
codePaddingInline: '1.25rem',
frames: {
editorTabBarBackground: 'var(--ebench-code-header-bg)',
terminalTitlebarBackground: 'var(--ebench-code-header-bg)',
editorBackground: 'var(--ebench-code-bg)',
terminalBackground: 'var(--ebench-code-bg)',
shadowColor: 'transparent',
editorTabBarBorderBottomColor: 'var(--ebench-line-soft)',
terminalTitlebarBorderBottomColor: 'transparent',
},
},
},
customCss: ['@fontsource-variable/outfit', '/src/styles/custom.css'],
components: {
Header: './src/components/starlight/Header.astro',
PageFrame: './src/components/starlight/PageFrame.astro',
PageTitle: './src/components/starlight/PageTitle.astro',
PageSidebar: './src/components/starlight/PageSidebar.astro',
Sidebar: './src/components/starlight/Sidebar.astro',
TwoColumnContent: './src/components/starlight/TwoColumnContent.astro',
},
pagefind: true,
credits: false,
sidebar: [
{
slug: 'index',
label: 'What Is EBench',
translations: { 'zh-CN': '什么是 EBench', fr: "Qu'est-ce qu'EBench", ja: 'EBenchとは', ko: 'EBench란', de: 'Was ist EBench', es: '¿Qué es EBench?' },
},
{
slug: 'evaluation/task-showcase',
label: 'Task Showcase',
translations: { 'zh-CN': '任务展示', fr: 'Démonstrations', ja: 'タスク一覧', ko: '태스크 쇼케이스', de: 'Aufgabenübersicht', es: 'Tareas' },
},
{
label: 'Getting Started',
translations: { 'zh-CN': '快速开始', fr: 'Mise en route', ja: 'はじめに', ko: '시작하기', de: 'Erste Schritte', es: 'Primeros pasos' },
items: [
{
slug: 'getting-started/overview',
label: 'Benchmark Overview',
translations: { 'zh-CN': '基准总览', fr: 'Aperçu du benchmark', ja: 'ベンチマーク概要', ko: '벤치마크 개요', de: 'Benchmark-Uebersicht', es: 'Visión general del benchmark' },
},
{
slug: 'getting-started/environment',
label: 'Environment Setup',
translations: { 'zh-CN': '环境配置', fr: "Installation de l'environnement", ja: '環境構築', ko: '환경 설정', de: 'Umgebung einrichten', es: 'Configuración del entorno' },
},
{
slug: 'getting-started/assets',
label: 'Asset & Dataset',
translations: { 'zh-CN': '资产与数据集', fr: 'Assets et données', ja: 'アセットとデータセット', ko: '에셋 및 데이터셋', de: 'Assets und Datensatz', es: 'Assets y dataset' },
},
],
},
{
label: 'Evaluation',
translations: { 'zh-CN': '评测', fr: 'Évaluation', ja: '評価', ko: '평가', de: 'Evaluation', es: 'Evaluación' },
items: [
{
slug: 'evaluation/run-benchmark',
label: 'Run Evaluation',
translations: { 'zh-CN': '运行评测', fr: "Lancer l'évaluation", ja: '評価の実行', ko: '평가 실행', de: 'Evaluation starten', es: 'Ejecutar evaluación' },
},
{
slug: 'evaluation/custom-model',
label: 'Integrate Your Own Model',
translations: { 'zh-CN': '接入自定义模型', fr: 'Intégrer votre modèle', ja: 'モデルの統合', ko: '모델 연동', de: 'Eigenes Modell einbinden', es: 'Integrar tu modelo' },
},
],
},
{
label: 'Reference',
translations: { 'zh-CN': '参考', fr: 'Référence', ja: 'リファレンス', ko: '레퍼런스', de: 'Referenz', es: 'Referencia' },
items: [
{
slug: 'tools/gmp-cli',
label: 'GMP CLI',
translations: { 'zh-CN': 'GMP CLI', fr: 'GMP CLI', ja: 'GMP CLI', ko: 'GMP CLI', de: 'GMP CLI', es: 'GMP CLI' },
},
],
},
{
slug: 'challenge',
label: 'Challenge',
translations: { 'zh-CN': '挑战赛', fr: 'Challenge', ja: 'Challenge', ko: 'Challenge', de: 'Challenge', es: 'Challenge' },
},
],
}),
],
});