Metadata-Version: 2.4
Name: nemo-fabric-adapters-deepagents
Version: 0.2.0a20260813
Summary: LangChain Deep Agents adapter for NeMo Fabric
Author: NVIDIA Corporation
License-Expression: Apache-2.0
Project-URL: Repository, https://github.com/NVIDIA/NeMo-Fabric
Project-URL: Homepage, https://github.com/NVIDIA/NeMo-Fabric
Project-URL: Issues, https://github.com/NVIDIA/NeMo-Fabric/issues
Project-URL: Documentation, https://docs.nvidia.com/nemo/fabric
Keywords: agents,ai,nemo-fabric,runtime,tools
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: nemo-fabric-adapter-contract==0.2.0a20260813
Requires-Dist: nemo-fabric-adapters-common==0.2.0a20260813
Requires-Dist: langchain-mcp-adapters<0.3.0,>=0.1
Requires-Dist: langchain-openai>=0.3
Requires-Dist: langgraph-checkpoint-sqlite<4.0,>=3.0
Provides-Extra: harness
Requires-Dist: deepagents<0.7.0,>=0.6.12; extra == "harness"
Requires-Dist: langchain<2.0,>=1.3; extra == "harness"
Requires-Dist: langgraph<2.0,>=1.2; extra == "harness"
Provides-Extra: relay
Requires-Dist: nemo-relay<0.7,>=0.6.0; extra == "relay"
Provides-Extra: full
Requires-Dist: deepagents<0.7.0,>=0.6.12; extra == "full"
Requires-Dist: langchain<2.0,>=1.3; extra == "full"
Requires-Dist: langgraph<2.0,>=1.2; extra == "full"
Requires-Dist: nemo-relay[deepagents]<0.7,>=0.6.0; extra == "full"
Dynamic: license-file

<!--
SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0
-->

# NVIDIA NeMo Fabric LangChain Deep Agents Adapter

[![License](https://img.shields.io/github/license/NVIDIA/NeMo-Fabric)](https://github.com/NVIDIA/NeMo-Fabric/blob/main/LICENSE)
[![GitHub](https://img.shields.io/badge/github-repo-blue?logo=github)](https://github.com/NVIDIA/NeMo-Fabric/)
[![Release](https://img.shields.io/github/v/release/NVIDIA/NeMo-Fabric?color=green)](https://github.com/NVIDIA/NeMo-Fabric/releases)

![Diagram showing NeMo Fabric connecting applications, evaluations, and reinforcement learning rollouts to Hermes, Codex, Claude, and Deep Agents, with results, artifacts, and telemetry as outputs.](https://raw.githubusercontent.com/NVIDIA/NeMo-Fabric/refs/heads/main/assets/fabric-hero-option2.png)

`nemo-fabric-adapters-deepagents` provides a NeMo Fabric adapter for use with [LangChain Deep Agents](https://www.langchain.com/deep-agents).

## Install

Installation can be performed using the `nemo-fabric` meta package with the `deepagents` extra, or by installing the adapter and harness packages separately. The following table shows which components each installation provides:

| Installation | Runtime | Adapter | Harness | NeMo Relay Python Package |
| --- | --- | --- | --- | --- |
| `pip install "nemo-fabric[deepagents]"` | Yes | Yes | Yes | No |
| `pip install "nemo-fabric[deepagents,relay]"` | Yes | Yes | Yes | Yes |
| `pip install "nemo-fabric-adapters-deepagents[harness]"` | No | Yes | Yes | No |
| `pip install "nemo-fabric-adapters-deepagents[full]"` | No | Yes | Yes | Yes |
| `pip install "nemo-fabric-adapters-deepagents[relay]"` | No | Yes | No | Yes |
| `pip install nemo-fabric-adapters-deepagents` | No | Yes | No | No |

NeMo Relay is optional for ordinary runs. NeMo Relay telemetry and streaming
require one of the installations in the table that includes the NeMo Relay
Python package.

Refer to the [installation guide](https://docs.nvidia.com/nemo/fabric/getting-started/install) for more details.
