nvidia-nat 1.3.0rc2__py3-none-any.whl → 1.3.0rc3__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.
Files changed (27) hide show
  1. nat/agent/react_agent/register.py +13 -22
  2. nat/agent/rewoo_agent/register.py +13 -22
  3. nat/agent/tool_calling_agent/register.py +7 -3
  4. nat/builder/component_utils.py +1 -1
  5. nat/builder/function.py +3 -2
  6. nat/builder/workflow_builder.py +46 -3
  7. nat/cli/entrypoint.py +9 -1
  8. nat/data_models/api_server.py +78 -9
  9. nat/data_models/config.py +1 -1
  10. nat/experimental/test_time_compute/functions/execute_score_select_function.py +1 -1
  11. nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py +2 -2
  12. nat/front_ends/console/console_front_end_plugin.py +11 -2
  13. nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py +1 -1
  14. nat/observability/register.py +16 -0
  15. nat/runtime/session.py +1 -1
  16. nat/tool/memory_tools/add_memory_tool.py +3 -3
  17. nat/tool/memory_tools/delete_memory_tool.py +3 -4
  18. nat/tool/memory_tools/get_memory_tool.py +3 -3
  19. nat/utils/type_converter.py +8 -0
  20. nvidia_nat-1.3.0rc3.dist-info/METADATA +195 -0
  21. {nvidia_nat-1.3.0rc2.dist-info → nvidia_nat-1.3.0rc3.dist-info}/RECORD +26 -26
  22. nvidia_nat-1.3.0rc2.dist-info/METADATA +0 -389
  23. {nvidia_nat-1.3.0rc2.dist-info → nvidia_nat-1.3.0rc3.dist-info}/WHEEL +0 -0
  24. {nvidia_nat-1.3.0rc2.dist-info → nvidia_nat-1.3.0rc3.dist-info}/entry_points.txt +0 -0
  25. {nvidia_nat-1.3.0rc2.dist-info → nvidia_nat-1.3.0rc3.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
  26. {nvidia_nat-1.3.0rc2.dist-info → nvidia_nat-1.3.0rc3.dist-info}/licenses/LICENSE.md +0 -0
  27. {nvidia_nat-1.3.0rc2.dist-info → nvidia_nat-1.3.0rc3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,195 @@
1
+ Metadata-Version: 2.4
2
+ Name: nvidia-nat
3
+ Version: 1.3.0rc3
4
+ Summary: NVIDIA NeMo Agent toolkit
5
+ Author: NVIDIA Corporation
6
+ Maintainer: NVIDIA Corporation
7
+ License: Apache-2.0
8
+ Project-URL: documentation, https://docs.nvidia.com/nemo/agent-toolkit/latest/
9
+ Project-URL: source, https://github.com/NVIDIA/NeMo-Agent-Toolkit
10
+ Keywords: ai,rag,agents
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Requires-Python: <3.14,>=3.11
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE-3rd-party.txt
18
+ License-File: LICENSE.md
19
+ Requires-Dist: aioboto3>=11.0.0
20
+ Requires-Dist: authlib~=1.5
21
+ Requires-Dist: click~=8.1
22
+ Requires-Dist: colorama~=0.4.6
23
+ Requires-Dist: datasets~=4.0
24
+ Requires-Dist: expandvars~=1.0
25
+ Requires-Dist: fastapi~=0.115.5
26
+ Requires-Dist: httpx~=0.27
27
+ Requires-Dist: jinja2~=3.1
28
+ Requires-Dist: jsonpath-ng~=1.7
29
+ Requires-Dist: mcp~=1.13
30
+ Requires-Dist: nest-asyncio~=1.6
31
+ Requires-Dist: networkx~=3.4
32
+ Requires-Dist: numpy~=1.26; python_version < "3.12"
33
+ Requires-Dist: numpy~=2.3; python_version >= "3.12"
34
+ Requires-Dist: openinference-semantic-conventions~=0.1.14
35
+ Requires-Dist: openpyxl~=3.1
36
+ Requires-Dist: optuna~=4.4.0
37
+ Requires-Dist: pip>=24.3.1
38
+ Requires-Dist: pkce==1.0.3
39
+ Requires-Dist: pkginfo~=1.12
40
+ Requires-Dist: platformdirs~=4.3
41
+ Requires-Dist: pydantic~=2.11
42
+ Requires-Dist: pymilvus~=2.4
43
+ Requires-Dist: python-dotenv~=1.1.1
44
+ Requires-Dist: PyYAML~=6.0
45
+ Requires-Dist: ragas~=0.2.14
46
+ Requires-Dist: rich~=13.9
47
+ Requires-Dist: tabulate~=0.9
48
+ Requires-Dist: uvicorn[standard]<0.36
49
+ Requires-Dist: wikipedia~=1.4
50
+ Provides-Extra: all
51
+ Requires-Dist: nvidia-nat-all; extra == "all"
52
+ Provides-Extra: adk
53
+ Requires-Dist: nvidia-nat-adk; extra == "adk"
54
+ Provides-Extra: agno
55
+ Requires-Dist: nvidia-nat-agno; extra == "agno"
56
+ Provides-Extra: crewai
57
+ Requires-Dist: nvidia-nat-crewai; extra == "crewai"
58
+ Provides-Extra: data-flywheel
59
+ Requires-Dist: nvidia-nat-data-flywheel; extra == "data-flywheel"
60
+ Provides-Extra: ingestion
61
+ Requires-Dist: nvidia-nat-ingestion; extra == "ingestion"
62
+ Provides-Extra: langchain
63
+ Requires-Dist: nvidia-nat-langchain; extra == "langchain"
64
+ Provides-Extra: llama-index
65
+ Requires-Dist: nvidia-nat-llama-index; extra == "llama-index"
66
+ Provides-Extra: mcp
67
+ Requires-Dist: nvidia-nat-mcp; extra == "mcp"
68
+ Provides-Extra: mem0ai
69
+ Requires-Dist: nvidia-nat-mem0ai; extra == "mem0ai"
70
+ Provides-Extra: opentelemetry
71
+ Requires-Dist: nvidia-nat-opentelemetry; extra == "opentelemetry"
72
+ Provides-Extra: phoenix
73
+ Requires-Dist: nvidia-nat-phoenix; extra == "phoenix"
74
+ Provides-Extra: profiling
75
+ Requires-Dist: nvidia-nat-profiling; extra == "profiling"
76
+ Provides-Extra: ragaai
77
+ Requires-Dist: nvidia-nat-ragaai; extra == "ragaai"
78
+ Provides-Extra: mysql
79
+ Requires-Dist: nvidia-nat-mysql; extra == "mysql"
80
+ Provides-Extra: redis
81
+ Requires-Dist: nvidia-nat-redis; extra == "redis"
82
+ Provides-Extra: s3
83
+ Requires-Dist: nvidia-nat-s3; extra == "s3"
84
+ Provides-Extra: semantic-kernel
85
+ Requires-Dist: nvidia-nat-semantic-kernel; extra == "semantic-kernel"
86
+ Provides-Extra: telemetry
87
+ Requires-Dist: nvidia-nat-opentelemetry; extra == "telemetry"
88
+ Requires-Dist: nvidia-nat-phoenix; extra == "telemetry"
89
+ Requires-Dist: nvidia-nat-weave; extra == "telemetry"
90
+ Requires-Dist: nvidia-nat-ragaai; extra == "telemetry"
91
+ Provides-Extra: weave
92
+ Requires-Dist: nvidia-nat-weave; extra == "weave"
93
+ Provides-Extra: zep-cloud
94
+ Requires-Dist: nvidia-nat-zep-cloud; extra == "zep-cloud"
95
+ Provides-Extra: examples
96
+ Requires-Dist: nat_adk_demo; extra == "examples"
97
+ Requires-Dist: nat_agno_personal_finance; extra == "examples"
98
+ Requires-Dist: nat_haystack_deep_research_agent; extra == "examples"
99
+ Requires-Dist: nat_alert_triage_agent; extra == "examples"
100
+ Requires-Dist: nat_automated_description_generation; extra == "examples"
101
+ Requires-Dist: nat_email_phishing_analyzer; extra == "examples"
102
+ Requires-Dist: nat_multi_frameworks; extra == "examples"
103
+ Requires-Dist: nat_plot_charts; extra == "examples"
104
+ Requires-Dist: nat_por_to_jiratickets; extra == "examples"
105
+ Requires-Dist: nat_profiler_agent; extra == "examples"
106
+ Requires-Dist: nat_redact_pii; extra == "examples"
107
+ Requires-Dist: nat_router_agent; extra == "examples"
108
+ Requires-Dist: nat_semantic_kernel_demo; extra == "examples"
109
+ Requires-Dist: nat_sequential_executor; extra == "examples"
110
+ Requires-Dist: nat_simple_auth; extra == "examples"
111
+ Requires-Dist: nat_simple_auth_mcp; extra == "examples"
112
+ Requires-Dist: nat_simple_web_query; extra == "examples"
113
+ Requires-Dist: nat_simple_web_query_eval; extra == "examples"
114
+ Requires-Dist: nat_simple_calculator; extra == "examples"
115
+ Requires-Dist: nat_simple_calculator_custom_routes; extra == "examples"
116
+ Requires-Dist: nat_simple_calculator_eval; extra == "examples"
117
+ Requires-Dist: nat_simple_calculator_mcp; extra == "examples"
118
+ Requires-Dist: nat_simple_calculator_observability; extra == "examples"
119
+ Requires-Dist: nat_simple_calculator_hitl; extra == "examples"
120
+ Requires-Dist: nat_simple_rag; extra == "examples"
121
+ Requires-Dist: nat_swe_bench; extra == "examples"
122
+ Requires-Dist: nat_user_report; extra == "examples"
123
+ Provides-Extra: gunicorn
124
+ Requires-Dist: gunicorn~=23.0; extra == "gunicorn"
125
+ Provides-Extra: async-endpoints
126
+ Requires-Dist: aiosqlite~=0.21; extra == "async-endpoints"
127
+ Requires-Dist: dask==2023.6; extra == "async-endpoints"
128
+ Requires-Dist: distributed==2023.6; extra == "async-endpoints"
129
+ Requires-Dist: sqlalchemy[asyncio]~=2.0; extra == "async-endpoints"
130
+ Provides-Extra: nvidia-haystack
131
+ Requires-Dist: nvidia-haystack~=0.3.0; extra == "nvidia-haystack"
132
+ Provides-Extra: litellm
133
+ Requires-Dist: litellm==1.74.9; extra == "litellm"
134
+ Provides-Extra: openai
135
+ Requires-Dist: openai~=1.106; extra == "openai"
136
+ Dynamic: license-file
137
+
138
+ <!--
139
+ SPDX-FileCopyrightText: Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
140
+ SPDX-License-Identifier: Apache-2.0
141
+
142
+ Licensed under the Apache License, Version 2.0 (the "License");
143
+ you may not use this file except in compliance with the License.
144
+ You may obtain a copy of the License at
145
+
146
+ http://www.apache.org/licenses/LICENSE-2.0
147
+
148
+ Unless required by applicable law or agreed to in writing, software
149
+ distributed under the License is distributed on an "AS IS" BASIS,
150
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
151
+ See the License for the specific language governing permissions and
152
+ limitations under the License.
153
+ -->
154
+
155
+ ![NVIDIA NeMo Agent Toolkit](https://media.githubusercontent.com/media/NVIDIA/NeMo-Agent-Toolkit/refs/heads/main/docs/source/_static/banner.png "NeMo Agent toolkit banner image")
156
+
157
+ # NVIDIA NeMo Agent Toolkit
158
+
159
+ NeMo Agent toolkit is a flexible library designed to seamlessly integrate your enterprise agents—regardless of framework—with various data sources and tools. By treating agents, tools, and agentic workflows as simple function calls, NeMo Agent toolkit enables true composability: build once and reuse anywhere.
160
+
161
+ ## Key Features
162
+
163
+ - [**Framework Agnostic:**](https://docs.nvidia.com/nemo/agent-toolkit/1.3/extend/plugins.html) Works with any agentic framework, so you can use your current technology stack without replatforming.
164
+ - [**Reusability:**](https://docs.nvidia.com/nemo/agent-toolkit/1.3/extend/sharing-components.html) Every agent, tool, or workflow can be combined and repurposed, allowing developers to leverage existing work in new scenarios.
165
+ - [**Rapid Development:**](https://docs.nvidia.com/nemo/agent-toolkit/1.3/tutorials/index.html) Start with a pre-built agent, tool, or workflow, and customize it to your needs.
166
+ - [**Profiling:**](https://docs.nvidia.com/nemo/agent-toolkit/1.3/workflows/profiler.html) Profile entire workflows down to the tool and agent level, track input/output tokens and timings, and identify bottlenecks.
167
+ - [**Observability:**](https://docs.nvidia.com/nemo/agent-toolkit/1.3/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.3/workflows/observe/observe-workflow-with-phoenix.html) and [W&B Weave](https://docs.nvidia.com/nemo/agent-toolkit/1.3/workflows/observe/observe-workflow-with-weave.html).
168
+ - [**Evaluation System:**](https://docs.nvidia.com/nemo/agent-toolkit/1.3/workflows/evaluate.html) Validate and maintain accuracy of agentic workflows with built-in evaluation tools.
169
+ - [**User Interface:**](https://docs.nvidia.com/nemo/agent-toolkit/1.3/quick-start/launching-ui.html) Use the NeMo Agent toolkit UI chat interface to interact with your agents, visualize output, and debug workflows.
170
+ - [**MCP Compatibility**](https://docs.nvidia.com/nemo/agent-toolkit/1.3/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.
171
+
172
+ With NeMo Agent toolkit, you can move quickly, experiment freely, and ensure reliability across all your agent-driven projects.
173
+
174
+ ## Links
175
+ * [Documentation](https://docs.nvidia.com/nemo/agent-toolkit/1.3/index.html): Explore the full documentation for NeMo Agent toolkit.
176
+
177
+ ## First time user?
178
+ 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.
179
+
180
+ ## Feedback
181
+
182
+ We would love to hear from you! Please file an issue on [GitHub](https://github.com/NVIDIA/NeMo-Agent-Toolkit/issues) if you have any feedback or feature requests.
183
+
184
+ ## Acknowledgements
185
+
186
+ We would like to thank the following open source projects that made NeMo Agent toolkit possible:
187
+
188
+ - [CrewAI](https://github.com/crewAIInc/crewAI)
189
+ - [FastAPI](https://github.com/tiangolo/fastapi)
190
+ - [LangChain](https://github.com/langchain-ai/langchain)
191
+ - [Llama-Index](https://github.com/run-llama/llama_index)
192
+ - [Mem0ai](https://github.com/mem0ai/mem0)
193
+ - [Ragas](https://github.com/explodinggradients/ragas)
194
+ - [Semantic Kernel](https://github.com/microsoft/semantic-kernel)
195
+ - [uv](https://github.com/astral-sh/uv)
@@ -10,16 +10,16 @@ nat/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
10
10
  nat/agent/react_agent/agent.py,sha256=sWrg9WrglTKQQyG3EcjNm2JTEchCPEo9li-Po7TJKss,21294
11
11
  nat/agent/react_agent/output_parser.py,sha256=m7K6wRwtckBBpAHqOf3BZ9mqZLwrP13Kxz5fvNxbyZE,4219
12
12
  nat/agent/react_agent/prompt.py,sha256=N47JJrT6xwYQCv1jedHhlul2AE7EfKsSYfAbgJwWRew,1758
13
- nat/agent/react_agent/register.py,sha256=wAoPkly7dE8bb5x8XFf5-C1qJQausLKQwQcFCby_dwU,9307
13
+ nat/agent/react_agent/register.py,sha256=lpiso1tKq70ZYKbV9zXZegtXPLJNBaBrnG25R9hyA9Q,9008
14
14
  nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
15
  nat/agent/reasoning_agent/reasoning_agent.py,sha256=k_0wEDqACQn1Rn1MAKxoXyqOKsthHCQ1gt990YYUqHU,9575
16
16
  nat/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  nat/agent/rewoo_agent/agent.py,sha256=XXgVXY9xwkyxnr093KXUtfgyNxAQbyGAecoGqN5mMLY,26199
18
18
  nat/agent/rewoo_agent/prompt.py,sha256=B0JeL1xDX4VKcShlkkviEcAsOKAwzSlX8NcAQdmUUPw,3645
19
- nat/agent/rewoo_agent/register.py,sha256=GfJRQgpFWl-LQ-pPaG7EUeBH5u7pDZZNVP5cSweZJdM,9599
19
+ nat/agent/rewoo_agent/register.py,sha256=s6D9W4x5jIkda8l67gj3A46aefk6KQPuZ4H-ZJkVAtY,9300
20
20
  nat/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  nat/agent/tool_calling_agent/agent.py,sha256=4SIp29I56oznPRQu7B3HCoX53Ri3_o3BRRYNJjeBkF8,11006
22
- nat/agent/tool_calling_agent/register.py,sha256=ijiRfgDVtt2p7_q1YbIQZmUVV8-jf3yT18HwtKyReUI,6822
22
+ nat/agent/tool_calling_agent/register.py,sha256=h1Xfr1KPvQkslPg-NqdOMQAmx1PNFAIvvOC5bAIJtbE,7074
23
23
  nat/authentication/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
24
24
  nat/authentication/interfaces.py,sha256=1J2CWEJ_n6CLA3_HD3XV28CSbyfxrPAHzr7Q4kKDFdc,3511
25
25
  nat/authentication/register.py,sha256=lFhswYUk9iZ53mq33fClR9UfjJPdjGIivGGNHQeWiYo,915
@@ -41,14 +41,14 @@ nat/authentication/oauth2/oauth2_resource_server_config.py,sha256=ltcNp8Dwb2Q4tl
41
41
  nat/authentication/oauth2/register.py,sha256=7rXhf-ilgSS_bUJsd9pOOCotL1FM8dKUt3ke1TllKkQ,1228
42
42
  nat/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  nat/builder/builder.py,sha256=okI3Y101hwF63AwazzxiahQx-W9eFZ_SNdFXzDuoftU,11608
44
- nat/builder/component_utils.py,sha256=-5vEWLwj9ch-1B9vbkBjCIkXB9SL8Tj9yl6zFwhV6wU,13832
44
+ nat/builder/component_utils.py,sha256=gxDhm4NCLI1GU0XL9gFe_gife0oJLwgk_YuABJneFfs,13838
45
45
  nat/builder/context.py,sha256=6NQmHfJS0gY4eLU7Xg84olmrgUdtVJcS3gmxc-OADiw,13093
46
46
  nat/builder/embedder.py,sha256=NPkOEcxt_-wc53QRijCQQDLretRUYHRYaKoYmarmrBk,965
47
47
  nat/builder/eval_builder.py,sha256=I-ScvupmorClYoVBIs_PhSsB7Xf9e2nGWe0rCZp3txo,6857
48
48
  nat/builder/evaluator.py,sha256=xWHMND2vcAUkdFP7FU3jnVki1rUHeTa0-9saFh2hWKs,1162
49
49
  nat/builder/framework_enum.py,sha256=n7IaTQBxhFozIQqRMcX9kXntw28JhFzCj82jJ0C5tNU,901
50
50
  nat/builder/front_end.py,sha256=FCJ87NSshVVuTg8zZrq3YAr_u0RaYVZVcibnqlRFy-M,2173
51
- nat/builder/function.py,sha256=RrfKSCt9WunPhwn5fk8X7wuvb9A21iO8T-IySHUi3KM,27763
51
+ nat/builder/function.py,sha256=3h51TA0D6EQGWjHDsoxa_8ooQcZpk_-yAndk4oc5dGo,27790
52
52
  nat/builder/function_base.py,sha256=0Eg8RtjWhEU3Yme0CVxcRutobA0Qo8-YHZLI6L2qAgM,13116
53
53
  nat/builder/function_info.py,sha256=7Rmrn-gOFrT2TIJklJwA_O-ycx_oimwZ0-qMYpbuZrU,25161
54
54
  nat/builder/intermediate_step_manager.py,sha256=iOuMLWTaES0J0XzaLxhTUqFvuoCAChJu3V69T43K0k0,7599
@@ -56,9 +56,9 @@ nat/builder/llm.py,sha256=DW-2q64A06VChsXNEL5PfBjH3DcsnTKVoCEWDuP7MF4,951
56
56
  nat/builder/retriever.py,sha256=ZyEqc7pFK31t_yr6Jaxa34c-tRas2edKqJZCNiVh9-0,970
57
57
  nat/builder/user_interaction_manager.py,sha256=-Z2qbQes7a2cuXgT7KEbWeuok0HcCnRdw9WB8Ghyl9k,3081
58
58
  nat/builder/workflow.py,sha256=bHrxK-VFsxUTw2wZgkWcCttpCMDeWNGPfmIGEW_bjZo,6908
59
- nat/builder/workflow_builder.py,sha256=Fdf2eIYrRg1ovLkySzzgh5C2PNLV7QzQIN7pLHSr6zI,56339
59
+ nat/builder/workflow_builder.py,sha256=GgNkeBmG_q3YGnGliuzpYhkC869q_PdaP4RoqXH6HdI,58709
60
60
  nat/cli/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
61
- nat/cli/entrypoint.py,sha256=7NHq3Grb_qzpJzzbb0YtTsWd4YhA6y9ljHwsOQPQAIs,4928
61
+ nat/cli/entrypoint.py,sha256=vN9G8fe-7ITmsVciJU11Fk7JaSxFnN5A4FrD7WjYbxg,5105
62
62
  nat/cli/main.py,sha256=LZMKvoHYR926mghMjVpfLiI2qraqtrhMY9hvuAQCRWk,2258
63
63
  nat/cli/register_workflow.py,sha256=DOQQgUWB_NO9k7nlkP4cAx_RX03Cndk032K-kqyuvEs,23285
64
64
  nat/cli/type_registry.py,sha256=HbPU-7lzSHZ4aepJ3qOgfnl5LzK6-KHwcerhFpWw6mU,48839
@@ -112,12 +112,12 @@ nat/control_flow/router_agent/prompt.py,sha256=fIAiNsAs1zXRAatButR76zSpHJNxSkXXK
112
112
  nat/control_flow/router_agent/register.py,sha256=4RGmS9sy-QtIMmvh8mfMcR1VqxFPLpG4RckWCIExh40,4144
113
113
  nat/data_models/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
114
114
  nat/data_models/agent.py,sha256=IwDyb9Zc3R4Zd5rFeqt7q0EQswczAl5focxV9KozIzs,1625
115
- nat/data_models/api_server.py,sha256=V8y1v9-5p4kmaQmmDU2N6m_V_CFJeozDzJEoIHOSV8w,26177
115
+ nat/data_models/api_server.py,sha256=NWT1ChN2qaakD2DgyYCy_7MhfzvEBQX15qnUXnpCQmk,28883
116
116
  nat/data_models/authentication.py,sha256=XPu9W8nh4XRSuxPv3HxO-FMQ_JtTEoK6Y02JwnzDwTg,8457
117
117
  nat/data_models/common.py,sha256=nXXfGrjpxebzBUa55mLdmzePLt7VFHvTAc6Znj3yEv0,5875
118
118
  nat/data_models/component.py,sha256=b_hXOA8Gm5UNvlFkAhsR6kEvf33ST50MKtr5kWf75Ao,1894
119
119
  nat/data_models/component_ref.py,sha256=KFDWFVCcvJCfBBcXTh9f3R802EVHBtHXh9OdbRqFmdM,4747
120
- nat/data_models/config.py,sha256=pWy-rHI7lfn1-_Vtl6HAmVZs2rC7GZF54ZojoEp0ZbQ,18817
120
+ nat/data_models/config.py,sha256=P0JJmjqvUHUkpZ3Yc0IrMPoA2qP8HkmOjl7CwNq-nQQ,18833
121
121
  nat/data_models/dataset_handler.py,sha256=bFPahRkmPtSmA4DVSUwKg-NJRHP7TGQDSRJiSv5UhZY,5518
122
122
  nat/data_models/discovery_metadata.py,sha256=_l97iQsqp_ihba8CbMBQ73mH1sipTQ19GiJDdzQYQGY,13432
123
123
  nat/data_models/embedder.py,sha256=nPhthEQDtzAMGd8gFRB1ZfJpN5M9DJvv0h28ohHnTmI,1002
@@ -202,10 +202,10 @@ nat/experimental/test_time_compute/editing/iterative_plan_refinement_editor.py,s
202
202
  nat/experimental/test_time_compute/editing/llm_as_a_judge_editor.py,sha256=QAu46omTvXJOqWzN_Xeeuhf25R0WxHqMjAdXcB9IxqQ,8539
203
203
  nat/experimental/test_time_compute/editing/motivation_aware_summarization.py,sha256=S7s_BigZ1ru-3lP7c58Zpt5Nxavi8Ko-A1cmH7KkX3s,4503
204
204
  nat/experimental/test_time_compute/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
- nat/experimental/test_time_compute/functions/execute_score_select_function.py,sha256=OHiQ01a6g3OEd-K1WZynuQspmrvBpgKKxxqO-UbM4z0,4550
205
+ nat/experimental/test_time_compute/functions/execute_score_select_function.py,sha256=K1sQPkhvGyWIJxJXJ_ZGH1LqQK2v8cCKUpx0RvG22PA,4556
206
206
  nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=ZkxFwF8SF6y88qa9ZqBsie--bnbsHpWC72ky-ttBzV0,10067
207
207
  nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py,sha256=GMPibwNI6o2ljQkDUsD7C-wFm8qRYTx_B7PA6IBFrFI,8446
208
- nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py,sha256=TMHLz31RgPG3rt5ilfkES-xqJSl-f8qc_-ZU9bYFQyk,6913
208
+ nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py,sha256=Iahv7-IznuuKdjlJre6aKYPf2tZEnuwWswe2yYyDYWg,6938
209
209
  nat/experimental/test_time_compute/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
210
  nat/experimental/test_time_compute/models/editor_config.py,sha256=wFHcd4GjWy4fxuXrYnC0gJ0ZszsAjziohK8vS7cc8EA,7153
211
211
  nat/experimental/test_time_compute/models/scoring_config.py,sha256=zi93HQrtY1FiRuZgDOdlDZql6T-1W6SteybSUMXjr8U,5500
@@ -234,7 +234,7 @@ nat/front_ends/register.py,sha256=_C6AFpsQ8hUXavKHaBMy0g137fOcLfEjyU0EAuYqtao,85
234
234
  nat/front_ends/console/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
235
235
  nat/front_ends/console/authentication_flow_handler.py,sha256=iv8sm7i1mtVT60lfXwwqDrlQfNZ1bl1bPfWkaH5oaLA,12147
236
236
  nat/front_ends/console/console_front_end_config.py,sha256=wkMXk-RCdlEj3303kB1gh47UKJnubX2R-vzBzhedpS4,1318
237
- nat/front_ends/console/console_front_end_plugin.py,sha256=vsaBwCvgsyDNEM2YdH5bKivXWa4uPTfMv9cQaoEh7uI,4310
237
+ nat/front_ends/console/console_front_end_plugin.py,sha256=rlh8rL8iJCczVJngBFMckNFB7ERqJGtX1QJr-iNKGyA,4670
238
238
  nat/front_ends/console/register.py,sha256=2Kf6Mthx6jzWzU8YdhYIR1iABmZDvs1UXM_20npXWXs,1153
239
239
  nat/front_ends/cron/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
240
240
  nat/front_ends/fastapi/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
@@ -253,7 +253,7 @@ nat/front_ends/fastapi/response_helpers.py,sha256=MGE9E73sQSCYjsR5YXRga2qbl44hrT
253
253
  nat/front_ends/fastapi/step_adaptor.py,sha256=J6UtoXL9De8bgAg93nE0ASLUHZbidWOfRiuFo-tyZgY,12412
254
254
  nat/front_ends/fastapi/utils.py,sha256=oYuuLsugx-fpy6u4xd9gL7g9kfwsyKOnwH5YOwH633w,1998
255
255
  nat/front_ends/fastapi/auth_flow_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
- nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py,sha256=69ye-nJ81jAoD1cVYv86-AUYu2-Uk8ZqU_m8AVO9vT8,1280
256
+ nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py,sha256=69umUT4LALoM62GUdmk3MlpnfKz50ui7eCbf1Tz3694,1280
257
257
  nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=qU8Kba48PD7TitygQNsZfx2rrluKlpRm7Zx_C6DtOnc,6576
258
258
  nat/front_ends/fastapi/html_snippets/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
259
259
  nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py,sha256=BNpWwzmA58UM0GK4kZXG4PHJy_5K9ihaVHu8SgCs5JA,1131
@@ -288,7 +288,7 @@ nat/object_store/models.py,sha256=xsch4o3GzEFxVbFEYBfr92lEMZk5XHHr224WZGsQUNM,15
288
288
  nat/object_store/register.py,sha256=jNuZfyG2rSuxS-DNK_aFdgfjiHK3VC1_4A5lmpmRP_A,756
289
289
  nat/observability/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
290
290
  nat/observability/exporter_manager.py,sha256=sJqYEF68-83WPkhp7Sj6ULWV0FoWM8cXEZ4ZilaXFhs,13836
291
- nat/observability/register.py,sha256=Hpk5aYYXCKdvkTqE245QgtmhCKrGh75uZZoefcxa38Y,4225
291
+ nat/observability/register.py,sha256=4DunSq-9mti3wQ6vJ2cWqQi6Uq3z-4uqBZG290vZ58A,4723
292
292
  nat/observability/exporter/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
293
293
  nat/observability/exporter/base_exporter.py,sha256=OGSv-_688TmzdGUeax4iMBwvaHICPSyWmklsDQanbtM,16604
294
294
  nat/observability/exporter/exporter.py,sha256=fqF0GYuhZRQEq0skq_FK2nlnsaUAzLpQi-OciaOkRno,2391
@@ -407,7 +407,7 @@ nat/retriever/nemo_retriever/retriever.py,sha256=gi3_qJFqE-iqRh3of_cmJg-SwzaQ3z2
407
407
  nat/runtime/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
408
408
  nat/runtime/loader.py,sha256=obUdAgZVYCPGC0R8u3wcoKFJzzSPQgJvrbU4OWygtog,7953
409
409
  nat/runtime/runner.py,sha256=sUF-zJMgqcFq4xRx8y5bxct2EzgiKbmFkvWkYxlDsQg,11798
410
- nat/runtime/session.py,sha256=yOlZg3myau4c06M8v23KEojQpmMwDsr5P6GnXiVMg94,9101
410
+ nat/runtime/session.py,sha256=E8RTbnAhPbY5KCoSfiHzOJksmBh7xWjsoX0BC7Rn1ck,9101
411
411
  nat/runtime/user_metadata.py,sha256=ce37NRYJWnMOWk6A7VAQ1GQztjMmkhMOq-uYf2gNCwo,3692
412
412
  nat/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
413
  nat/settings/global_settings.py,sha256=dEw9nkyx7pEEufmLS1o3mWhcXy7-ZpES4BZx1OWfg5M,12467
@@ -434,9 +434,9 @@ nat/tool/code_execution/local_sandbox/local_sandbox_server.py,sha256=eOFQV8ZE9-n
434
434
  nat/tool/code_execution/local_sandbox/sandbox.requirements.txt,sha256=R86yJ6mcUhfD9_ZU-rSMdaojR6MU41hcH4pE3vAGmcE,43
435
435
  nat/tool/code_execution/local_sandbox/start_local_sandbox.sh,sha256=gnPuzbneKZ61YvzaGIYSUdcyKMLuchYPti3zGLaNCZY,2055
436
436
  nat/tool/memory_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
- nat/tool/memory_tools/add_memory_tool.py,sha256=DYaYkVlH2myRshJpzmULfzdF0wFoPCAkTBokFVmhfzU,3349
438
- nat/tool/memory_tools/delete_memory_tool.py,sha256=EWJVgzIzLDqktY5domXph-N2U9FmybdWl4J7KM7uK4g,2532
439
- nat/tool/memory_tools/get_memory_tool.py,sha256=F0P7OkWQJZ1W6vCBWhAuYitBLnRXpAxnGyNmbkcTpAk,2749
437
+ nat/tool/memory_tools/add_memory_tool.py,sha256=N400PPvI37NUCMh5KcuoAL8khK8ecUQyfenahfjzbHQ,3368
438
+ nat/tool/memory_tools/delete_memory_tool.py,sha256=zMllkpC0of9qFPNuG9vkVOoydRblOViCQf0uSbqz0sE,2461
439
+ nat/tool/memory_tools/get_memory_tool.py,sha256=fcW6QE7bMZrpNK62et3sTw_QZ8cV9lXfEuDsm1-05bE,2768
440
440
  nat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
441
441
  nat/utils/callable_utils.py,sha256=EIao6NhHRFEoBqYRC7aWoFqhlr2LeFT0XK-ac0coF9E,2475
442
442
  nat/utils/debugging_utils.py,sha256=6M4JhbHDNDnfmSRGmHvT5IgEeWSHBore3VngdE_PMqc,1332
@@ -448,7 +448,7 @@ nat/utils/metadata_utils.py,sha256=BSsiB6jIWd8oEuEynJi55qCG762UuTYFaiUH0OT9HdY,2
448
448
  nat/utils/optional_imports.py,sha256=jQSVBc2fBSRw-2d6r8cEwvh5-di2EUUPakuuo9QbbwA,4039
449
449
  nat/utils/producer_consumer_queue.py,sha256=AcSYkAMBxLx06A5Xdy960PP3AJ7YaSPGJ7rbN_hJsjI,6599
450
450
  nat/utils/string_utils.py,sha256=71HuIzGx7rF8ocTmeoUBpnCi1Qf1yynYlNLLIKP4BVs,1415
451
- nat/utils/type_converter.py,sha256=-2PwMsEm7tlmrniZzO7x2DnRxhOEeJGVAIJc3c5n2g4,10655
451
+ nat/utils/type_converter.py,sha256=vDZzrZ9ycWgZJdkWB1sHB2ivZX-E8fPfkrB-vAAxroI,10968
452
452
  nat/utils/type_utils.py,sha256=SMo5hM4dKf2G3U_0J0wvdFX6-lzMVSh8vd-W34Oixow,14836
453
453
  nat/utils/url_utils.py,sha256=UzDP_xaS6brWTu7vAws0B4jZyrITIK9Si3U6pZBZqDE,1028
454
454
  nat/utils/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -470,10 +470,10 @@ nat/utils/reactive/base/observer_base.py,sha256=6BiQfx26EMumotJ3KoVcdmFBYR_fnAss
470
470
  nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
471
471
  nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
472
472
  nat/utils/settings/global_settings.py,sha256=9JaO6pxKT_Pjw6rxJRsRlFCXdVKCl_xUKU2QHZQWWNM,7294
473
- nvidia_nat-1.3.0rc2.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
474
- nvidia_nat-1.3.0rc2.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
475
- nvidia_nat-1.3.0rc2.dist-info/METADATA,sha256=xvXF8y1Su3huZJlBr45f6m_FkBp0Co_CVZpZjKr_PZs,22821
476
- nvidia_nat-1.3.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
477
- nvidia_nat-1.3.0rc2.dist-info/entry_points.txt,sha256=4jCqjyETMpyoWbCBf4GalZU8I_wbstpzwQNezdAVbbo,698
478
- nvidia_nat-1.3.0rc2.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
479
- nvidia_nat-1.3.0rc2.dist-info/RECORD,,
473
+ nvidia_nat-1.3.0rc3.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
474
+ nvidia_nat-1.3.0rc3.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
475
+ nvidia_nat-1.3.0rc3.dist-info/METADATA,sha256=qZ0sBY6rZTYae27D_pu8g_fy-S9T4lOeReHqaNXKNOE,10222
476
+ nvidia_nat-1.3.0rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
477
+ nvidia_nat-1.3.0rc3.dist-info/entry_points.txt,sha256=4jCqjyETMpyoWbCBf4GalZU8I_wbstpzwQNezdAVbbo,698
478
+ nvidia_nat-1.3.0rc3.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
479
+ nvidia_nat-1.3.0rc3.dist-info/RECORD,,