index.yml 15.3 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Navigation structure matching https://docs.nvidia.com/dynamo/dev/
# Rebuilt to exactly replicate the rendered Sphinx sidebar

navigation:
  # ==================== Getting Started ====================
  - section: Getting Started
    contents:
      - page: Quickstart
        path: getting-started/quickstart.md
25
26
      - page: Introduction
        path: getting-started/introduction.md
27
28
      - page: Contribution Guide
        path: contribution-guide.md
29
30
31
32

  # ==================== Resources ====================
  - section: Resources
    contents:
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
      - page: Support Matrix
        path: reference/support-matrix.md
      - page: Feature Matrix
        path: reference/feature-matrix.md
      - page: Release Artifacts
        path: reference/release-artifacts.md
      - page: Examples
        path: getting-started/examples.md

  # ==================== Kubernetes Deployment ====================
  - section: Kubernetes Deployment
    contents:
      - section: Deployment Guide
        path: kubernetes/README.md
        contents:
          - page: Detailed Installation Guide
            path: kubernetes/installation-guide.md
50
51
          - page: Deploying Your First Model
            path: kubernetes/dgdr.md
52
53
54
55
56
57
58
59
60
61
62
63
          - page: Dynamo Operator
            path: kubernetes/dynamo-operator.md
          - page: Service Discovery
            path: kubernetes/service-discovery.md
          - page: Webhooks
            path: kubernetes/webhooks.md
          - page: Minikube Setup
            path: kubernetes/deployment/minikube.md
          - page: Managing Models with DynamoModel
            path: kubernetes/deployment/dynamomodel-guide.md
          - page: Autoscaling
            path: kubernetes/autoscaling.md
64
65
          - page: Rolling Update
            path: kubernetes/rolling-update.md
66
67
          - page: Inference Gateway (GAIE)
            path: kubernetes/inference-gateway.md
68
69
          - page: Snapshot
            path: kubernetes/snapshot.md
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
      - section: Observability (K8s)
        contents:
          - page: Metrics
            path: kubernetes/observability/metrics.md
          - page: Logging
            path: kubernetes/observability/logging.md
          - page: Operator Metrics
            path: kubernetes/observability/operator-metrics.md
      - section: Multinode
        contents:
          - page: Multinode Deployments
            path: kubernetes/deployment/multinode-deployment.md
          - page: Grove
            path: kubernetes/grove.md

  # ==================== User Guides ====================
  - section: User Guides
    contents:
      - page: KV Cache Aware Routing
        path: components/router/router-guide.md
      - page: Disaggregated Serving
        path: features/disaggregated-serving/README.md
      - page: KV Cache Offloading
        path: components/kvbm/kvbm-guide.md
      - page: Dynamo Benchmarking
        path: benchmarks/benchmarking.md
96
97
      - section: Multimodal
        path: features/multimodal/README.md
98
        contents:
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
          - page: Embedding Cache
            path: features/multimodal/embedding-cache.md
          - page: Encoder Disaggregation
            path: features/multimodal/encoder-disaggregation.md
          - page: Multimodal KV Routing
            path: features/multimodal/multimodal-kv-routing.md
      - section: Diffusion (Preview)
        slug: diffusion
        path: features/diffusion/README.md
        contents:
          - page: FastVideo
            slug: fastvideo
            path: features/diffusion/fastvideo.md
          - page: vLLM-Omni
            path: backends/vllm/vllm-omni.md
          - page: SGLang Diffusion
            path: backends/sglang/sglang-diffusion.md
          - page: TRT-LLM Diffusion
            path: backends/trtllm/trtllm-video-diffusion.md
118
119
120
121
      - page: Tool Calling
        path: agents/tool-calling.md
      - page: LoRA Adapters
        path: features/lora/README.md
122
123
      - section: Agents
        slug: agents
124
125
126
127
        path: features/agentic_workloads.md
        contents:
          - page: SGLang for Agentic Workloads
            path: backends/sglang/agents.md
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
      - section: Observability (Local)
        path: observability/README.md
        contents:
          - page: Prometheus + Grafana Setup
            path: observability/prometheus-grafana.md
          - page: Metrics
            path: observability/metrics.md
          - page: Metrics Developer Guide
            path: observability/metrics-developer-guide.md
          - page: Health Checks
            path: observability/health-checks.md
          - page: Tracing
            path: observability/tracing.md
          - page: Logging
            path: observability/logging.md
      - section: Fault Tolerance
        path: fault-tolerance/README.md
        contents:
          - page: Request Migration
            path: fault-tolerance/request-migration.md
          - page: Request Cancellation
            path: fault-tolerance/request-cancellation.md
          - page: Graceful Shutdown
            path: fault-tolerance/graceful-shutdown.md
          - page: Request Rejection
            path: fault-tolerance/request-rejection.md
          - page: Testing
            path: fault-tolerance/testing.md
