Use this skill when integrating NVIDIA NeMo Fabric into a consumer application, service, evaluation harness, or platform through the typed Python SDK — translating the consumer's own application, job, or deployment config into an in-memory FabricConfig, choosing the single-invocation convenience API or an explicitly started runtime, validating with plan and doctor, and consuming normalized results, artifacts, and telemetry.
Integrate NVIDIA NeMo Fabric Through The Python SDK
Use this skill when a consumer codebase — an application, service, evaluation
harness, or platform — needs to run agent harnesses through NeMo Fabric's typed
Python SDK. The consumer owns its own configuration object and translates it
into an in-memory FabricConfig; NeMo Fabric owns adapter selection, the runtime
lifecycle, and normalized results.
Integration Boundary
Use the public, in-memory contract. These rules keep a consumer integration
supported and upgrade-safe:
Import only from the public nemo_fabric package. Never import _native or
any adapter-internal module.
Build configuration as a typed FabricConfig in memory and pass it directly to
NeMo Fabric. Create every deployment or evaluation variant with ordinary Python
functions and model_copy(deep=True). A platform integration can serialize
the typed config inside a private transient run specification when it crosses
a process boundary; that transport is not a public authoring format.
Let NeMo Fabric own harness control. Do not reimplement start, invoke, or stop
logic, and do not manage adapter threads, sessions, or processes directly.
Treat runtime_id, invocation_id, and request_id as opaque correlation
strings, not parsable or reusable state.
Refer to config-mapping.md for how to translate a
consumer config object into FabricConfig, and for the full list of mechanics
that stay hidden behind this boundary.
Install And Set Up The Environment
The consumer or its execution environment owns installation; NeMo Fabric validates
runtime assumptions but never installs harnesses or credentials at run time.
NeMo Fabric supports Python 3.11 through 3.14. Use Python 3.11 through 3.13
for Hermes Agent; the Harbor integration requires Python 3.12 or later.
Install the runtime with uv pip install nemo-fabric (add the harbor extra
for the Harbor integration). Refer to the
installation guide.
Select the harness adapter through HarnessConfig.adapter_id. To install the
NeMo Fabric runtime, adapter, and supported harness in one environment, use
nemo-fabric[claude], nemo-fabric[codex],
or nemo-fabric[deepagents].
Hermes Agent 0.20 and later is no longer installable from PyPI. Follow the
Hermes Agent installation guide,
then install the nemo-fabric[hermes-agent] package
into the Python environment that runs Hermes Agent. These packages do not
install Hermes Agent.
In a separate adapter environment, install
nemo-fabric-adapters-<adapter>[harness]. This installs the adapter and
supported harness dependencies without the NeMo Fabric runtime. Use full
instead when that adapter package provides package-installable optional
integrations.
Point the runtime to a separate adapter environment with ADAPTER_PYTHON.
Use matching NeMo Fabric release versions for the runtime and adapter package
unless a different pairing has been explicitly validated.
If the adapter environment already manages a compatible harness, install the
bare nemo-fabric-adapters-<adapter> distribution. Bare adapter
distributions contain only adapter-owned runtime dependencies.
LangChain Deep Agents and Hermes Agent adapter packages provide relay and
include the NeMo Relay Python package in full. The Hermes Agent extras do
not install Hermes Agent. Claude and Codex do not provide relay; their
harness and full extras install the supported nemo-relay CLI alongside
the harness SDK.
Provide model credentials through environment variables named by the config
(ModelConfig.api_key_env), never as literals in code.
Confirm the native extension is importable; SDK calls raise
FabricNativeUnavailableError when it is missing.
Build The Typed Config From Consumer Config
Map the consumer's application, job, or deployment object into a FabricConfig
with the public models and helper methods:
from nemo_fabric import (
FabricConfig,
HarnessConfig,
InstructionConfig,
InstructionsConfig,
MetadataConfig,
ModelConfig,
RuntimeConfig,
ToolsConfig,
)
def to_tools_config(job) -> ToolsConfig | None:
enabled = job.enabled_tools
blocked = list(job.blocked_tools)
if enabled is None and not blocked:
return None
return ToolsConfig(
enabled=None if enabled is None else list(enabled),
blocked=blocked,
)
def to_fabric_config(job) -> FabricConfig:
config = FabricConfig(
metadata=MetadataConfig(name=job.name),
harness=HarnessConfig(adapter_id=job.adapter_id, resolution="preinstalled"),
models={
"default": ModelConfig(
provider=job.provider,
model=job.model,
api_key_env=job.api_key_env,
base_url=job.base_url,
)
},
instructions=(
InstructionsConfig(
system=InstructionConfig(
content=job.system_instruction,
mode=job.system_instruction_mode,
),
)
if job.system_instruction is not None
else None
),
runtime=RuntimeConfig(
input_schema="chat",
output_schema="message",
timeout_seconds=job.timeout_seconds,
max_turns=job.max_turns,
),
tools=to_tools_config(job),
)
config.add_skill_path(job.skill_dir)
config.add_mcp_server(
"github",
transport="streamable-http",
url="${GITHUB_MCP_URL}",
exposure="harness_native",
)
return config
Shape capabilities with ToolsConfig, add_tool_definition, block_tools, add_skill_path,
remove_skill_path,
add_mcp_server, remove_mcp_server, and enable_relay.
Use add_tool_definition only when the selected adapter accepts
tools.definitions and publishes a tool_definition_schema.
Use a restricted allowed_tools list or non-empty blocked_tools on
add_mcp_server only when the selected adapter declares both mcp and
mcp.tool_filters. An unfiltered server requires only mcp.
allowed_tools=None exposes every discovered tool, while an empty list
exposes none; blocked tools are removed after applying that allowlist. Tool
names must be non-blank, and planning rejects a tool that appears in both
lists.
Configure MCP authentication only when the selected adapter declares
mcp.auth.oauth2 or mcp.auth.service_account, matching the authentication
type.
Create deployment or evaluation variants with model_copy(deep=True) and
ordinary Python functions; each copy plans and runs independently.
Pass base_dir=... to any Fabric call when the config uses relative paths,
so skills, workspaces, and artifacts anchor to the consumer's own layout.
The repository code_review_agent example
shows this pattern end to end with complete Hermes Agent, Codex, Deep Agents,
environment, MCP, and telemetry variants. Reuse it rather than duplicating config
construction.
Choose A Lifecycle
Pick the smallest lifecycle the consumer needs:
Single invocation — one input, no retained state after the call.
await Fabric().run(config, input=...) runs the full start, invoke, and stop
cycle and returns a RunResult. Pass
request=RunRequest(...) instead of input=... when the invocation needs a
caller-owned request ID or context (the two are mutually exclusive).
Stateful runtime — ordered turns over one logical harness lifecycle. Start it with
start_runtime(...) and use the returned Runtime as an async context
manager so cleanup runs on exit — shutdown is attempted, not guaranteed
(stop() can raise FabricRuntimeError; see Consume Results And Handle
Errors). A runtime accepts one active invocation at a time; overlapping calls
raise FabricStateError.
Native OpenAI stream — adapter-native OpenAI Chat Completions chunks plus
a separate terminal normalized result. Check
runtime.supports_openai_streaming, call
runtime.invoke_openai_stream(...), iterate the returned
OpenAIInvokeStream, and then await stream.result(). The selected adapter
descriptor must declare capabilities.streaming. Each yielded mapping has
object == "chat.completion.chunk"; an empty stream is valid. If iteration
stops early, call await stream.aclose() to drain without cancelling the
target invocation. This path does not require NeMo Relay or
streaming=True.
NVIDIA NeMo Relay stream — live, raw ATOF records plus a terminal normalized
result. Enable NeMo Relay, pass streaming=True to start_runtime(...), call
runtime.invoke_stream(...), iterate the returned InvokeStream, and then
await stream.result(). Iteration ending does not indicate invocation
success; invocation exceptions raise from result(), while harness-reported
failures remain normalized RunResult values. If iteration stops early,
call await stream.aclose() before starting another turn. aclose() waits
for the turn to finish; it does not cancel the harness invocation. The SDK
intentionally exposes only ATOF records generated by NeMo Relay. This path is
independent of native OpenAI streaming. The listener
limits each record to 1 MiB and its queue to 1,024 records or 16 MiB of
encoded data. It correlates records through the NeMo Fabric request ID for
in-process harnesses. For gateway harnesses, it uses the NeMo Relay turn-scope
role and 1-based turn index. It yields only the matched scope tree. Delayed
prior-turn records therefore do not enter the next stream. If gateway and
NeMo Fabric turn sequences do not align, the SDK discards the uncorrelated records
and emits a RuntimeWarning after natural stream exhaustion. The listener
binds to NEMO_FABRIC_STREAMING_HOST, which defaults to 127.0.0.1.
Override it when the gateway must reach the SDK through another network
interface, and restrict access to that interface. If async iteration reaches
its post-turn drain timeout without a NeMo Relay connection, or receives data
without a matching turn root, the SDK emits one RuntimeWarning for that
failure mode; callers that only await stream.result() do not run that
warning check. The SDK also warns when a NeMo Relay upload terminates before
completing its chunked request body because yielded records can be incomplete.
The streaming=True flag does not enable NeMo Relay by itself. Without
streaming=True, startup leaves the NeMo Relay configuration unchanged and
does not inject the SDK-owned ATOF stream sink.
The selected adapter owns the execution topology. The bundled Claude, Codex,
Deep Agents, and Hermes Agent adapters retain their native client, graph/checkpointer,
or agent/database inside one local host for the full runtime. Local process
and python adapters use this host lifecycle; consumers do not select another
local execution mechanism in FabricConfig. Do not replay an invocation after
a runtime failure. Stop the failed runtime and explicitly start a new one
according to the application's retry policy.
The lifecycle fragment below shows the available forms. It assumes the caller
has already set config = to_fabric_config(job) and chosen base, as described
in the configuration example above:
import asyncio
from nemo_fabric import Fabric
async def main() -> None:
fabric = Fabric()
# Single invocation
result = await fabric.run(config, base_dir=base, input="Review the changes.")
# Multi-turn
async with await fabric.start_runtime(config, base_dir=base) as runtime:
first = await runtime.invoke(input="Inspect the repository")
second = await runtime.invoke(input="Now review the latest patch")
# Adapter-native OpenAI Chat Completions chunks
async with await fabric.start_runtime(config, base_dir=base) as runtime:
if runtime.supports_openai_streaming:
stream = runtime.invoke_openai_stream(input="Review the latest patch")
async for chunk in stream:
print(chunk)
openai_streamed_result = await stream.result()
# NeMo Relay streaming
streaming_config = config.model_copy(deep=True).enable_relay()
async with await fabric.start_runtime(
streaming_config,
base_dir=base,
streaming=True,
) as runtime:
stream = runtime.invoke_stream(input="Review the latest patch")
async for record in stream:
print(record)
streamed_result = await stream.result()
asyncio.run(main())
NeMo Fabric owns no application scheduling queue, worker pool, retry policy, or
global concurrency policy. Each runtime still permits only one active
invocation; start independent runtimes for parallel work. The NeMo Relay
streaming path uses an internal bounded transport queue and TCP backpressure
only to carry one invocation's ATOF records. Treat stream.result() as
authoritative, and reconstruct nested work from ATOF uuid and parent_uuid
fields rather than stream order.
For native OpenAI streaming, the SDK owns the authenticated loopback HTTP
transport, chunked NDJSON framing, and correlation values. Consumer code
supplies no listener or credentials. The adapter executes exactly one
invocation, and the terminal RunResult remains separate from the chunk stream.
Fully consume the stream or call await stream.aclose() before starting another
turn. Awaiting stream.result() also drains and discards unread native OpenAI
chunks, so consume the iterator first when the application needs every chunk.
Validate Before Running
Resolve and diagnose before spending work on a runtime, especially in a new
environment or before relying on an optional capability:
Use plan(...) to confirm adapter selection and capability routing before
running. Planning validates harness.settings against the exact resolved
Adapter Descriptor and, when present, workflow.settings against the exact
resolved Adapter Target Descriptor.
Use doctor(...) to check adapter availability, resolution, environment
context, and declared requirements such as required environment variables. Its
aggregate status is pass, warn, or fail. Invalid, unknown, or
misspelled adapter settings fail before diagnostics or runtime startup. A
resolved descriptor without a settings schema accepts only an empty settings
map.
Consume Results And Handle Errors
Every invocation that reaches the adapter boundary returns a normalized
RunResult, even when the harness invocation itself failed. Inspect the failure
fields before reading output:
result = await fabric.run(config, base_dir=base, input="Review the changes.")
if result.status == "succeeded":
use_output(result.output, result.artifacts, result.telemetry)
else:
handle_failure(result.status, result.error, result.events) # failed, cancelled, ...
Treat status == "succeeded" as the only success. Other terminal values
(failed, cancelled) are unsuccessful, so branch on status, not on
error. Read status, error, and events before processing output.
Capture artifacts and telemetry references as the returned evidence for
platforms and evaluations. Store and log runtime_id, invocation_id, and
request_id separately as opaque strings.
Catch FabricError subclasses for lifecycle failures that prevent a
normalized result: FabricConfigError, FabricCapabilityError,
FabricRuntimeError, FabricStateError, and FabricNativeUnavailableError.
The consumer owns retries and failure policy; NeMo Fabric does not retry by
default. run(...) and async with runtimes attempt cleanup automatically,
so prefer them over manual stop() — but shutdown is not guaranteed: stop(),
including the automatic call when an async with block exits, can raise
FabricRuntimeError. On a normal exit that error propagates; after an
invocation error the cleanup failure is attached to the original exception. Be
ready to handle a shutdown failure.
Refer to results-and-errors.md for the full
result-field and error inventory, and
sdk-api-inventory.md for when to use each
Fabric and Runtime method.
Test And Validate The Integration
Write focused integration tests that build the consumer's FabricConfig,
assert plan(...) selects the expected adapter and capabilities, and — where
a harness and credentials are available — run one invocation and assert the
RunResult status and evidence.
plan(...) is credential-free — use it as the CI gate that validates adapter
selection and capability routing without a model or secrets. doctor(...) also
runs without calling a model, but it checks declared environment requirements
(such as required API-key variables) and returns fail when they are unset, so
run it where the environment is provisioned and read its per-check results.
Run the consumer project's own build and test commands. For a source checkout
of NeMo Fabric, just build-all rebuilds the native extension and
just test-python runs the Python suite.
Confirm the typed config is passed directly to NeMo Fabric and no non-public
imports were added.
Checklist
The consumer config object is translated directly into an in-memory FabricConfig.
Only public nemo_fabric symbols are imported; no _native or adapter internals.
The consumer config is built in memory and passed directly to NeMo Fabric.
The right lifecycle is chosen: run(...) for a single invocation,
start_runtime(...) with async with for multi-turn,
invoke_openai_stream(...) for descriptor-gated OpenAI chunks, or
invoke_stream(...) for raw NeMo Relay ATOF.
plan(...) and doctor(...) validate adapter selection, capabilities, and environment before execution.
Installation, adapter dependencies, and credentials are owned by the environment, not consumer code.
RunResult status, error, and events are inspected before output; artifacts and telemetry are captured.
FabricError subclasses are handled, including a FabricRuntimeError raised by shutdown; cleanup is delegated to run(...) or async with (attempted, not guaranteed).
Correlation IDs are stored and logged as opaque strings.
Platform and evaluation-harness integration:
examples/harbor and
nemo_fabric.integrations.harbor.
Harbor constructs a typed config from explicit agent inputs and transports it
inside a private transient run specification at the task-process boundary.
Follow the code-review example for consumer integration code; Harbor's
transport representation is an internal process-boundary contract.
1---2name: nemo-fabric-integrate3description: Use this skill when integrating NVIDIA NeMo Fabric into a consumer application, service, evaluation harness, or platform through the typed Python SDK — translating the consumer's own application, job, or deployment config into an in-memory FabricConfig, choosing the single-invocation convenience API or an explicitly started runtime, validating with plan and doctor, and consuming normalized results, artifacts, and telemetry.4license: Apache-2.05---67# Integrate NVIDIA NeMo Fabric Through The Python SDK89Use this skill when a consumer codebase — an application, service, evaluation10harness, or platform — needs to run agent harnesses through NeMo Fabric's typed11Python SDK. The consumer owns its own configuration object and translates it12into an in-memory `FabricConfig`; NeMo Fabric owns adapter selection, the runtime13lifecycle, and normalized results.1415## Integration Boundary1617Use the public, in-memory contract. These rules keep a consumer integration18supported and upgrade-safe:1920- Import only from the public `nemo_fabric` package. Never import `_native` or21 any adapter-internal module.22- Build configuration as a typed `FabricConfig` in memory and pass it directly to23 NeMo Fabric. Create every deployment or evaluation variant with ordinary Python24 functions and `model_copy(deep=True)`. A platform integration can serialize25 the typed config inside a private transient run specification when it crosses26 a process boundary; that transport is not a public authoring format.27- Let NeMo Fabric own harness control. Do not reimplement start, invoke, or stop28 logic, and do not manage adapter threads, sessions, or processes directly.29- Treat `runtime_id`, `invocation_id`, and `request_id` as opaque correlation30 strings, not parsable or reusable state.3132Refer to [config-mapping.md](references/config-mapping.md) for how to translate a33consumer config object into `FabricConfig`, and for the full list of mechanics34that stay hidden behind this boundary.3536## Install And Set Up The Environment3738The consumer or its execution environment owns installation; NeMo Fabric validates39runtime assumptions but never installs harnesses or credentials at run time.4041- NeMo Fabric supports Python 3.11 through 3.14. Use Python 3.11 through 3.1342 for Hermes Agent; the Harbor integration requires Python 3.12 or later.43- Install the runtime with `uv pip install nemo-fabric` (add the `harbor` extra44 for the Harbor integration). Refer to the45 [installation guide](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/getting-started/install.mdx).46- Select the harness adapter through `HarnessConfig.adapter_id`. To install the47 NeMo Fabric runtime, adapter, and supported harness in one environment, use48 `nemo-fabric[claude]`, `nemo-fabric[codex]`,49 or `nemo-fabric[deepagents]`.50- Hermes Agent 0.20 and later is no longer installable from PyPI. Follow the51 [Hermes Agent installation guide](https://hermes-agent.nousresearch.com/docs/installation),52 then install the `nemo-fabric[hermes-agent]` package53 into the Python environment that runs Hermes Agent. These packages do not54 install Hermes Agent.55- In a separate adapter environment, install56 `nemo-fabric-adapters-<adapter>[harness]`. This installs the adapter and57 supported harness dependencies without the NeMo Fabric runtime. Use `full`58 instead when that adapter package provides package-installable optional59 integrations.60- Point the runtime to a separate adapter environment with `ADAPTER_PYTHON`.61 Use matching NeMo Fabric release versions for the runtime and adapter package62 unless a different pairing has been explicitly validated.63- If the adapter environment already manages a compatible harness, install the64 bare `nemo-fabric-adapters-<adapter>` distribution. Bare adapter65 distributions contain only adapter-owned runtime dependencies.66- LangChain Deep Agents and Hermes Agent adapter packages provide `relay` and67 include the NeMo Relay Python package in `full`. The Hermes Agent extras do68 not install Hermes Agent. Claude and Codex do not provide `relay`; their69 `harness` and `full` extras install the supported `nemo-relay` CLI alongside70 the harness SDK.71- Provide model credentials through environment variables named by the config72 (`ModelConfig.api_key_env`), never as literals in code.73- Confirm the native extension is importable; SDK calls raise74 `FabricNativeUnavailableError` when it is missing.7576## Build The Typed Config From Consumer Config7778Map the consumer's application, job, or deployment object into a `FabricConfig`79with the public models and helper methods:8081```python82from nemo_fabric import (83 FabricConfig,84 HarnessConfig,85 InstructionConfig,86 InstructionsConfig,87 MetadataConfig,88 ModelConfig,89 RuntimeConfig,90 ToolsConfig,91)929394def to_tools_config(job) -> ToolsConfig | None:95 enabled = job.enabled_tools96 blocked = list(job.blocked_tools)97 if enabled is None and not blocked:98 return None99 return ToolsConfig(100 enabled=None if enabled is None else list(enabled),101 blocked=blocked,102 )103104105def to_fabric_config(job) -> FabricConfig:106 config = FabricConfig(107 metadata=MetadataConfig(name=job.name),108 harness=HarnessConfig(adapter_id=job.adapter_id, resolution="preinstalled"),109 models={110 "default": ModelConfig(111 provider=job.provider,112 model=job.model,113 api_key_env=job.api_key_env,114 base_url=job.base_url,115 )116 },117 instructions=(118 InstructionsConfig(119 system=InstructionConfig(120 content=job.system_instruction,121 mode=job.system_instruction_mode,122 ),123 )124 if job.system_instruction is not None125 else None126 ),127 runtime=RuntimeConfig(128 input_schema="chat",129 output_schema="message",130 timeout_seconds=job.timeout_seconds,131 max_turns=job.max_turns,132 ),133 tools=to_tools_config(job),134 )135 config.add_skill_path(job.skill_dir)136 config.add_mcp_server(137 "github",138 transport="streamable-http",139 url="${GITHUB_MCP_URL}",140 exposure="harness_native",141 )142 return config143```144145- Shape capabilities with `ToolsConfig`, `add_tool_definition`, `block_tools`, `add_skill_path`,146 `remove_skill_path`,147 `add_mcp_server`, `remove_mcp_server`, and `enable_relay`.148- Use `add_tool_definition` only when the selected adapter accepts149 `tools.definitions` and publishes a `tool_definition_schema`.150- Use a restricted `allowed_tools` list or non-empty `blocked_tools` on151 `add_mcp_server` only when the selected adapter declares both `mcp` and152 `mcp.tool_filters`. An unfiltered server requires only `mcp`.153 `allowed_tools=None` exposes every discovered tool, while an empty list154 exposes none; blocked tools are removed after applying that allowlist. Tool155 names must be non-blank, and planning rejects a tool that appears in both156 lists.157- Configure MCP authentication only when the selected adapter declares158 `mcp.auth.oauth2` or `mcp.auth.service_account`, matching the authentication159 type.160- Create deployment or evaluation variants with `model_copy(deep=True)` and161 ordinary Python functions; each copy plans and runs independently.162- Pass `base_dir=...` to any `Fabric` call when the config uses relative paths,163 so skills, workspaces, and artifacts anchor to the consumer's own layout.164165The repository [`code_review_agent` example](https://github.com/NVIDIA/NeMo-Fabric/tree/main/examples/code_review_agent)166shows this pattern end to end with complete Hermes Agent, Codex, Deep Agents,167environment, MCP, and telemetry variants. Reuse it rather than duplicating config168construction.169170## Choose A Lifecycle171172Pick the smallest lifecycle the consumer needs:173174- **Single invocation** — one input, no retained state after the call.175 `await Fabric().run(config, input=...)` runs the full start, invoke, and stop176 cycle and returns a `RunResult`. Pass177 `request=RunRequest(...)` instead of `input=...` when the invocation needs a178 caller-owned request ID or context (the two are mutually exclusive).179- **Stateful runtime** — ordered turns over one logical harness lifecycle. Start it with180 `start_runtime(...)` and use the returned `Runtime` as an async context181 manager so cleanup runs on exit — shutdown is attempted, not guaranteed182 (`stop()` can raise `FabricRuntimeError`; see Consume Results And Handle183 Errors). A runtime accepts one active invocation at a time; overlapping calls184 raise `FabricStateError`.185- **Native OpenAI stream** — adapter-native OpenAI Chat Completions chunks plus186 a separate terminal normalized result. Check187 `runtime.supports_openai_streaming`, call188 `runtime.invoke_openai_stream(...)`, iterate the returned189 `OpenAIInvokeStream`, and then await `stream.result()`. The selected adapter190 descriptor must declare `capabilities.streaming`. Each yielded mapping has191 `object == "chat.completion.chunk"`; an empty stream is valid. If iteration192 stops early, call `await stream.aclose()` to drain without cancelling the193 target invocation. This path does not require NeMo Relay or194 `streaming=True`.195- **NVIDIA NeMo Relay stream** — live, raw ATOF records plus a terminal normalized196 result. Enable NeMo Relay, pass `streaming=True` to `start_runtime(...)`, call197 `runtime.invoke_stream(...)`, iterate the returned `InvokeStream`, and then198 await `stream.result()`. Iteration ending does not indicate invocation199 success; invocation exceptions raise from `result()`, while harness-reported200 failures remain normalized `RunResult` values. If iteration stops early,201 call `await stream.aclose()` before starting another turn. `aclose()` waits202 for the turn to finish; it does not cancel the harness invocation. The SDK203 intentionally exposes only ATOF records generated by NeMo Relay. This path is204 independent of native OpenAI streaming. The listener205 limits each record to 1 MiB and its queue to 1,024 records or 16 MiB of206 encoded data. It correlates records through the NeMo Fabric request ID for207 in-process harnesses. For gateway harnesses, it uses the NeMo Relay turn-scope208 role and 1-based turn index. It yields only the matched scope tree. Delayed209 prior-turn records therefore do not enter the next stream. If gateway and210 NeMo Fabric turn sequences do not align, the SDK discards the uncorrelated records211 and emits a `RuntimeWarning` after natural stream exhaustion. The listener212 binds to `NEMO_FABRIC_STREAMING_HOST`, which defaults to `127.0.0.1`.213 Override it when the gateway must reach the SDK through another network214 interface, and restrict access to that interface. If async iteration reaches215 its post-turn drain timeout without a NeMo Relay connection, or receives data216 without a matching turn root, the SDK emits one `RuntimeWarning` for that217 failure mode; callers that only await `stream.result()` do not run that218 warning check. The SDK also warns when a NeMo Relay upload terminates before219 completing its chunked request body because yielded records can be incomplete.220 The `streaming=True` flag does not enable NeMo Relay by itself. Without221 `streaming=True`, startup leaves the NeMo Relay configuration unchanged and222 does not inject the SDK-owned ATOF stream sink.223224The selected adapter owns the execution topology. The bundled Claude, Codex,225Deep Agents, and Hermes Agent adapters retain their native client, graph/checkpointer,226or agent/database inside one local host for the full runtime. Local `process`227and `python` adapters use this host lifecycle; consumers do not select another228local execution mechanism in `FabricConfig`. Do not replay an invocation after229a runtime failure. Stop the failed runtime and explicitly start a new one230according to the application's retry policy.231232The lifecycle fragment below shows the available forms. It assumes the caller233has already set `config = to_fabric_config(job)` and chosen `base`, as described234in the configuration example above:235236```python237import asyncio238239from nemo_fabric import Fabric240241242async def main() -> None:243 fabric = Fabric()244245 # Single invocation246 result = await fabric.run(config, base_dir=base, input="Review the changes.")247248 # Multi-turn249 async with await fabric.start_runtime(config, base_dir=base) as runtime:250 first = await runtime.invoke(input="Inspect the repository")251 second = await runtime.invoke(input="Now review the latest patch")252253 # Adapter-native OpenAI Chat Completions chunks254 async with await fabric.start_runtime(config, base_dir=base) as runtime:255 if runtime.supports_openai_streaming:256 stream = runtime.invoke_openai_stream(input="Review the latest patch")257 async for chunk in stream:258 print(chunk)259 openai_streamed_result = await stream.result()260261 # NeMo Relay streaming262 streaming_config = config.model_copy(deep=True).enable_relay()263 async with await fabric.start_runtime(264 streaming_config,265 base_dir=base,266 streaming=True,267 ) as runtime:268 stream = runtime.invoke_stream(input="Review the latest patch")269 async for record in stream:270 print(record)271 streamed_result = await stream.result()272273274asyncio.run(main())275```276277NeMo Fabric owns no application scheduling queue, worker pool, retry policy, or278global concurrency policy. Each runtime still permits only one active279invocation; start independent runtimes for parallel work. The NeMo Relay280streaming path uses an internal bounded transport queue and TCP backpressure281only to carry one invocation's ATOF records. Treat `stream.result()` as282authoritative, and reconstruct nested work from ATOF `uuid` and `parent_uuid`283fields rather than stream order.284285For native OpenAI streaming, the SDK owns the authenticated loopback HTTP286transport, chunked NDJSON framing, and correlation values. Consumer code287supplies no listener or credentials. The adapter executes exactly one288invocation, and the terminal `RunResult` remains separate from the chunk stream.289Fully consume the stream or call `await stream.aclose()` before starting another290turn. Awaiting `stream.result()` also drains and discards unread native OpenAI291chunks, so consume the iterator first when the application needs every chunk.292293## Validate Before Running294295Resolve and diagnose before spending work on a runtime, especially in a new296environment or before relying on an optional capability:297298```python299fabric = Fabric()300plan = fabric.plan(config, base_dir=base) # sync: adapter + capabilities301report = await fabric.doctor(config, base_dir=base) # async: preflight checks302303print(plan.adapter.adapter_id, report.status)304```305306- Use `plan(...)` to confirm adapter selection and capability routing before307 running. Planning validates `harness.settings` against the exact resolved308 Adapter Descriptor and, when present, `workflow.settings` against the exact309 resolved Adapter Target Descriptor.310- Use `doctor(...)` to check adapter availability, resolution, environment311 context, and declared requirements such as required environment variables. Its312 aggregate `status` is `pass`, `warn`, or `fail`. Invalid, unknown, or313 misspelled adapter settings fail before diagnostics or runtime startup. A314 resolved descriptor without a settings schema accepts only an empty settings315 map.316317## Consume Results And Handle Errors318319Every invocation that reaches the adapter boundary returns a normalized320`RunResult`, even when the harness invocation itself failed. Inspect the failure321fields before reading output:322323```python324result = await fabric.run(config, base_dir=base, input="Review the changes.")325326if result.status == "succeeded":327 use_output(result.output, result.artifacts, result.telemetry)328else:329 handle_failure(result.status, result.error, result.events) # failed, cancelled, ...330```331332- Treat `status == "succeeded"` as the only success. Other terminal values333 (`failed`, `cancelled`) are unsuccessful, so branch on `status`, not on334 `error`. Read `status`, `error`, and `events` before processing `output`.335- Capture `artifacts` and `telemetry` references as the returned evidence for336 platforms and evaluations. Store and log `runtime_id`, `invocation_id`, and337 `request_id` separately as opaque strings.338- Catch `FabricError` subclasses for lifecycle failures that prevent a339 normalized result: `FabricConfigError`, `FabricCapabilityError`,340 `FabricRuntimeError`, `FabricStateError`, and `FabricNativeUnavailableError`.341- The consumer owns retries and failure policy; NeMo Fabric does not retry by342 default. `run(...)` and `async with` runtimes attempt cleanup automatically,343 so prefer them over manual `stop()` — but shutdown is not guaranteed: `stop()`,344 including the automatic call when an `async with` block exits, can raise345 `FabricRuntimeError`. On a normal exit that error propagates; after an346 invocation error the cleanup failure is attached to the original exception. Be347 ready to handle a shutdown failure.348349Refer to [results-and-errors.md](references/results-and-errors.md) for the full350result-field and error inventory, and351[sdk-api-inventory.md](references/sdk-api-inventory.md) for when to use each352`Fabric` and `Runtime` method.353354## Test And Validate The Integration355356- Write focused integration tests that build the consumer's `FabricConfig`,357 assert `plan(...)` selects the expected adapter and capabilities, and — where358 a harness and credentials are available — run one invocation and assert the359 `RunResult` status and evidence.360- `plan(...)` is credential-free — use it as the CI gate that validates adapter361 selection and capability routing without a model or secrets. `doctor(...)` also362 runs without calling a model, but it checks declared environment requirements363 (such as required API-key variables) and returns `fail` when they are unset, so364 run it where the environment is provisioned and read its per-check results.365- Run the consumer project's own build and test commands. For a source checkout366 of NeMo Fabric, `just build-all` rebuilds the native extension and367 `just test-python` runs the Python suite.368- Confirm the typed config is passed directly to NeMo Fabric and no non-public369 imports were added.370371## Checklist372373- [ ] The consumer config object is translated directly into an in-memory `FabricConfig`.374- [ ] Only public `nemo_fabric` symbols are imported; no `_native` or adapter internals.375- [ ] The consumer config is built in memory and passed directly to NeMo Fabric.376- [ ] The right lifecycle is chosen: `run(...)` for a single invocation,377 `start_runtime(...)` with `async with` for multi-turn,378 `invoke_openai_stream(...)` for descriptor-gated OpenAI chunks, or379 `invoke_stream(...)` for raw NeMo Relay ATOF.380- [ ] `plan(...)` and `doctor(...)` validate adapter selection, capabilities, and environment before execution.381- [ ] Installation, adapter dependencies, and credentials are owned by the environment, not consumer code.382- [ ] `RunResult` status, error, and events are inspected before output; artifacts and telemetry are captured.383- [ ] `FabricError` subclasses are handled, including a `FabricRuntimeError` raised by shutdown; cleanup is delegated to `run(...)` or `async with` (attempted, not guaranteed).384- [ ] Correlation IDs are stored and logged as opaque strings.385- [ ] Focused integration tests pass and NeMo Fabric validation (`plan`/`doctor`, tests) succeeds.386387## Related Documentation388389Link to these canonical sources instead of duplicating them:390391- [Python SDK guide](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/sdk/python.mdx)392- [NeMo Fabric overview](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/about-nemo-fabric/overview.mdx) and393 [installation guide](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/getting-started/install.mdx)394- Generated API reference (public API index; the installed `nemo_fabric` type395 stubs are authoritative for exact signatures, fields, and defaults):396 [client](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/reference/api/python-library-reference/nemo_fabric.client.md),397 [runtime](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/reference/api/python-library-reference/nemo_fabric.runtime.md),398 [native OpenAI streaming](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/reference/api/python-library-reference/nemo_fabric.openai_streaming.md),399 [Relay streaming](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/reference/api/python-library-reference/nemo_fabric.streaming.md),400 [models](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/reference/api/python-library-reference/nemo_fabric.models.md),401 [types](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/reference/api/python-library-reference/nemo_fabric.types.md),402 [errors](https://github.com/NVIDIA/NeMo-Fabric/blob/main/docs/reference/api/python-library-reference/nemo_fabric.errors.md)403- Canonical in-memory config example:404 [examples/code_review_agent](https://github.com/NVIDIA/NeMo-Fabric/tree/main/examples/code_review_agent)405- Platform and evaluation-harness integration:406 [examples/harbor](https://github.com/NVIDIA/NeMo-Fabric/tree/main/examples/harbor) and407 [nemo_fabric.integrations.harbor](https://github.com/NVIDIA/NeMo-Fabric/tree/main/sdk/python/nemo-fabric-runtime/src/nemo_fabric/integrations/harbor).408 Harbor constructs a typed config from explicit agent inputs and transports it409 inside a private transient run specification at the task-process boundary.410 Follow the code-review example for consumer integration code; Harbor's411 transport representation is an internal process-boundary contract.
Run npx skillmds@latest add nvidia/nemo-fabric-integrate in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Use this skill when integrating NVIDIA NeMo Fabric into a consumer application, service, evaluation harness, or platform through the typed Python SDK — translating the consumer's own application, job, or deployment config into an in-memory FabricConfig, choosing the single-invocation convenience API or an explicitly started runtime, validating with plan and doctor, and consuming normalized results, artifacts, and telemetry. It is listed under AI & ML on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Capability flags: makes network calls, reads secrets. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free. This skill is licensed under Apache-2.
NVIDIA (@nvidia) published this skill as a verified publisher. Their other Agent Skills are listed on their SkillMD profile.