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

Uploaded Source

File details

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

File metadata

File hashes

Hashes for nemo_fabric_adapters_common-0.1.0rc6.tar.gz
Algorithm Hash digest
SHA256 c3238f5a75e19d4809f3e57566ca281c66a02c04e16263d5869e77970b47202b
MD5 97d0a914cefd1234bd3c7361434c2149
BLAKE2b-256 72158b176c6fb4c5ebea30a5d2de5146b774169959c3a9a7f99c331f767c4195

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