nvidia-nat-mem0ai 1.2.0rc5__py3-none-any.whl → 1.2.0rc6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {aiq → nat}/meta/pypi.md +1 -1
- {aiq → nat}/plugins/mem0ai/mem0_editor.py +3 -3
- {aiq → nat}/plugins/mem0ai/memory.py +6 -6
- {nvidia_nat_mem0ai-1.2.0rc5.dist-info → nvidia_nat_mem0ai-1.2.0rc6.dist-info}/METADATA +4 -4
- nvidia_nat_mem0ai-1.2.0rc6.dist-info/RECORD +10 -0
- nvidia_nat_mem0ai-1.2.0rc6.dist-info/entry_points.txt +2 -0
- nvidia_nat_mem0ai-1.2.0rc6.dist-info/top_level.txt +1 -0
- nvidia_nat_mem0ai-1.2.0rc5.dist-info/RECORD +0 -10
- nvidia_nat_mem0ai-1.2.0rc5.dist-info/entry_points.txt +0 -2
- nvidia_nat_mem0ai-1.2.0rc5.dist-info/top_level.txt +0 -1
- {aiq → nat}/plugins/mem0ai/__init__.py +0 -0
- {aiq → nat}/plugins/mem0ai/register.py +0 -0
- {nvidia_nat_mem0ai-1.2.0rc5.dist-info → nvidia_nat_mem0ai-1.2.0rc6.dist-info}/WHEEL +0 -0
{aiq → nat}/meta/pypi.md
RENAMED
@@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
|
|
15
15
|
limitations under the License.
|
16
16
|
-->
|
17
17
|
|
18
|
-

|
19
19
|
|
20
20
|
# NVIDIA NeMo Agent Toolkit Subpackage
|
21
21
|
This is a subpackage for Mem0 memory integration in NeMo Agent toolkit.
|
@@ -17,13 +17,13 @@ import asyncio
|
|
17
17
|
|
18
18
|
from mem0 import AsyncMemoryClient
|
19
19
|
|
20
|
-
from
|
21
|
-
from
|
20
|
+
from nat.memory.interfaces import MemoryEditor
|
21
|
+
from nat.memory.models import MemoryItem
|
22
22
|
|
23
23
|
|
24
24
|
class Mem0Editor(MemoryEditor):
|
25
25
|
"""
|
26
|
-
Wrapper class that implements
|
26
|
+
Wrapper class that implements NAT interfaces for Mem0 Integrations Async.
|
27
27
|
"""
|
28
28
|
|
29
29
|
def __init__(self, mem0_client: AsyncMemoryClient):
|
@@ -13,11 +13,11 @@
|
|
13
13
|
# See the License for the specific language governing permissions and
|
14
14
|
# limitations under the License.
|
15
15
|
|
16
|
-
from
|
17
|
-
from
|
18
|
-
from
|
19
|
-
from
|
20
|
-
from
|
16
|
+
from nat.builder.builder import Builder
|
17
|
+
from nat.cli.register_workflow import register_memory
|
18
|
+
from nat.data_models.memory import MemoryBaseConfig
|
19
|
+
from nat.data_models.retry_mixin import RetryMixin
|
20
|
+
from nat.utils.exception_handlers.automatic_retries import patch_with_retry
|
21
21
|
|
22
22
|
|
23
23
|
class Mem0MemoryClientConfig(MemoryBaseConfig, RetryMixin, name="mem0_memory"):
|
@@ -34,7 +34,7 @@ async def mem0_memory_client(config: Mem0MemoryClientConfig, builder: Builder):
|
|
34
34
|
|
35
35
|
from mem0 import AsyncMemoryClient
|
36
36
|
|
37
|
-
from
|
37
|
+
from nat.plugins.mem0ai.mem0_editor import Mem0Editor
|
38
38
|
|
39
39
|
mem0_api_key = os.environ.get("MEM0_API_KEY")
|
40
40
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: nvidia-nat-mem0ai
|
3
|
-
Version: 1.2.
|
4
|
-
Summary: Subpackage for Mem0
|
3
|
+
Version: 1.2.0rc6
|
4
|
+
Summary: Subpackage for Mem0 integration in NeMo Agent toolkit
|
5
5
|
Keywords: ai,agents,memory
|
6
6
|
Classifier: Programming Language :: Python
|
7
7
|
Requires-Python: <3.13,>=3.11
|
8
8
|
Description-Content-Type: text/markdown
|
9
|
-
Requires-Dist: nvidia-nat
|
9
|
+
Requires-Dist: nvidia-nat==v1.2.0-rc6
|
10
10
|
Requires-Dist: mem0ai~=0.1.30
|
11
11
|
|
12
12
|
<!--
|
@@ -26,7 +26,7 @@ See the License for the specific language governing permissions and
|
|
26
26
|
limitations under the License.
|
27
27
|
-->
|
28
28
|
|
29
|
-