156
      - page: Writing Python Workers
157
158
159
160
161
162
163
164
165
166
        path: development/backend-guide.md

  # ==================== Backends ====================
  - section: Backends
    contents:
      - section: SGLang
        path: backends/sglang/README.md
        contents:
          - page: Reference Guide
            path: backends/sglang/sglang-reference-guide.md
167
168
          - page: Chat Processor
            path: backends/sglang/sglang-chat-processor.md
169
170
171
172
173
174
175
176
          - page: Examples
            path: backends/sglang/sglang-examples.md
          - page: Disaggregation
            path: backends/sglang/sglang-disaggregation.md
          - page: Diffusion
            path: backends/sglang/sglang-diffusion.md
          - page: Observability
            path: backends/sglang/sglang-observability.md
177
178
          - page: Agentic Workloads
            path: backends/sglang/agents.md
179
      - section: TensorRT-LLM
180
        path: backends/trtllm/README.md
181
182
183
184
185
186
187
188
189
190
191
        contents:
          - page: Reference Guide
            path: backends/trtllm/trtllm-reference-guide.md
          - page: Examples
            path: backends/trtllm/trtllm-examples.md
          - page: Prometheus Metrics
            path: backends/trtllm/trtllm-prometheus.md
          - page: Video Diffusion (Experimental)
            path: backends/trtllm/trtllm-video-diffusion.md
          - page: Known Issues and Mitigations
            path: backends/trtllm/trtllm-known-issues.md
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
      - page: vLLM
        path: backends/vllm/README.md

  # ==================== Components ====================
  - section: Components
    contents:
      - section: Frontend
        path: components/frontend/README.md
        contents:
          - page: Frontend Guide
            path: components/frontend/frontend-guide.md
      - section: Router
        path: components/router/README.md
        contents:
          - page: Router Guide
            path: components/router/router-guide.md
          - page: Router Examples
            path: components/router/router-examples.md
210
211
          - page: KV Event Replay — Dynamo vs vLLM
            path: components/router/kv-event-replay-comparison.md
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
      - section: Planner
        path: components/planner/README.md
        contents:
          - page: Planner Guide
            path: components/planner/planner-guide.md
          - page: Planner Examples
            path: components/planner/planner-examples.md
      - section: Profiler
        path: components/profiler/README.md
        contents:
          - page: Profiler Guide
            path: components/profiler/profiler-guide.md
          - page: Profiler Examples
            path: components/profiler/profiler-examples.md
      - section: KVBM
        path: components/kvbm/README.md
        contents:
          - page: KVBM Guide
            path: components/kvbm/kvbm-guide.md

  # ==================== Integrations ====================
  - section: Integrations
    contents:
      - page: LMCache
        path: integrations/lmcache-integration.md
      - page: SGLang HiCache
        path: integrations/sglang-hicache.md
      - page: FlexKV
        path: integrations/flexkv-integration.md
      - page: KV Events for Custom Engines
        path: integrations/kv-events-custom-engines.md

  # ==================== Design Docs ====================
  - section: Design Docs
    contents:
      - page: Overall Architecture
        path: design-docs/architecture.md
      - page: Architecture Flow
        path: design-docs/dynamo-flow.md
      - page: Disaggregated Serving
        path: design-docs/disagg-serving.md
      - page: Distributed Runtime
        path: design-docs/distributed-runtime.md
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
      - section: Communication Planes
        contents:
          - page: Discovery Plane
            path: design-docs/discovery-plane.md
          - page: Request Plane
            path: design-docs/request-plane.md
          - page: Event Plane
            path: design-docs/event-plane.md
      - section: Component Design
        contents:
          - page: Router Design
            path: design-docs/router-design.md
          - page: KVBM Design
            path: design-docs/kvbm-design.md
          - page: Planner Design
            path: design-docs/planner-design.md
271
272
273
274
275
276
277

  # ==================== Blog ====================
  - section: Blog
    hidden: true
    path: blogs/index.mdx
    slug: blog
    contents:
