nvidia-nat 1.3a20250819__py3-none-any.whl → 1.3.0.dev2__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/__init__.py +66 -0
- nat/agent/base.py +17 -0
- nat/agent/react_agent/agent.py +17 -10
- nat/agent/react_agent/prompt.py +4 -1
- nat/agent/rewoo_agent/agent.py +6 -2
- nat/agent/rewoo_agent/prompt.py +3 -0
- nat/agent/rewoo_agent/register.py +3 -2
- nat/agent/tool_calling_agent/agent.py +92 -21
- nat/agent/tool_calling_agent/register.py +8 -12
- nat/cli/type_registry.py +4 -4
- nat/embedder/azure_openai_embedder.py +46 -0
- nat/embedder/openai_embedder.py +1 -2
- nat/embedder/register.py +1 -0
- nat/llm/azure_openai_llm.py +50 -0
- nat/llm/register.py +1 -0
- nat/meta/pypi.md +9 -9
- nat/object_store/models.py +2 -0
- nat/profiler/callbacks/langchain_callback_handler.py +8 -1
- {nvidia_nat-1.3a20250819.dist-info → nvidia_nat-1.3.0.dev2.dist-info}/METADATA +17 -15
- {nvidia_nat-1.3a20250819.dist-info → nvidia_nat-1.3.0.dev2.dist-info}/RECORD +25 -22
- nvidia_nat-1.3.0.dev2.dist-info/licenses/LICENSE-3rd-party.txt +5478 -0
- {nvidia_nat-1.3a20250819.dist-info → nvidia_nat-1.3.0.dev2.dist-info}/top_level.txt +1 -0
- nvidia_nat-1.3a20250819.dist-info/licenses/LICENSE-3rd-party.txt +0 -3686
- {nvidia_nat-1.3a20250819.dist-info → nvidia_nat-1.3.0.dev2.dist-info}/WHEEL +0 -0
- {nvidia_nat-1.3a20250819.dist-info → nvidia_nat-1.3.0.dev2.dist-info}/entry_points.txt +0 -0
- {nvidia_nat-1.3a20250819.dist-info → nvidia_nat-1.3.0.dev2.dist-info}/licenses/LICENSE.md +0 -0
nat/object_store/models.py
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
|
|
16
16
|
from pydantic import BaseModel
|
|
17
|
+
from pydantic import ConfigDict
|
|
17
18
|
from pydantic import Field
|
|
18
19
|
|
|
19
20
|
|
|
@@ -30,6 +31,7 @@ class ObjectStoreItem(BaseModel):
|
|
|
30
31
|
metadata : dict[str, str] | None
|
|
31
32
|
Metadata providing context and utility for management operations.
|
|
32
33
|
"""
|
|
34
|
+
model_config = ConfigDict(ser_json_bytes="base64", val_json_bytes="base64")
|
|
33
35
|
|
|
34
36
|
data: bytes = Field(description="The data to store in the object store.")
|
|
35
37
|
content_type: str | None = Field(description="The content type of the data.", default=None)
|
|
@@ -223,7 +223,14 @@ class LangchainProfilerHandler(AsyncCallbackHandler, BaseProfilerCallback): # p
|
|
|
223
223
|
except AttributeError:
|
|
224
224
|
usage_metadata = {}
|
|
225
225
|
|
|
226
|
-
|
|
226
|
+
if generation:
|
|
227
|
+
llm_text_output = generation.message.content
|
|
228
|
+
if "tool_calls" in generation.message.additional_kwargs:
|
|
229
|
+
# add tool calls if included in the output
|
|
230
|
+
tool_calls = generation.message.additional_kwargs['tool_calls']
|
|
231
|
+
llm_text_output = f"{llm_text_output}\n\nTool calls: {tool_calls}"
|
|
232
|
+
else:
|
|
233
|
+
llm_text_output = ""
|
|
227
234
|
|
|
228
235
|
# update shared state behind lock
|
|
229
236
|
with self._lock:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nvidia-nat
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0.dev2
|
|
4
4
|
Summary: NVIDIA NeMo Agent toolkit
|
|
5
5
|
Author: NVIDIA Corporation
|
|
6
6
|
Maintainer: NVIDIA Corporation
|
|
@@ -237,12 +237,14 @@ Requires-Dist: rich~=13.9
|
|
|
237
237
|
Requires-Dist: tabulate~=0.9
|
|
238
238
|
Requires-Dist: uvicorn[standard]~=0.32.0
|
|
239
239
|
Requires-Dist: wikipedia~=1.4
|
|
240
|
+
Provides-Extra: all
|
|
241
|
+
Requires-Dist: nvidia-nat-all; extra == "all"
|
|
240
242
|
Provides-Extra: agno
|
|
241
243
|
Requires-Dist: nvidia-nat-agno; extra == "agno"
|
|
242
244
|
Provides-Extra: crewai
|
|
243
245
|
Requires-Dist: nvidia-nat-crewai; extra == "crewai"
|
|
244
246
|
Provides-Extra: ingestion
|
|
245
|
-
Requires-Dist:
|
|
247
|
+
Requires-Dist: nvidia-nat-ingestion; extra == "ingestion"
|
|
246
248
|
Provides-Extra: langchain
|
|
247
249
|
Requires-Dist: nvidia-nat-langchain; extra == "langchain"
|
|
248
250
|
Provides-Extra: llama-index
|
|
@@ -253,6 +255,8 @@ Provides-Extra: opentelemetry
|
|
|
253
255
|
Requires-Dist: nvidia-nat-opentelemetry; extra == "opentelemetry"
|
|
254
256
|
Provides-Extra: phoenix
|
|
255
257
|
Requires-Dist: nvidia-nat-phoenix; extra == "phoenix"
|
|
258
|
+
Provides-Extra: profiling
|
|
259
|
+
Requires-Dist: nvidia-nat-profiling; extra == "profiling"
|
|
256
260
|
Provides-Extra: ragaai
|
|
257
261
|
Requires-Dist: nvidia-nat-ragaai; extra == "ragaai"
|
|
258
262
|
Provides-Extra: mysql
|
|
@@ -278,10 +282,12 @@ Requires-Dist: nat_alert_triage_agent; extra == "examples"
|
|
|
278
282
|
Requires-Dist: nat_automated_description_generation; extra == "examples"
|
|
279
283
|
Requires-Dist: nat_email_phishing_analyzer; extra == "examples"
|
|
280
284
|
Requires-Dist: nat_multi_frameworks; extra == "examples"
|
|
285
|
+
Requires-Dist: nat_first_search_agent; extra == "examples"
|
|
281
286
|
Requires-Dist: nat_plot_charts; extra == "examples"
|
|
282
287
|
Requires-Dist: nat_por_to_jiratickets; extra == "examples"
|
|
283
288
|
Requires-Dist: nat_profiler_agent; extra == "examples"
|
|
284
289
|
Requires-Dist: nat_redact_pii; extra == "examples"
|
|
290
|
+
Requires-Dist: nat_retail_sales_agent; extra == "examples"
|
|
285
291
|
Requires-Dist: nat_semantic_kernel_demo; extra == "examples"
|
|
286
292
|
Requires-Dist: nat_simple_auth; extra == "examples"
|
|
287
293
|
Requires-Dist: nat_simple_web_query; extra == "examples"
|
|
@@ -295,10 +301,6 @@ Requires-Dist: nat_simple_calculator_hitl; extra == "examples"
|
|
|
295
301
|
Requires-Dist: nat_simple_rag; extra == "examples"
|
|
296
302
|
Requires-Dist: nat_swe_bench; extra == "examples"
|
|
297
303
|
Requires-Dist: nat_user_report; extra == "examples"
|
|
298
|
-
Provides-Extra: profiling
|
|
299
|
-
Requires-Dist: matplotlib~=3.9; extra == "profiling"
|
|
300
|
-
Requires-Dist: prefixspan~=0.5.2; extra == "profiling"
|
|
301
|
-
Requires-Dist: scikit-learn~=1.6; extra == "profiling"
|
|
302
304
|
Provides-Extra: gunicorn
|
|
303
305
|
Requires-Dist: gunicorn~=23.0; extra == "gunicorn"
|
|
304
306
|
Dynamic: license-file
|
|
@@ -328,19 +330,19 @@ NeMo Agent toolkit is a flexible library designed to seamlessly integrate your e
|
|
|
328
330
|
|
|
329
331
|
## Key Features
|
|
330
332
|
|
|
331
|
-
- [**Framework Agnostic:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2
|
|
332
|
-
- [**Reusability:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2
|
|
333
|
-
- [**Rapid Development:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2
|
|
334
|
-
- [**Profiling:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2
|
|
335
|
-
- [**Observability:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2
|
|
336
|
-
- [**Evaluation System:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2
|
|
337
|
-
- [**User Interface:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2
|
|
338
|
-
- [**MCP Compatibility**](https://docs.nvidia.com/nemo/agent-toolkit/1.2
|
|
333
|
+
- [**Framework Agnostic:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2/extend/plugins.html) Works with any agentic framework, so you can use your current technology stack without replatforming.
|
|
334
|
+
- [**Reusability:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2/extend/sharing-components.html) Every agent, tool, or workflow can be combined and repurposed, allowing developers to leverage existing work in new scenarios.
|
|
335
|
+
- [**Rapid Development:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2/tutorials/index.html) Start with a pre-built agent, tool, or workflow, and customize it to your needs.
|
|
336
|
+
- [**Profiling:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2/workflows/profiler.html) Profile entire workflows down to the tool and agent level, track input/output tokens and timings, and identify bottlenecks.
|
|
337
|
+
- [**Observability:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2/workflows/observe/observe-workflow-with-phoenix.html) Monitor and debug your workflows with any OpenTelemetry-compatible observability tool, with examples using [Phoenix](https://docs.nvidia.com/nemo/agent-toolkit/1.2/workflows/observe/observe-workflow-with-phoenix.html) and [W&B Weave](https://docs.nvidia.com/nemo/agent-toolkit/1.2/workflows/observe/observe-workflow-with-weave.html).
|
|
338
|
+
- [**Evaluation System:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2/workflows/evaluate.html) Validate and maintain accuracy of agentic workflows with built-in evaluation tools.
|
|
339
|
+
- [**User Interface:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2/quick-start/launching-ui.html) Use the NeMo Agent toolkit UI chat interface to interact with your agents, visualize output, and debug workflows.
|
|
340
|
+
- [**MCP Compatibility**](https://docs.nvidia.com/nemo/agent-toolkit/1.2/workflows/mcp/mcp-client.html) Compatible with Model Context Protocol (MCP), allowing tools served by MCP Servers to be used as NeMo Agent toolkit functions.
|
|
339
341
|
|
|
340
342
|
With NeMo Agent toolkit, you can move quickly, experiment freely, and ensure reliability across all your agent-driven projects.
|
|
341
343
|
|
|
342
344
|
## Links
|
|
343
|
-
* [Documentation](https://docs.nvidia.com/nemo/agent-toolkit/1.2
|
|
345
|
+
* [Documentation](https://docs.nvidia.com/nemo/agent-toolkit/1.2/index.html): Explore the full documentation for NeMo Agent toolkit.
|
|
344
346
|
|
|
345
347
|
## First time user?
|
|
346
348
|
If this is your first time using NeMo Agent toolkit, it is recommended to install the latest version from the [source repository](https://github.com/NVIDIA/NeMo-Agent-Toolkit?tab=readme-ov-file#quick-start) on GitHub. This package is intended for users who are familiar with NeMo Agent toolkit applications and need to add NeMo Agent toolkit as a dependency to their project.
|
|
@@ -1,21 +1,22 @@
|
|
|
1
|
+
aiq/__init__.py,sha256=E9vuQX0dCZIALhOg360sRLO53f6NXPgMTv3X1sh8WAM,2376
|
|
1
2
|
nat/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
nat/agent/base.py,sha256=
|
|
3
|
+
nat/agent/base.py,sha256=DVSUq1VBhrgeTxnDgcESMFcJlEhnBa3PU9I1Rl5t3B8,9602
|
|
3
4
|
nat/agent/dual_node.py,sha256=EOYpYzhaY-m1t2W3eiQrBjSfNjYMDttAwtzEEEcYP4s,2353
|
|
4
5
|
nat/agent/register.py,sha256=EATlFFl7ov5HNGySLcPv1T7jzV-Jy-jPVkUzSXDT-7s,1005
|
|
5
6
|
nat/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
nat/agent/react_agent/agent.py,sha256=
|
|
7
|
+
nat/agent/react_agent/agent.py,sha256=taQxlR5JnqpqBhF_SyhLD4XQig60yIHc6Z7EQqeZjzo,19730
|
|
7
8
|
nat/agent/react_agent/output_parser.py,sha256=m7K6wRwtckBBpAHqOf3BZ9mqZLwrP13Kxz5fvNxbyZE,4219
|
|
8
|
-
nat/agent/react_agent/prompt.py,sha256=
|
|
9
|
+
nat/agent/react_agent/prompt.py,sha256=N47JJrT6xwYQCv1jedHhlul2AE7EfKsSYfAbgJwWRew,1758
|
|
9
10
|
nat/agent/react_agent/register.py,sha256=g3xkVWqr1p26Gjk4OJF_kolV6WBtS5GJkLvFHG7e7-I,8099
|
|
10
11
|
nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
12
|
nat/agent/reasoning_agent/reasoning_agent.py,sha256=2NDDHeesM2s2PnJfRsv2OTYjeajR1rYUVDvJZLzWGAQ,9434
|
|
12
13
|
nat/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
nat/agent/rewoo_agent/agent.py,sha256=
|
|
14
|
-
nat/agent/rewoo_agent/prompt.py,sha256=
|
|
15
|
-
nat/agent/rewoo_agent/register.py,sha256=
|
|
14
|
+
nat/agent/rewoo_agent/agent.py,sha256=MEyBaFjxWaTwAtaKHNwHR0q4fR_-SpO85U_6d2kGZUg,19296
|
|
15
|
+
nat/agent/rewoo_agent/prompt.py,sha256=nFMav3Zl_vmKPLzAIhbQHlldWnurPJb1GlwnekUuxDs,3720
|
|
16
|
+
nat/agent/rewoo_agent/register.py,sha256=v04nBg6608HoQL1lxuOSZjX1gr2DpscjyQwMCRWF94Y,8432
|
|
16
17
|
nat/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
nat/agent/tool_calling_agent/agent.py,sha256=
|
|
18
|
-
nat/agent/tool_calling_agent/register.py,sha256=
|
|
18
|
+
nat/agent/tool_calling_agent/agent.py,sha256=oFagfoSrxQXgPYncbdDIk4wlSQ3vkaWqwHoXxJxQmmo,7741
|
|
19
|
+
nat/agent/tool_calling_agent/register.py,sha256=zyDfWqwZNsz7h4EM2J-y_9eedhSTJmU5mqAqTTCx0Kg,5524
|
|
19
20
|
nat/authentication/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
20
21
|
nat/authentication/interfaces.py,sha256=FAYM-QXVUn3a_8bmAZ7kP-lmN_BrLW8mo6krZJ3e0ME,3314
|
|
21
22
|
nat/authentication/register.py,sha256=4-HP_f6wzTloTth7SEyJMRjnoYqTL22W7AQUoNVIKKU,947
|
|
@@ -54,7 +55,7 @@ nat/cli/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
|
54
55
|
nat/cli/entrypoint.py,sha256=Nip28QDI84h4vlsVsBBvD7CAdchSdVRLz4UkT2CerqY,4831
|
|
55
56
|
nat/cli/main.py,sha256=KzUSDB1TGzHRP_Fnq5XJRopx-i9S2oycgQrXrf2vDkE,2164
|
|
56
57
|
nat/cli/register_workflow.py,sha256=AUTPSNo5xXRIOR8u91HEMHJZ_W0pQKak9KR7mvi1Brc,21804
|
|
57
|
-
nat/cli/type_registry.py,sha256=
|
|
58
|
+
nat/cli/type_registry.py,sha256=7IRPDjDT7bqoY-56s8LUL5qcoMGsHPCehZ0LdMViP-M,45888
|
|
58
59
|
nat/cli/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
60
|
nat/cli/cli_utils/config_override.py,sha256=37GcZm9NnSCyw_OuOv55CXC9EI4pqD_unVOHX3_DQSM,8919
|
|
60
61
|
nat/cli/cli_utils/validation.py,sha256=KVZvAkWZx-QVVBuCFTcH2muLzMB7ONQA1GE2TzEVN78,1288
|
|
@@ -125,9 +126,10 @@ nat/data_models/swe_bench_model.py,sha256=dmgU1M-lL7bUO3gD7wkeDkffPf65cxF1ijgELk
|
|
|
125
126
|
nat/data_models/telemetry_exporter.py,sha256=P7kqxIQnFVuvo_UFpH9QSB8fACy_0U2Uzkw_IfWXagE,998
|
|
126
127
|
nat/data_models/ttc_strategy.py,sha256=tAkKWcyEBmBOOYtHMtQTgeCbHxFTk5SEkmFunNVnfyE,1114
|
|
127
128
|
nat/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
+
nat/embedder/azure_openai_embedder.py,sha256=8OM54DCVCmWuQ8eZ5lXxsKYQktRmHMoIelRHZmKurUk,2381
|
|
128
130
|
nat/embedder/nim_embedder.py,sha256=cB2ttl2FwKW_OcIzIHswu8twcBYlc9tM9D0wAWjKc1A,2517
|
|
129
|
-
nat/embedder/openai_embedder.py,sha256=
|
|
130
|
-
nat/embedder/register.py,sha256=
|
|
131
|
+
nat/embedder/openai_embedder.py,sha256=uxyEe_2R02RPvEDGdzO9HUNaekm0MVRxJPCPB5-CS2A,1922
|
|
132
|
+
nat/embedder/register.py,sha256=gMrU94UR5Ae05gbELvVfmk7HYfbgVcwYjwb5sY1UH6o,915
|
|
131
133
|
nat/eval/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
132
134
|
nat/eval/config.py,sha256=c_lSMgmIjKO7l-5JBbMVdnBfnWhAzM7IRQFDjCoFEo0,2271
|
|
133
135
|
nat/eval/evaluate.py,sha256=yrTsHLMHJyKQmLMybzQ7WjkVb4XLDHeWRqLwcKSUpn4,23650
|
|
@@ -235,20 +237,21 @@ nat/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48j
|
|
|
235
237
|
nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=3kevZVhvzj_Wvu8HYhRz-CRrO2OldW6wcmtcsIQCELk,1765
|
|
236
238
|
nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
237
239
|
nat/llm/aws_bedrock_llm.py,sha256=W46l-8a2ls-BuQR7nP_1iB72Flb7lTh6g4jal9acwDE,2836
|
|
240
|
+
nat/llm/azure_openai_llm.py,sha256=hdOChBz2j58fMqLow7UfwbtBSqsu_MUiHQABwVMO7WM,2660
|
|
238
241
|
nat/llm/nim_llm.py,sha256=zUAIYj-Wn0xwHUoi9broq4-XKK1QyUsr1fDbLWoMihg,2179
|
|
239
242
|
nat/llm/openai_llm.py,sha256=BsfUuFnJ8XW9e_BIuda4B0SbHHd5DGSXhlyJg9VIhcw,2230
|
|
240
|
-
nat/llm/register.py,sha256=
|
|
243
|
+
nat/llm/register.py,sha256=4qDP_w2hDoTeLXpPDuIulE-R0Qt2y-_cGVqFtAveYGY,930
|
|
241
244
|
nat/llm/utils/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
242
245
|
nat/llm/utils/env_config_value.py,sha256=SBpppIRszDXNcEEG2L6kVojY7LH_EpHfK7bu92TGrE4,3568
|
|
243
246
|
nat/llm/utils/error.py,sha256=gFFDG_v_3hBZVWpcD7HWkno-NBHDjXae7qDGnfiCNwA,820
|
|
244
247
|
nat/memory/__init__.py,sha256=ARS_HJipPR4mLDqw3VISSQLzeezru_vgNgsi1Ku0GRE,828
|
|
245
248
|
nat/memory/interfaces.py,sha256=lyj1TGr3Fhibul8Y64Emj-BUEqDotmmFoVCEMqTujUA,5531
|
|
246
249
|
nat/memory/models.py,sha256=c5dA7nKHQ4AS1_ptQZcfC_oXO495-ehocnf_qXTE6c8,4319
|
|
247
|
-
nat/meta/pypi.md,sha256=
|
|
250
|
+
nat/meta/pypi.md,sha256=MTsUdLhHjwZOZZStmaJYn6AbUWbzJvueyjN_AyYSVes,4502
|
|
248
251
|
nat/object_store/__init__.py,sha256=81UKtZ6qcc__hfNjMnEYBHE16k7XBXX6R5IJNg1zfRs,831
|
|
249
252
|
nat/object_store/in_memory_object_store.py,sha256=98UgQK2YdXTTQjBfQS-mjBCCugm1XUB7DZCFS8xe9yQ,2644
|
|
250
253
|
nat/object_store/interfaces.py,sha256=5NbsE9TccihOf5ScG04hE1eNOaiajOZIUOeK_Kvukk8,2519
|
|
251
|
-
nat/object_store/models.py,sha256=
|
|
254
|
+
nat/object_store/models.py,sha256=xsch4o3GzEFxVbFEYBfr92lEMZk5XHHr224WZGsQUNM,1537
|
|
252
255
|
nat/object_store/register.py,sha256=M93V17RxBXzGZaAmWboDw-S2XP7lrMEyzdlxXqC0f30,788
|
|
253
256
|
nat/observability/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
254
257
|
nat/observability/exporter_manager.py,sha256=5rJlgcdXIV3-EFkxVJv275V_ZGw84P9Th8LFuIZrmYo,13851
|
|
@@ -292,7 +295,7 @@ nat/profiler/calc/plot.py,sha256=h_GyTg-6qU6n2ZAUCsMmXkz6ha-lrcQ903G0JxNWrzM,122
|
|
|
292
295
|
nat/profiler/callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
293
296
|
nat/profiler/callbacks/agno_callback_handler.py,sha256=y99-QFV5-GOYN6YzM_3U_7rd-n3AkG1cmc0T9wGKUes,14908
|
|
294
297
|
nat/profiler/callbacks/base_callback_class.py,sha256=BFZMkb-dPoHAnM_4jVXX08hD8Vi2n8thyftVlUxfE24,745
|
|
295
|
-
nat/profiler/callbacks/langchain_callback_handler.py,sha256=
|
|
298
|
+
nat/profiler/callbacks/langchain_callback_handler.py,sha256=zIgPwc0e40qFhvPqCEIYkV8O3tr1jiY9UZXQ_JwaCWk,12848
|
|
296
299
|
nat/profiler/callbacks/llama_index_callback_handler.py,sha256=UJlT8pFlchmn4OXkmV3iNc2N_uJB2OQZxTFsuUMhaaM,9317
|
|
297
300
|
nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=5bbffvxtizyDs9RyrRNxk9y_DHg2luu1KxFiWaxU484,11143
|
|
298
301
|
nat/profiler/callbacks/token_usage_base_model.py,sha256=X0b_AbBgVQAAbgbDMim-3S3XdQ7PaPs9qMUACvMAe5o,1104
|
|
@@ -425,10 +428,10 @@ nat/utils/reactive/base/observer_base.py,sha256=UAlyAY_ky4q2t0P81RVFo2Bs_R7z5Nde
|
|
|
425
428
|
nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
|
|
426
429
|
nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
427
430
|
nat/utils/settings/global_settings.py,sha256=CYHQX7F6MDR18vsVFTrEySpS9cBufuVGTUqZm9lREFs,7446
|
|
428
|
-
nvidia_nat-1.
|
|
429
|
-
nvidia_nat-1.
|
|
430
|
-
nvidia_nat-1.
|
|
431
|
-
nvidia_nat-1.
|
|
432
|
-
nvidia_nat-1.
|
|
433
|
-
nvidia_nat-1.
|
|
434
|
-
nvidia_nat-1.
|
|
431
|
+
nvidia_nat-1.3.0.dev2.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
432
|
+
nvidia_nat-1.3.0.dev2.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
433
|
+
nvidia_nat-1.3.0.dev2.dist-info/METADATA,sha256=-m-OcRzjESJfNaYSK7GF8x-iXOMw7jQnlSngYmcdLpM,21758
|
|
434
|
+
nvidia_nat-1.3.0.dev2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
435
|
+
nvidia_nat-1.3.0.dev2.dist-info/entry_points.txt,sha256=FNh4pZVSe_61s29zdks66lmXBPtsnko8KSZ4ffv7WVE,653
|
|
436
|
+
nvidia_nat-1.3.0.dev2.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
|
|
437
|
+
nvidia_nat-1.3.0.dev2.dist-info/RECORD,,
|