Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

NVIDIA NeMo Fabric Adapter Utilities

nemo-fabric-adapters-common provides shared Python helpers for NeMo NeMo Fabric adapter implementations. Adapter packages normally install this package as a dependency.

Install the package directly when developing an adapter:

pip install nemo-fabric-adapters-common

Refer to the NeMo Fabric documentation for adapter and configuration guidance. Source code is available in the NVIDIA NeMo Fabric repository.

Persistent Local Hosts

Every local Process or Python adapter implements the ordered persistent-host wire protocol. Python adapters can use nemo_fabric_adapters.common.lifecycle. Supply a factory that creates one adapter-owned runtime with asynchronous start, invoke, and stop methods:

from nemo_fabric_adapters.common import lifecycle


class AdapterRuntime:
    async def start(self, payload):
        self.client = await connect_client(payload)

    async def invoke(self, payload):
        return await self.client.run(payload["request"]["input"])

    async def stop(self):
        await self.client.close()


lifecycle.serve(AdapterRuntime)

NeMo Fabric calls the factory once per local host to create one runtime instance and serializes invocations through that instance. The host keeps one event loop alive for the complete lifecycle so SDK clients, compiled graphs, checkpointers, and harness databases can remain live safely. NeMo Fabric sends the resolved configuration and capability plan during start. Each subsequent invoke wire payload contains only runtime_context and request, and the helper passes that payload to AdapterRuntime.invoke unchanged. An adapter that needs configuration during invocation retains it as runtime-owned state during start. Adapter stdout is reserved for the protocol; diagnostics are redirected to stderr. A host crash or protocol timeout terminates that runtime.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nemo_fabric_adapters_common-0.1.0a20260727.tar.gz (5.8 kB view details)

Uploaded Source

File details

Details for the file nemo_fabric_adapters_common-0.1.0a20260727.tar.gz.

File metadata

File hashes

Hashes for nemo_fabric_adapters_common-0.1.0a20260727.tar.gz
Algorithm Hash digest
SHA256 ec276db24aeb1422c23132be76dce3b36ea662f85028fb70d5710761f9baaf0c
MD5 a852dbd282759b2a59e9f056cd634d2e
BLAKE2b-256 e3d2fb44fe77f2a1a856bd82b3294838ef9c9b1733aabdf1de7c8cca22f6eaa9

See more details on using hashes here.

Release history Release notifications | RSS feed

0.2.0

1 file

0.1.1

1 file

0.1.0

1 file

This release

0.1.0a20260727 This release

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page