Skip to content

Commit d833799

Browse files
committed
Update sidebar labels and restructure guide links for improved navigation
- Changed sidebar label from "User Guide" to "Guides" for consistency. - Updated the "Architecture" section to include detailed components and their respective links. - Added new entries under "Guides" for "Getting Started," "Prerequisites," and other installation-related topics to enhance user onboarding. Signed-off-by: Pete Cheslock <[email protected]>
1 parent ca064da commit d833799

File tree

1 file changed

+40
-8
lines changed

1 file changed

+40
-8
lines changed

docusaurus.config.js

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const config = {
148148
type: "docSidebar",
149149
sidebarId: "guideSidebar",
150150
position: "left",
151-
label: "User Guide",
151+
label: "Guides",
152152
},
153153
{
154154
type: "docSidebar",
@@ -170,22 +170,54 @@ const config = {
170170
style: "dark",
171171
links: [
172172
{
173-
title: "User Guide",
173+
title: "Architecture",
174174
items: [
175175
{
176-
label: "How to Use",
177-
to: "docs/guide",
176+
label: "Overview",
177+
to: "docs/architecture",
178+
},
179+
{
180+
label: "Inference Scheduler",
181+
to: "docs/architecture/components/inference-scheduler",
182+
},
183+
{
184+
label: "KV Cache Manager",
185+
to: "docs/architecture/components/kv-cache-manager",
186+
},
187+
{
188+
label: "Model Service",
189+
to: "docs/architecture/components/modelservice",
190+
},
191+
{
192+
label: "Benchmark Tools",
193+
to: "docs/architecture/components/benchmark",
178194
},
179195
],
180196
},
181197
{
182-
title: "Architecture",
198+
title: "Guides",
183199
items: [
184200
{
185-
label: "Overview",
186-
to: "docs/architecture",
201+
label: "Getting Started",
202+
to: "docs/guide",
203+
},
204+
{
205+
label: "Prerequisites",
206+
to: "docs/guide/Installation/prerequisites",
207+
},
208+
{
209+
label: "Inference Scheduling",
210+
to: "docs/guide/Installation/inference-scheduling",
211+
},
212+
{
213+
label: "Prefill/Decode Disaggregation",
214+
to: "docs/guide/Installation/pd-disaggregation",
187215
},
188-
],
216+
{
217+
label: "Wide Expert Parallelism",
218+
to: "docs/guide/Installation/wide-ep-lws",
219+
},
220+
],
189221
},
190222
{
191223
title: "Community",

0 commit comments

Comments
 (0)