nvidia-nat-ragaai 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.
Potentially problematic release.
This version of nvidia-nat-ragaai might be problematic. Click here for more details.
- {aiq → nat}/meta/pypi.md +1 -1
- {aiq → nat}/plugins/ragaai/mixin/ragaai_catalyst_mixin.py +1 -1
- {aiq → nat}/plugins/ragaai/ragaai_catalyst_exporter.py +5 -5
- {aiq → nat}/plugins/ragaai/register.py +6 -6
- {nvidia_nat_ragaai-1.2.0rc5.dist-info → nvidia_nat_ragaai-1.2.0rc6.dist-info}/METADATA +4 -4
- nvidia_nat_ragaai-1.2.0rc6.dist-info/RECORD +11 -0
- nvidia_nat_ragaai-1.2.0rc6.dist-info/entry_points.txt +2 -0
- nvidia_nat_ragaai-1.2.0rc6.dist-info/top_level.txt +1 -0
- nvidia_nat_ragaai-1.2.0rc5.dist-info/RECORD +0 -11
- nvidia_nat_ragaai-1.2.0rc5.dist-info/entry_points.txt +0 -2
- nvidia_nat_ragaai-1.2.0rc5.dist-info/top_level.txt +0 -1
- {aiq → nat}/plugins/ragaai/__init__.py +0 -0
- {aiq → nat}/plugins/ragaai/mixin/__init__.py +0 -0
- {nvidia_nat_ragaai-1.2.0rc5.dist-info → nvidia_nat_ragaai-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 RagaAI Catalyst integration for observability.
|
|
@@ -27,7 +27,7 @@ from ragaai_catalyst.tracers.exporters.ragaai_trace_exporter import RAGATraceExp
|
|
|
27
27
|
from ragaai_catalyst.tracers.exporters.ragaai_trace_exporter import TracerJSONEncoder
|
|
28
28
|
from ragaai_catalyst.tracers.utils.trace_json_converter import convert_json_format
|
|
29
29
|
|
|
30
|
-
from
|
|
30
|
+
from nat.plugins.opentelemetry.otel_span import OtelSpan
|
|
31
31
|
|
|
32
32
|
logger = logging.getLogger(__name__)
|
|
33
33
|
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
|
|
16
16
|
import logging
|
|
17
17
|
|
|
18
|
-
from
|
|
19
|
-
from
|
|
20
|
-
from
|
|
18
|
+
from nat.builder.context import ContextState
|
|
19
|
+
from nat.plugins.opentelemetry.otel_span_exporter import OtelSpanExporter
|
|
20
|
+
from nat.plugins.ragaai.mixin.ragaai_catalyst_mixin import RagaAICatalystMixin
|
|
21
21
|
|
|
22
22
|
logger = logging.getLogger(__name__)
|
|
23
23
|
|
|
@@ -29,7 +29,7 @@ class RagaAICatalystExporter(RagaAICatalystMixin, OtelSpanExporter): # pylint:
|
|
|
29
29
|
and analysis of AI agent behavior and performance.
|
|
30
30
|
|
|
31
31
|
Features:
|
|
32
|
-
- Automatic span conversion from
|
|
32
|
+
- Automatic span conversion from NAT events
|
|
33
33
|
- RagaAI Catalyst-specific authentication
|
|
34
34
|
- Project and dataset-based trace organization
|
|
35
35
|
- Integration with custom DynamicTraceExporter for optimal local file control
|
|
@@ -52,7 +52,7 @@ class RagaAICatalystExporter(RagaAICatalystMixin, OtelSpanExporter): # pylint:
|
|
|
52
52
|
"""
|
|
53
53
|
|
|
54
54
|
def __init__(self,
|
|
55
|
-
context_state:
|
|
55
|
+
context_state: ContextState | None = None,
|
|
56
56
|
batch_size: int = 100,
|
|
57
57
|
flush_interval: float = 5.0,
|
|
58
58
|
max_queue_size: int = 1000,
|
|
@@ -17,11 +17,11 @@ import logging
|
|
|
17
17
|
|
|
18
18
|
from pydantic import Field
|
|
19
19
|
|
|
20
|
-
from
|
|
21
|
-
from
|
|
22
|
-
from
|
|
23
|
-
from
|
|
24
|
-
from
|
|
20
|
+
from nat.builder.builder import Builder
|
|
21
|
+
from nat.cli.register_workflow import register_telemetry_exporter
|
|
22
|
+
from nat.data_models.telemetry_exporter import TelemetryExporterBaseConfig
|
|
23
|
+
from nat.observability.mixin.batch_config_mixin import BatchConfigMixin
|
|
24
|
+
from nat.observability.mixin.collector_config_mixin import CollectorConfigMixin
|
|
25
25
|
|
|
26
26
|
logger = logging.getLogger(__name__)
|
|
27
27
|
|
|
@@ -47,7 +47,7 @@ async def catalyst_telemetry_exporter(config: CatalystTelemetryExporter, builder
|
|
|
47
47
|
try:
|
|
48
48
|
import os
|
|
49
49
|
|
|
50
|
-
from
|
|
50
|
+
from nat.plugins.ragaai.ragaai_catalyst_exporter import RagaAICatalystExporter
|
|
51
51
|
|
|
52
52
|
access_key = config.access_key or os.environ.get("CATALYST_ACCESS_KEY")
|
|
53
53
|
secret_key = config.secret_key or os.environ.get("CATALYST_SECRET_KEY")
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nvidia-nat-ragaai
|
|
3
|
-
Version: 1.2.
|
|
4
|
-
Summary: Subpackage for RagaAI Catalyst integration in
|
|
3
|
+
Version: 1.2.0rc6
|
|
4
|
+
Summary: Subpackage for RagaAI Catalyst integration in NeMo Agent toolkit
|
|
5
5
|
Keywords: ai,observability,ragaai catalyst
|
|
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[opentelemetry]
|
|
9
|
+
Requires-Dist: nvidia-nat[opentelemetry]==v1.2.0-rc6
|
|
10
10
|
Requires-Dist: ragaai-catalyst<2.3,>=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 RagaAI Catalyst integration for observability.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
nat/meta/pypi.md,sha256=0pjv0kFWJXwkDfjOfF0atoxFZLL9Anh_mnHVR8PUB0I,1112
|
|
2
|
+
nat/plugins/ragaai/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
3
|
+
nat/plugins/ragaai/ragaai_catalyst_exporter.py,sha256=QIcI3841iXh4iJ_EivxVpWw-HdcKb2yeb6PywOSLA4o,2994
|
|
4
|
+
nat/plugins/ragaai/register.py,sha256=I2qMvLehyM3PgVD6XR4d1r-HgMFogNROb1onfBoXh7M,3786
|
|
5
|
+
nat/plugins/ragaai/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
6
|
+
nat/plugins/ragaai/mixin/ragaai_catalyst_mixin.py,sha256=pON0IXjJBEKlM-DexPmREMs5cgypzB_wJJs8a2P0wSg,10920
|
|
7
|
+
nvidia_nat_ragaai-1.2.0rc6.dist-info/METADATA,sha256=kg_gU1--sYbMhhuu1Ho1zsgqViVat5Zm4mhFqM8GtAg,1503
|
|
8
|
+
nvidia_nat_ragaai-1.2.0rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
+
nvidia_nat_ragaai-1.2.0rc6.dist-info/entry_points.txt,sha256=UhynvDN2vlLQB-hmjrvXnbTSyAe8sUhT2dFb-16Hum8,58
|
|
10
|
+
nvidia_nat_ragaai-1.2.0rc6.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
|
11
|
+
nvidia_nat_ragaai-1.2.0rc6.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nat
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
aiq/meta/pypi.md,sha256=iXOgvEl_QMB_qjj7fzcisG85J-UC1qUtAXln5dDg6u4,1122
|
|
2
|
-
aiq/plugins/ragaai/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
3
|
-
aiq/plugins/ragaai/ragaai_catalyst_exporter.py,sha256=1mblHLAv3bO-6Nlsw-ZmMUp7zq7FMFlfVojSgAvvr7Y,3000
|
|
4
|
-
aiq/plugins/ragaai/register.py,sha256=R4EWLsyub_1uq_6cc7RStO6qQbZKcDenOoemclSLTCY,3786
|
|
5
|
-
aiq/plugins/ragaai/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
6
|
-
aiq/plugins/ragaai/mixin/ragaai_catalyst_mixin.py,sha256=vjIjKItalJD5LPrkbBUPayZwpsjYCyQGKJ1n2QGtJ8I,10920
|
|
7
|
-
nvidia_nat_ragaai-1.2.0rc5.dist-info/METADATA,sha256=1D0-no_QtILVJ3uuxVLwsKJl4eTtqaH8U4i5Vlu8bgA,1498
|
|
8
|
-
nvidia_nat_ragaai-1.2.0rc5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
9
|
-
nvidia_nat_ragaai-1.2.0rc5.dist-info/entry_points.txt,sha256=YwaRUww8SsUuP4SPi5DRcBP3z5fpZ_r_PGddumHNYWs,58
|
|
10
|
-
nvidia_nat_ragaai-1.2.0rc5.dist-info/top_level.txt,sha256=fo7AzYcNhZ_tRWrhGumtxwnxMew4xrT1iwouDy_f0Kc,4
|
|
11
|
-
nvidia_nat_ragaai-1.2.0rc5.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
aiq
|
|
File without changes
|
|
File without changes
|
|
File without changes
|