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.
@@ -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
- llm_text_output = generation.message.content if generation else ""
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.3a20250819
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: lxml~=5.4; extra == "ingestion"
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.0/extend/plugins.html) Works with any agentic framework, so you can use your current technology stack without replatforming.
332
- - [**Reusability:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2.0/extend/sharing-components.html) Every agent, tool, or workflow can be combined and repurposed, allowing developers to leverage existing work in new scenarios.
333
- - [**Rapid Development:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2.0/tutorials/index.html) Start with a pre-built agent, tool, or workflow, and customize it to your needs.
334
- - [**Profiling:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2.0/workflows/profiler.html) Profile entire workflows down to the tool and agent level, track input/output tokens and timings, and identify bottlenecks.
335
- - [**Observability:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2.0/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.0/workflows/observe/observe-workflow-with-phoenix.html) and [W&B Weave](https://docs.nvidia.com/nemo/agent-toolkit/1.2.0/workflows/observe/observe-workflow-with-weave.html).
336
- - [**Evaluation System:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2.0/workflows/evaluate.html) Validate and maintain accuracy of agentic workflows with built-in evaluation tools.
337
- - [**User Interface:**](https://docs.nvidia.com/nemo/agent-toolkit/1.2.0/quick-start/launching-ui.html) Use the NeMo Agent toolkit UI chat interface to interact with your agents, visualize output, and debug workflows.
338
- - [**MCP Compatibility**](https://docs.nvidia.com/nemo/agent-toolkit/1.2.0/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.
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.0/index.html): Explore the full documentation for NeMo Agent toolkit.
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=vKD3q6RiRdXYlmsZOsB9DB0cVfSMNByhjn7uwp8TxGw,9094
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=UJBhVVpPwNB0fcHtHeJk2U0TKQtVnWe9R-_BNXVZlw4,19424
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=iGPBU6kh1xbp4QsU1p3o4A0JDov23J1EVM3HSAX6S0A,1713
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=BE4w8Tk1XvxN3qH-lbrT03RQlGP7WAEFfqXjAly8JCM,19009
14
- nat/agent/rewoo_agent/prompt.py,sha256=yRDaH8qMVBVchz--rZIJt8dP3GgFi4akVpclt-q1lHw,3673
15
- nat/agent/rewoo_agent/register.py,sha256=6lZVKi7dWC9324mqAMvsO4pLAAz1Vv914NlhFWvAYwk,8411
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=tKcVIV1EI0D9qlSDUJ7mJOhWCAotFBka2Ii0f4mukoU,5718
18
- nat/agent/tool_calling_agent/register.py,sha256=iUZ53Ki-KfNwJ-R17r7a3JqmKdKbZCNZReUK0uPJfbU,5413
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=fC2S7VMxasFGBgSwsleyeog2iuPtvD9iwypMZlXm8IQ,45884
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=8dkYVup-JGxhnMlYkcXmMoegKAhOL1yFFFcUhj_9PrI,2008
130
- nat/embedder/register.py,sha256=hvA3T42-YQCrHLvEzhEoB-HS09RojLogcOVdO4-GaXs,879
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=GMsFzhupP_rwSVkIoJUT8j0CRhWyC4X58ihnO_l9OkM,899
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=6oXSSS1rmCZGbW32_mGq0qrMh0g6aSe-_E9QwIle4Og,4524
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=yAEa7oZgax7OwObynv0MFCMo43xTGps5xz3SIY6-0VM,1425
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=cjZpnrmVRtEq8kji3UpheWBSzq9RTZVeuBAKC_ILD0c,12505
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.3a20250819.dist-info/licenses/LICENSE-3rd-party.txt,sha256=8o7aySJa9CBvFshPcsRdJbczzdNyDGJ8b0J67WRUQ2k,183936
429
- nvidia_nat-1.3a20250819.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
430
- nvidia_nat-1.3a20250819.dist-info/METADATA,sha256=Cb6G8f4OJlIauNJUT-aH-FbeUQrq5aBxx7M1-xY6hqU,21692
431
- nvidia_nat-1.3a20250819.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
432
- nvidia_nat-1.3a20250819.dist-info/entry_points.txt,sha256=FNh4pZVSe_61s29zdks66lmXBPtsnko8KSZ4ffv7WVE,653
433
- nvidia_nat-1.3a20250819.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
434
- nvidia_nat-1.3a20250819.dist-info/RECORD,,
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,,