> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keenable.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# NVIDIA NeMo Agent Toolkit

> A Keenable function group (keenable__search, keenable__fetch) for the NVIDIA NeMo Agent Toolkit.

*Function group*

A Keenable function group (`keenable__search`, `keenable__fetch`) for the NVIDIA NeMo Agent Toolkit.

→ [nemo-agent-toolkit-keenable on PyPI](https://pypi.org/project/nemo-agent-toolkit-keenable/)

## Install

### Install

```bash theme={"dark"}
pip install nemo-agent-toolkit-keenable
```

### Enable it in your workflow config

The keenable function group auto-registers via an entry point. Enable it and pick the tools to expose:

```yaml theme={"dark"}
function_groups:
  keenable:
    _type: keenable          # reads api_key, or KEENABLE_API_KEY from the environment
    include: [search, fetch]
```

<Note>
  Set `KEENABLE_API_KEY` or `api_key` to authenticate — this removes the hourly request cap. Without a key, calls run on the shared public tier at [lower rate limits](/rate-limits).
</Note>
