You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,10 +49,25 @@ Toolkit. The setuptools entry point **`nat_redis`** loads
49
49
50
50
## Install
51
51
52
+
With `uv`:
53
+
54
+
```bash
55
+
uv add nemo-agent-toolkit-redis
56
+
```
57
+
58
+
With `pip`:
59
+
52
60
```bash
53
61
pip install nemo-agent-toolkit-redis
54
62
```
55
63
64
+
Install the package into the same Python environment as `nvidia-nat-core`. After
65
+
installation, confirm NAT can discover the Redis plugin:
66
+
67
+
```bash
68
+
uv run nat info components
69
+
```
70
+
56
71
For local development in this repo:
57
72
58
73
```bash
@@ -61,6 +76,12 @@ cd nvidia-nat-redis
61
76
uv sync --group dev --extra test
62
77
```
63
78
79
+
## Compatibility
80
+
81
+
This package supports NeMo Agent Toolkit `>=1.6.0,<2.0.0` and Python
82
+
`>=3.11,<3.14`. Compatibility is checked in CI against supported NAT minor
83
+
versions.
84
+
64
85
## Choose A Surface
65
86
66
87
- Use `_type: redis_agent_memory_backend` when your workflow already uses NAT memory tools and you want Redis Agent Memory behind the standard `MemoryEditor` contract.
@@ -154,3 +175,17 @@ The example Compose files are intended for local development. They bind Redis
154
175
and AMS to `127.0.0.1` and run AMS with auth disabled.
0 commit comments