Skip to content

Commit 994ffc6

Browse files
Imports register, updates doc string
1 parent c52dfbf commit 994ffc6

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

src/nat/plugins/redis/register.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@
2121

2222
from . import memory
2323
from . import object_store
24-
from nvidia_nat_redis.redis_agent_memory import memory as _ams_memory # noqa: F401
25-
from nvidia_nat_redis.redis_agent_memory.auto_memory import register as _ams_auto # noqa: F401
24+
from nvidia_nat_redis.redis_agent_memory import register as _ams_register # noqa: F401

src/nvidia_nat_redis/redis_agent_memory/register.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"""
55
Load Redis Agent Memory NAT components for entry-point registration.
66
7-
This module is imported by ``nat.plugins.redis.register``, which is the
8-
``nat.components`` entry point target (``nat_redis``). Importing the backend
9-
and wrapper modules runs their NAT registration decorators.
7+
Imported by ``nat.plugins.redis.register``, the ``nat.components`` entry point
8+
target (``nat_redis``). Importing this module runs the NAT registration
9+
decorators for the Redis Agent Memory backend and auto-memory wrapper.
1010
"""
1111

1212
from . import memory as _memory # noqa: F401

0 commit comments

Comments
 (0)