|
30
30
|
|
31
31
|
# NVIDIA NeMo Agent Toolkit Subpackage
|
32
32
|
This is a subpackage for Mem0 memory integration in NeMo Agent toolkit.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
nat/meta/pypi.md,sha256=7XuJcdD6mLfdsNxAbZP0xBwy66gfptwYqnOoC06xz_8,1112
|
2
|
+
nat/plugins/mem0ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
+
nat/plugins/mem0ai/mem0_editor.py,sha256=8BKaUia8VLW_NRYHQgFKyqX5EAoDTwmlBxck0JhIv7I,3647
|
4
|
+
nat/plugins/mem0ai/memory.py,sha256=-uO0kcuCpAXrRZnzU2dfM5yHm87go4nOhBUZ03i9Qtk,2291
|
5
|
+
nat/plugins/mem0ai/register.py,sha256=_ffKNKnMfkB2HzX4Nk_9EW0pwebg3GuzAE-iB-CoC3E,839
|
6
|
+
nvidia_nat_mem0ai-1.2.0rc6.dist-info/METADATA,sha256=dcjsAc3w48BrlpTbXd5ALESGxaM9TsSMCHDULTVD4xM,1448
|
7
|
+
nvidia_nat_mem0ai-1.2.0rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
8
|
+
nvidia_nat_mem0ai-1.2.0rc6.dist-info/entry_points.txt,sha256=3eEklM2ToRyptUsWn00bINNml1FWTMaEZlNq29G4SjQ,58
|
9
|
+
nvidia_nat_mem0ai-1.2.0rc6.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
10
|
+
nvidia_nat_mem0ai-1.2.0rc6.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
nat
|
@@ -1,10 +0,0 @@
|
|
1
|
-
aiq/meta/pypi.md,sha256=M3fUU11Pxni0woH-GJUeaKcy2lQE3OLNhjDqU-lO244,1123
|
2
|
-
aiq/plugins/mem0ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
aiq/plugins/mem0ai/mem0_editor.py,sha256=IGyUf_ACFK4VYPeLuHAK6-Q3t7Rr9UZaJB9Y4cggxow,3655
|
4
|
-
aiq/plugins/mem0ai/memory.py,sha256=vRf0rVZtUVeuZuN3qBtXALueSoso23ElD3J_yCtHnC8,2291
|
5
|
-
aiq/plugins/mem0ai/register.py,sha256=_ffKNKnMfkB2HzX4Nk_9EW0pwebg3GuzAE-iB-CoC3E,839
|
6
|
-
nvidia_nat_mem0ai-1.2.0rc5.dist-info/METADATA,sha256=LPLkJ5webrzJBrMunhyrkGqJ2nhsxqX3CkhJbEG3Imw,1451
|
7
|
-
nvidia_nat_mem0ai-1.2.0rc5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
8
|
-
nvidia_nat_mem0ai-1.2.0rc5.dist-info/entry_points.txt,sha256=jnLDGbW6Xdx5jucbwBqkrDOTlAewgXZGk6cxqitGjvE,58
|
9
|
-
nvidia_nat_mem0ai-1.2.0rc5.dist-info/top_level.txt,sha256=fo7AzYcNhZ_tRWrhGumtxwnxMew4xrT1iwouDy_f0Kc,4
|
10
|
-
nvidia_nat_mem0ai-1.2.0rc5.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
aiq
|
File without changes
|
File without changes
|
File without changes
|