index.yml 16 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
29
30
      - page: Local Installation
        path: getting-started/local-installation.md
      - page: Building from Source
        path: getting-started/building-from-source.md
31
32
      - page: Contribution Guide
        path: contribution-guide.md
33
34
35
36

  # ==================== Resources ====================
  - section: Resources
    contents:
37
38
39
40
41
42
43
44
      - 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
45
46
      - page: Glossary
        path: reference/glossary.md
47
48
49
50
51
52
53
54
55

  # ==================== Kubernetes Deployment ====================
  - section: Kubernetes Deployment
    contents:
      - section: Deployment Guide
        path: kubernetes/README.md
        contents:
          - page: Detailed Installation Guide
            path: kubernetes/installation-guide.md
56
57
          - page: Deploying Your First Model
            path: kubernetes/dgdr.md
58
59
60
61
62
63
64
65
66
67
68
69
          - 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
70
71
          - page: Rolling Update
            path: kubernetes/rolling-update.md
72
73
          - page: Developing with Tilt
            path: kubernetes/tilt-dev-setup.md
74
75
          - page: Inference Gateway (GAIE)
            path: kubernetes/inference-gateway.md
76
77
          - page: Snapshot
            path: kubernetes/snapshot.md
78
79
          - page: Disagg Communication
            path: kubernetes/disagg-communication-guide.md
80
81
82
83
84
85
86
87
88
89
90
91
92
93
      - 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
94
95
          - page: Topology Aware Scheduling
            path: kubernetes/topology-aware-scheduling.md
96
97
98
99
100
101
102
103
104
105
106
107

  # ==================== 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
108
109
      - page: Mocker Offline Trace Replay
        path: benchmarks/mocker-trace-replay.md
110
111
112
113
      - section: Testing
        contents:
          - page: Mocker
            path: mocker/mocker.md
114
115
      - section: Multimodal
        path: features/multimodal/README.md
116
        contents:
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
          - 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
136
137
      - page: Tool Calling
        path: agents/tool-calling.md
138
139
      - page: Reasoning
        path: agents/reasoning.md
140
141
      - page: LoRA Adapters
        path: features/lora/README.md
142
143
      - section: Agents
        slug: agents
144
145
146
147
        path: features/agentic_workloads.md
        contents:
          - page: SGLang for Agentic Workloads
            path: backends/sglang/agents.md
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
      - 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: Request Rejection
            path: fault-tolerance/request-rejection.md
172
173
          - page: Graceful Shutdown
            path: fault-tolerance/graceful-shutdown.md
174
175
          - page: Testing
            path: fault-tolerance/testing.md
176
      - page: Writing Python Workers
177
178
179
180
181
182
183
184
185
186
        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
187
188
          - page: Chat Processor
            path: backends/sglang/sglang-chat-processor.md
189
190
191
192
193
194
195
196
          - 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
197
198
          - page: Agentic Workloads
            path: backends/sglang/agents.md
199
      - section: TensorRT-LLM
200
        path: backends/trtllm/README.md
201
202
203
204
205
        contents:
          - page: Reference Guide
            path: backends/trtllm/trtllm-reference-guide.md
          - page: Examples
            path: backends/trtllm/trtllm-examples.md
206
207
          - page: Observability
            path: backends/trtllm/trtllm-observability.md
208
209
210
211
          - page: Video Diffusion (Experimental)
            path: backends/trtllm/trtllm-video-diffusion.md
          - page: Known Issues and Mitigations
            path: backends/trtllm/trtllm-known-issues.md
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
      - 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
230
231
          - page: KV Event Replay — Dynamo vs vLLM
            path: components/router/kv-event-replay-comparison.md
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
      - 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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
      - 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
291

dagil-nvidia's avatar
dagil-nvidia committed
292
293
  # ==================== Blog ====================
  - section: Blog
294
    collapsed: true
dagil-nvidia's avatar
dagil-nvidia committed
295
296
297
298
299
300
301
302
303
304
    path: blogs/index.mdx
    slug: blog
    contents:
      - page: "Full-Stack Optimizations for Agentic Inference"
        path: blogs/agentic-inference/agentic-inference.md
        slug: agentic-inference
      - page: "Flash Indexer: Inter-Galactic KV Routing"
        path: blogs/flash-indexer/flash-indexer.md
        slug: flash-indexer

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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
  # ==================== 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: Tuning Disaggregated Performance
        path: performance/tuning.md
359
360
361
      # -- Frontend (hidden sub-pages) --
      - page: NVIDIA Request Extensions (nvext)
        path: components/frontend/nvext.md
362
363
364
      # -- Backend detail pages --
      - section: vLLM Details
        contents:
365
366
367
368
          - page: Reference Guide
            path: backends/vllm/vllm-reference-guide.md
          - page: Examples
            path: backends/vllm/vllm-examples.md
369
370
          - page: KV Cache Offloading
            path: backends/vllm/vllm-kv-offloading.md
371
372
          - page: Observability
            path: backends/vllm/vllm-observability.md
373
374
375
376
          - page: vLLM-Omni
            path: backends/vllm/vllm-omni.md
      - section: TensorRT-LLM Details
        contents:
377
378
379
380
381
382
383
384
          - 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
385
          - page: Multinode Examples
386
            path: backends/trtllm/multinode/trtllm-multinode-examples.md
387
          - page: Llama4 + Eagle
388
            path: backends/trtllm/trtllm-llama4-plus-eagle.md
389
          - page: Gemma3 Sliding Window
390
            path: backends/trtllm/trtllm-gemma3-sliding-window-attention.md
391
          - page: GPT-OSS
392
            path: backends/trtllm/trtllm-gpt-oss.md
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
      # -- 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