nvidia-nat-ragaai 1.4.0a20251124__py3-none-any.whl → 1.4.0a20260109__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.
- nat/meta/pypi.md +1 -1
- nat/plugins/ragaai/__init__.py +1 -1
- nat/plugins/ragaai/mixin/__init__.py +1 -1
- nat/plugins/ragaai/mixin/ragaai_catalyst_mixin.py +1 -1
- nat/plugins/ragaai/ragaai_catalyst_exporter.py +1 -1
- nat/plugins/ragaai/register.py +5 -3
- {nvidia_nat_ragaai-1.4.0a20251124.dist-info → nvidia_nat_ragaai-1.4.0a20260109.dist-info}/METADATA +3 -3
- nvidia_nat_ragaai-1.4.0a20260109.dist-info/RECORD +13 -0
- nvidia_nat_ragaai-1.4.0a20251124.dist-info/RECORD +0 -13
- {nvidia_nat_ragaai-1.4.0a20251124.dist-info → nvidia_nat_ragaai-1.4.0a20260109.dist-info}/WHEEL +0 -0
- {nvidia_nat_ragaai-1.4.0a20251124.dist-info → nvidia_nat_ragaai-1.4.0a20260109.dist-info}/entry_points.txt +0 -0
- {nvidia_nat_ragaai-1.4.0a20251124.dist-info → nvidia_nat_ragaai-1.4.0a20260109.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {nvidia_nat_ragaai-1.4.0a20251124.dist-info → nvidia_nat_ragaai-1.4.0a20260109.dist-info}/licenses/LICENSE.md +0 -0
- {nvidia_nat_ragaai-1.4.0a20251124.dist-info → nvidia_nat_ragaai-1.4.0a20260109.dist-info}/top_level.txt +0 -0
nat/meta/pypi.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!--
|
|
2
|
-
SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
2
|
+
SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
3
3
|
SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
|
|
5
5
|
Licensed under the Apache License, Version 2.0 (the "License");
|
nat/plugins/ragaai/__init__.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText: Copyright (c) 2024-
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
2
2
|
# SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText: Copyright (c) 2024-
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
2
2
|
# SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText: Copyright (c) 2024-
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
2
2
|
# SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
2
2
|
# SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
nat/plugins/ragaai/register.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
2
2
|
# SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -31,8 +31,10 @@ logger = logging.getLogger(__name__)
|
|
|
31
31
|
class CatalystTelemetryExporter(BatchConfigMixin, CollectorConfigMixin, TelemetryExporterBaseConfig, name="catalyst"):
|
|
32
32
|
"""A telemetry exporter to transmit traces to RagaAI catalyst."""
|
|
33
33
|
endpoint: str = Field(description="The RagaAI Catalyst endpoint", default="https://catalyst.raga.ai/api")
|
|
34
|
-
access_key: SerializableSecretStr = Field(description="The RagaAI Catalyst API access key",
|
|
35
|
-
|
|
34
|
+
access_key: SerializableSecretStr = Field(description="The RagaAI Catalyst API access key",
|
|
35
|
+
default_factory=lambda: SerializableSecretStr(""))
|
|
36
|
+
secret_key: SerializableSecretStr = Field(description="The RagaAI Catalyst API secret key",
|
|
37
|
+
default_factory=lambda: SerializableSecretStr(""))
|
|
36
38
|
dataset: str | None = Field(description="The RagaAI Catalyst dataset name", default=None)
|
|
37
39
|
tracer_type: str = Field(description="The RagaAI Catalyst tracer type", default="agentic/nemo-framework")
|
|
38
40
|
|
{nvidia_nat_ragaai-1.4.0a20251124.dist-info → nvidia_nat_ragaai-1.4.0a20260109.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nvidia-nat-ragaai
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.0a20260109
|
|
4
4
|
Summary: Subpackage for RagaAI Catalyst integration in NeMo Agent toolkit
|
|
5
5
|
Author: NVIDIA Corporation
|
|
6
6
|
Maintainer: NVIDIA Corporation
|
|
@@ -16,12 +16,12 @@ Requires-Python: <3.14,>=3.11
|
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE-3rd-party.txt
|
|
18
18
|
License-File: LICENSE.md
|
|
19
|
-
Requires-Dist: nvidia-nat[litellm,opentelemetry]==v1.4.
|
|
19
|
+
Requires-Dist: nvidia-nat[litellm,opentelemetry]==v1.4.0a20260109
|
|
20
20
|
Requires-Dist: ragaai-catalyst<2.3,>=2.2.0
|
|
21
21
|
Dynamic: license-file
|
|
22
22
|
|
|
23
23
|
<!--
|
|
24
|
-
SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
24
|
+
SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
25
25
|
SPDX-License-Identifier: Apache-2.0
|
|
26
26
|
|
|
27
27
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
nat/meta/pypi.md,sha256=eb80A0vOoLaEQIXTbgPwQhPfr6x9K2gnzNJ1RNffNM4,1117
|
|
2
|
+
nat/plugins/ragaai/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
|
|
3
|
+
nat/plugins/ragaai/ragaai_catalyst_exporter.py,sha256=rAoxhF69pfL6tuPP_sEquEk1DN6OIyah_0E33RzBeNg,2963
|
|
4
|
+
nat/plugins/ragaai/register.py,sha256=cxkhAAqeVOJXactLlSHQl_mt-HMFQxQSfBDuvSIkZdo,4163
|
|
5
|
+
nat/plugins/ragaai/mixin/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
|
|
6
|
+
nat/plugins/ragaai/mixin/ragaai_catalyst_mixin.py,sha256=IMcfRrpWzLXa3OxQdlZH-xPChmE1pjMMFEI7B5vwdmU,11331
|
|
7
|
+
nvidia_nat_ragaai-1.4.0a20260109.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
8
|
+
nvidia_nat_ragaai-1.4.0a20260109.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
9
|
+
nvidia_nat_ragaai-1.4.0a20260109.dist-info/METADATA,sha256=29zWcmzVPn5HltOu7dSYHB1FXHG9uhqMc1Kp7B5uAzo,1986
|
|
10
|
+
nvidia_nat_ragaai-1.4.0a20260109.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
11
|
+
nvidia_nat_ragaai-1.4.0a20260109.dist-info/entry_points.txt,sha256=UhynvDN2vlLQB-hmjrvXnbTSyAe8sUhT2dFb-16Hum8,58
|
|
12
|
+
nvidia_nat_ragaai-1.4.0a20260109.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
|
13
|
+
nvidia_nat_ragaai-1.4.0a20260109.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
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=6ycaprMCTbPgzzdEMYu3FsnvePj4BjwBN3Pu1mGbYF4,2958
|
|
4
|
-
nat/plugins/ragaai/register.py,sha256=0-Lgxx6rQF3Bp0JCsj2R3nxf1qTr5caBD4PEC5GM-6Q,3988
|
|
5
|
-
nat/plugins/ragaai/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
6
|
-
nat/plugins/ragaai/mixin/ragaai_catalyst_mixin.py,sha256=4XXlfInqMon6RdqizXKtjGedjqimvpxmNaAXX6fKBoc,11331
|
|
7
|
-
nvidia_nat_ragaai-1.4.0a20251124.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
8
|
-
nvidia_nat_ragaai-1.4.0a20251124.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
9
|
-
nvidia_nat_ragaai-1.4.0a20251124.dist-info/METADATA,sha256=_RQUI5jtke2Sea799859Eu3RwwY0cSlYjU3efhu6tCs,1981
|
|
10
|
-
nvidia_nat_ragaai-1.4.0a20251124.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
11
|
-
nvidia_nat_ragaai-1.4.0a20251124.dist-info/entry_points.txt,sha256=UhynvDN2vlLQB-hmjrvXnbTSyAe8sUhT2dFb-16Hum8,58
|
|
12
|
-
nvidia_nat_ragaai-1.4.0a20251124.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
|
13
|
-
nvidia_nat_ragaai-1.4.0a20251124.dist-info/RECORD,,
|
{nvidia_nat_ragaai-1.4.0a20251124.dist-info → nvidia_nat_ragaai-1.4.0a20260109.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|