Skip to content

Commit c52dfbf

Browse files
corrects version call and updates doc string
1 parent ff5c6b0 commit c52dfbf

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/nvidia_nat_redis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
from importlib.metadata import PackageNotFoundError, version
77

88
try:
9-
__version__ = version("nvidia-nat-redis")
9+
__version__ = version("nemo-agent-toolkit-redis")
1010
except PackageNotFoundError: # pragma: no cover - source-tree usage before installation
1111
__version__ = "0.0.0"

src/nvidia_nat_redis/redis_agent_memory/register.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"""
55
Load Redis Agent Memory NAT components for entry-point registration.
66
7-
The ``nat.components`` entry point targets this module. Importing the backend
7+
This module is imported by ``nat.plugins.redis.register``, which is the
8+
``nat.components`` entry point target (``nat_redis``). Importing the backend
89
and wrapper modules runs their NAT registration decorators.
910
"""
1011

0 commit comments

Comments
 (0)