278
279
280
      - page: "Full-Stack Optimizations for Agentic Inference"
        path: blogs/agentic-inference/agentic-inference.md
        slug: agentic-inference
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
      - page: "Flash Indexer: Inter-Galactic KV Routing"
        path: blogs/flash-indexer/flash-indexer.md
        slug: flash-indexer

  # ==================== Documentation ====================
  - section: Documentation
    contents:
      - page: Dynamo Docs Guide
        path: README.md

  # ==================== Hidden Pages ====================
  # Pages accessible via direct URL but not shown in main navigation.
  # Matches Sphinx hidden_toctree.rst -- pages linked from within content
  # but not in the sidebar.
  - section: Additional Resources
    hidden: true
    contents:
      # -- Development --
      - page: Runtime Guide
        path: development/runtime-guide.md
      - page: Jail Stream
        path: development/jail-stream.md
      # -- API Reference --
      - section: NIXL Connect API
        path: api/nixl-connect/README.md
        contents:
          - page: Connector
            path: api/nixl-connect/connector.md
          - page: Device
            path: api/nixl-connect/device.md
          - page: Device Kind
            path: api/nixl-connect/device-kind.md
          - page: Descriptor
            path: api/nixl-connect/descriptor.md
          - page: Read Operation
            path: api/nixl-connect/read-operation.md
          - page: Write Operation
            path: api/nixl-connect/write-operation.md
          - page: Readable Operation
            path: api/nixl-connect/readable-operation.md
          - page: Writable Operation
            path: api/nixl-connect/writable-operation.md
          - page: Operation Status
            path: api/nixl-connect/operation-status.md
          - page: RDMA Metadata
            path: api/nixl-connect/rdma-metadata.md
      # -- Kubernetes (hidden sub-pages) --
      - page: API Reference (K8s)
        path: kubernetes/api-reference.md
      - page: Creating Deployments
        path: kubernetes/deployment/create-deployment.md
      - page: FluxCD
        path: kubernetes/fluxcd.md
      - page: Model Caching with Fluid
        path: kubernetes/model-caching-with-fluid.md
      # -- Reference --
      - page: Glossary
        path: reference/glossary.md
      - page: Tuning Disaggregated Performance
        path: performance/tuning.md
341
342
343
      # -- Frontend (hidden sub-pages) --
      - page: NVIDIA Request Extensions (nvext)
        path: components/frontend/nvext.md
344
345
346
      # -- Backend detail pages --
      - section: vLLM Details
        contents:
347
348
349
350
          - page: Reference Guide
            path: backends/vllm/vllm-reference-guide.md
          - page: Examples
            path: backends/vllm/vllm-examples.md
351
352
          - page: KV Cache Offloading
            path: backends/vllm/vllm-kv-offloading.md
353
354
          - page: Observability
            path: backends/vllm/vllm-observability.md
355
356
357
358
          - page: vLLM-Omni
            path: backends/vllm/vllm-omni.md
      - section: TensorRT-LLM Details
        contents:
359
360
361
362
363
364
365
366
          - page: Building a Custom Container
            path: backends/trtllm/trtllm-building-custom-container.md
          - page: KV Cache Transfer
            path: backends/trtllm/trtllm-kv-cache-transfer.md
          - page: Logits Processing
            path: backends/trtllm/trtllm-logits-processing.md
          - page: DP Rank Routing
            path: backends/trtllm/trtllm-dp-rank-routing.md
367
          - page: Multinode Examples
368
            path: backends/trtllm/multinode/trtllm-multinode-examples.md
369
          - page: Llama4 + Eagle
370
            path: backends/trtllm/trtllm-llama4-plus-eagle.md
371
          - page: Gemma3 Sliding Window
372
            path: backends/trtllm/trtllm-gemma3-sliding-window-attention.md
373
          - page: GPT-OSS
374
            path: backends/trtllm/trtllm-gpt-oss.md
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
      # -- Features (hidden sub-pages) --
      - section: Speculative Decoding
        path: features/speculative-decoding/README.md
        contents:
          - page: Speculative Decoding with vLLM
            path: features/speculative-decoding/speculative-decoding-vllm.md
      # -- Benchmarks --
      - page: KV Router A/B Testing
        path: benchmarks/kv-router-ab-testing.md
      # -- Mocker --
      - page: Mocker
        path: mocker/mocker.md
      # -- Templates --
      - section: Templates
        path: templates/README.md
        contents:
          - page: Backend Guide
            path: templates/backend-guide.md
          - page: Backend README
            path: templates/backend-readme.md
          - page: Component Design
            path: templates/component-design.md
          - page: Component Examples
            path: templates/component-examples.md
          - page: Component Guide
            path: templates/component-guide.md
          - page: Component README
            path: templates/component-readme.md
          - page: Feature Backend
            path: templates/feature-backend.md
          - page: Feature README
            path: templates/feature-readme.md
          - page: In-Code README
            path: templates/incode-readme.md
          - page: Infrastructure README
            path: templates/infrastructure-readme.md
          - page: Integration README
            path: templates/integration-readme.md