Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ pip install nvidia-nat
NeMo Agent Toolkit has many optional dependencies which can be installed with the core package. Optional dependencies are grouped by framework and can be installed with the core package. For example, to install the LangChain/LangGraph plugin, run the following:

```bash
pip install nvidia-nat[langchain]
pip install 'nvidia-nat[langchain]'
```

Or for all optional dependencies:

```bash
pip install nvidia-nat[all]
pip install 'nvidia-nat[all]'
```

The full list of optional dependencies can be found [here](./docs/source/quick-start/installing.md#framework-integrations).
Expand Down
2 changes: 1 addition & 1 deletion docs/source/extend/telemetry-exporters.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ class CustomSpanExporter(SpanExporter[Span, dict]):
> **Note**: OpenTelemetry exporters require the `nvidia-nat-opentelemetry` subpackage. Install it with:

> ```bash
> pip install nvidia-nat[opentelemetry]
> pip install 'nvidia-nat[opentelemetry]'
> ```

For most OTLP-compatible services, use the pre-built `OTLPSpanAdapterExporter`:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/quick-start/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ pip install nvidia-nat
NeMo Agent toolkit has many optional dependencies which can be installed with the core package. Optional dependencies are grouped by framework and can be installed with the core package. For example, to install the LangChain/LangGraph plugin, run the following:

```bash
pip install nvidia-nat[langchain]
pip install 'nvidia-nat[langchain]'
```

Or for all optional dependencies:

```bash
pip install nvidia-nat[all]
pip install 'nvidia-nat[all]'
```

The full list of optional dependencies can be found [here](../quick-start/installing.md#framework-integrations).
Expand Down
2 changes: 1 addition & 1 deletion docs/source/workflows/evaluate.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ uv pip install -e '.[profiling]'

If you are installing from a package, you can install the sub-package by running the following command:
```bash
uv pip install nvidia-nat[profiling]
uv pip install 'nvidia-nat[profiling]'
```

## Evaluating a Workflow
Expand Down
2 changes: 1 addition & 1 deletion docs/source/workflows/mcp/mcp-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This guide will cover how to use a NeMo Agent toolkit workflow as a MCP host wit
MCP client functionality requires the `nvidia-nat-mcp` package. Install it with:

```bash
uv pip install nvidia-nat[mcp]
uv pip install 'nvidia-nat[mcp]'
```
## Accessing Protected MCP Servers
NeMo Agent toolkit can access protected MCP servers via the MCP client auth provider. For more information, see the [MCP Authentication](./mcp-auth.md) documentation.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/workflows/profiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ uv pip install -e ".[profiling]"

If you are installing from a package, you need to install the `nvidia-nat[profiling]` package by running the following command:
```bash
uv pip install nvidia-nat[profiling]
uv pip install 'nvidia-nat[profiling]'
```

## Current Profiler Architecture
Expand Down
Loading