nvidia-nat-zep-cloud 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/zep_cloud/memory.py +6 -6
- {aiq → nat}/plugins/zep_cloud/zep_editor.py +3 -3
- {nvidia_nat_zep_cloud-1.2.0rc5.dist-info → nvidia_nat_zep_cloud-1.2.0rc6.dist-info}/METADATA +4 -4
- nvidia_nat_zep_cloud-1.2.0rc6.dist-info/RECORD +10 -0
- nvidia_nat_zep_cloud-1.2.0rc6.dist-info/entry_points.txt +2 -0
- nvidia_nat_zep_cloud-1.2.0rc6.dist-info/top_level.txt +1 -0
- nvidia_nat_zep_cloud-1.2.0rc5.dist-info/RECORD +0 -10
- nvidia_nat_zep_cloud-1.2.0rc5.dist-info/entry_points.txt +0 -2
- nvidia_nat_zep_cloud-1.2.0rc5.dist-info/top_level.txt +0 -1
- {aiq → nat}/plugins/zep_cloud/__init__.py +0 -0
- {aiq → nat}/plugins/zep_cloud/register.py +0 -0
- {nvidia_nat_zep_cloud-1.2.0rc5.dist-info → nvidia_nat_zep_cloud-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 Zep memory integration in NeMo Agent toolkit.
|
@@ -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 ZepMemoryClientConfig(MemoryBaseConfig, RetryMixin, name="zep_memory"):
|
@@ -32,7 +32,7 @@ async def zep_memory_client(config: ZepMemoryClientConfig, builder: Builder):
|
|
32
32
|
|
33
33
|
from zep_cloud.client import AsyncZep
|
34
34
|
|
35
|
-
from
|
35
|
+
from nat.plugins.zep_cloud.zep_editor import ZepEditor
|
36
36
|
|
37
37
|
zep_api_key = os.environ.get("ZEP_API_KEY")
|
38
38
|
|
@@ -20,13 +20,13 @@ import asyncio
|
|
20
20
|
from zep_cloud.client import AsyncZep
|
21
21
|
from zep_cloud.types import Message
|
22
22
|
|
23
|
-
from
|
24
|
-
from
|
23
|
+
from nat.memory.interfaces import MemoryEditor
|
24
|
+
from nat.memory.models import MemoryItem
|
25
25
|
|
26
26
|
|
27
27
|
class ZepEditor(MemoryEditor):
|
28
28
|
"""
|
29
|
-
Wrapper class that implements
|
29
|
+
Wrapper class that implements NAT interfaces for Zep Integrations Async.
|
30
30
|
"""
|
31
31
|
|
32
32
|
def __init__(self, zep_client: AsyncZep):
|
{nvidia_nat_zep_cloud-1.2.0rc5.dist-info → nvidia_nat_zep_cloud-1.2.0rc6.dist-info}/METADATA
RENAMED
@@ -1,12 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: nvidia-nat-zep-cloud
|
3
|
-
Version: 1.2.
|
4
|
-
Summary: Subpackage for Zep
|
3
|
+
Version: 1.2.0rc6
|
4
|
+
Summary: Subpackage for Zep 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: zep-cloud~=2.2.0
|
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 Zep memory integration in NeMo Agent toolkit.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
nat/meta/pypi.md,sha256=BMN_V2SVyWPMymcWAX8PypnNKJphAqckAbCEqGPaN6I,1111
|
2
|
+
nat/plugins/zep_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
+
nat/plugins/zep_cloud/memory.py,sha256=WrRbHBn_bnHdDVa6hThKR5BPl0wSPOJfKXbbR_XOroM,2198
|
4
|
+
nat/plugins/zep_cloud/register.py,sha256=_ffKNKnMfkB2HzX4Nk_9EW0pwebg3GuzAE-iB-CoC3E,839
|
5
|
+
nat/plugins/zep_cloud/zep_editor.py,sha256=JrLS6S956PzR2-Jaheaq2EvDCrlYKDEc5eD1HIdzsWA,3770
|
6
|
+
nvidia_nat_zep_cloud-1.2.0rc6.dist-info/METADATA,sha256=SF9D-Xs9culeekyraM978H-A4cQC8Nx0duJEMEoS82k,1451
|
7
|
+
nvidia_nat_zep_cloud-1.2.0rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
8
|
+
nvidia_nat_zep_cloud-1.2.0rc6.dist-info/entry_points.txt,sha256=r7vO0ft8P0EBtuNO3cm0nYo4FScapvptPjHwtlfnvcA,64
|
9
|
+
nvidia_nat_zep_cloud-1.2.0rc6.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
10
|
+
nvidia_nat_zep_cloud-1.2.0rc6.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
nat
|
@@ -1,10 +0,0 @@
|
|
1
|
-
aiq/meta/pypi.md,sha256=bh9TTiHSPNNOzkKfGrNh2PA6eHio64cBHsV4gSfFJ1k,1122
|
2
|
-
aiq/plugins/zep_cloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
aiq/plugins/zep_cloud/memory.py,sha256=QCRFPIp09yamIfDIU0X18an20AaEFNLQ2At6Wrd3XQE,2198
|
4
|
-
aiq/plugins/zep_cloud/register.py,sha256=_ffKNKnMfkB2HzX4Nk_9EW0pwebg3GuzAE-iB-CoC3E,839
|
5
|
-
aiq/plugins/zep_cloud/zep_editor.py,sha256=n8CzRcN6FupQ4gJT6hB7o6-cGnAL3OP3mI2IiUfdvOA,3778
|
6
|
-
nvidia_nat_zep_cloud-1.2.0rc5.dist-info/METADATA,sha256=EPuSR2pnzKM1nRRLs1NsNLYiEmHmevHV1EAd_VSDtf8,1454
|
7
|
-
nvidia_nat_zep_cloud-1.2.0rc5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
8
|
-
nvidia_nat_zep_cloud-1.2.0rc5.dist-info/entry_points.txt,sha256=4YncaCW2G71ZTzahBnUuvTEhIbz9adjbPXC2waBqZ0Q,64
|
9
|
-
nvidia_nat_zep_cloud-1.2.0rc5.dist-info/top_level.txt,sha256=fo7AzYcNhZ_tRWrhGumtxwnxMew4xrT1iwouDy_f0Kc,4
|
10
|
-
nvidia_nat_zep_cloud-1.2.0rc5.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
aiq
|
File without changes
|
File without changes
|
File without changes
|