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.0rc5.tar.gz (5.5 kB view details)

Uploaded Source

File details

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

File metadata

File hashes

Hashes for nemo_fabric_adapters_common-0.1.0rc5.tar.gz
Algorithm Hash digest
SHA256 5f55371f98ded58d6eb2ded0f1cccae8bb809132b3308e5e140a83f8b076f1a3
MD5 07adccaba70f77d7d6fca47e29ff2224
BLAKE2b-256 8c3c758369d92f30a8058b6aa1e946392aa1be821a6da5dcdb6ba44debd1c122

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.0rc5 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