Skip to content

Commit 03fbbc8

Browse files
committed
ensure mermaid styling
Signed-off-by: Will Killian <wkillian@nvidia.com>
1 parent fc8bfab commit 03fbbc8

7 files changed

Lines changed: 28 additions & 0 deletions

File tree

docs/about/architecture.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: "Architecture"
33
description: ""
44
position: 2
55
---
6+
import { MermaidStyles } from "@/components/MermaidStyles";
7+
68
{/* SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
79
SPDX-License-Identifier: Apache-2.0 */}
810

@@ -13,6 +15,8 @@ subscribers, and exporters.
1315

1416
This diagram connects the runtime pieces to the layers they inhabit.
1517

18+
<MermaidStyles />
19+
1620
```mermaid
1721
flowchart TB
1822
subgraph AppLayer[Framework Integrations and Application Code]

docs/about/concepts/plugins.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: "Plugins"
33
description: ""
44
position: 3
55
---
6+
import { MermaidStyles } from "@/components/MermaidStyles";
7+
68
{/* SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
79
SPDX-License-Identifier: Apache-2.0 */}
810

@@ -57,6 +59,8 @@ behavior.
5759
Reporting provides structured diagnostics about what activated successfully and
5860
what did not.
5961

62+
<MermaidStyles />
63+
6064
```mermaid
6165
flowchart TB
6266
subgraph Config[Plugin Configuration]

docs/about/concepts/subscribers.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: "Subscribers"
33
description: ""
44
position: 5
55
---
6+
import { MermaidStyles } from "@/components/MermaidStyles";
7+
68
{/* SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
79
SPDX-License-Identifier: Apache-2.0 */}
810

@@ -76,6 +78,8 @@ scopes, LLM calls, tool calls, or marks. NeMo Relay emits the canonical ATOF eve
7678
stream, and each subscriber chooses whether to consume the native event object,
7779
the canonical JSON helper, or an exporter-specific translation.
7880

81+
<MermaidStyles />
82+
7983
```mermaid
8084
flowchart
8185
Host[Host Integration]

docs/about/ecosystem.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: "Ecosystem"
33
description: ""
44
position: 3
55
---
6+
import { MermaidStyles } from "@/components/MermaidStyles";
7+
68
{/* SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
79
SPDX-License-Identifier: Apache-2.0 */}
810

@@ -40,6 +42,8 @@ agent products. A framework asks, "What should the agent do next?" NeMo Relay
4042
asks, "When the agent does work, which scope owns it, which middleware applies,
4143
what events are emitted, and which subscribers can consume the result?"
4244

45+
<MermaidStyles />
46+
4347
```mermaid
4448
flowchart TB
4549
User[User / Application]

docs/about/overview.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: "Overview"
33
description: ""
44
position: 1
55
---
6+
import { MermaidStyles } from "@/components/MermaidStyles";
7+
68
{/* SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
79
SPDX-License-Identifier: Apache-2.0 */}
810

@@ -81,6 +83,8 @@ relate to each other. Scopes define where work belongs, middleware registries
8183
define what runs around that work, and subscribers consume the lifecycle events
8284
that the core emits.
8385

86+
<MermaidStyles />
87+
8488
```mermaid
8589
flowchart TB
8690
Plugin[Plugin]

docs/build-plugins/basic-guide.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: "Define a Plugin"
33
description: ""
44
position: 2
55
---
6+
import { MermaidStyles } from "@/components/MermaidStyles";
7+
68
{/* SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
79
SPDX-License-Identifier: Apache-2.0 */}
810

@@ -68,6 +70,8 @@ Start with one surface. Add a bundle only when one configuration document clearl
6870

6971
The diagram below shows how plugin configuration turns into registered runtime behavior.
7072

73+
<MermaidStyles />
74+
7175
```mermaid
7276
flowchart TB
7377
Kind[Plugin kind<br/>registered once]

docs/getting-started/agent-runtime-primer.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ title: "Agent Runtime Primer"
33
description: ""
44
position: 1
55
---
6+
import { MermaidStyles } from "@/components/MermaidStyles";
7+
68
{/* SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
79
SPDX-License-Identifier: Apache-2.0 */}
810

@@ -45,6 +47,8 @@ The core runtime model has five parts:
4547

4648
The simplest mental model is:
4749

50+
<MermaidStyles />
51+
4852
```mermaid
4953
flowchart LR
5054
boundary["App or framework boundary"]

0 commit comments

Comments
 (0)