nvidia-nat 1.3.0a20250917__py3-none-any.whl → 1.3.0a20250922__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/agent/react_agent/register.py +3 -10
- nat/agent/reasoning_agent/reasoning_agent.py +3 -6
- nat/agent/register.py +0 -1
- nat/agent/rewoo_agent/agent.py +6 -1
- nat/agent/rewoo_agent/register.py +9 -10
- nat/agent/tool_calling_agent/register.py +3 -10
- nat/authentication/credential_validator/__init__.py +14 -0
- nat/authentication/credential_validator/bearer_token_validator.py +557 -0
- nat/authentication/oauth2/oauth2_resource_server_config.py +124 -0
- nat/builder/context.py +28 -6
- nat/builder/function.py +165 -19
- nat/builder/workflow_builder.py +2 -0
- nat/cli/entrypoint.py +2 -9
- nat/control_flow/register.py +20 -0
- nat/control_flow/router_agent/__init__.py +0 -0
- nat/{agent → control_flow}/router_agent/agent.py +3 -3
- nat/{agent → control_flow}/router_agent/register.py +8 -14
- nat/control_flow/sequential_executor.py +167 -0
- nat/data_models/agent.py +34 -0
- nat/data_models/authentication.py +38 -0
- nat/front_ends/fastapi/dask_client_mixin.py +26 -4
- nat/front_ends/fastapi/fastapi_front_end_config.py +4 -0
- nat/front_ends/fastapi/fastapi_front_end_plugin.py +30 -7
- nat/front_ends/mcp/introspection_token_verifier.py +73 -0
- nat/front_ends/mcp/mcp_front_end_config.py +5 -1
- nat/front_ends/mcp/mcp_front_end_plugin.py +37 -11
- nat/front_ends/mcp/mcp_front_end_plugin_worker.py +108 -1
- nat/front_ends/mcp/tool_converter.py +3 -0
- nat/observability/mixin/type_introspection_mixin.py +19 -0
- nat/profiler/parameter_optimization/parameter_optimizer.py +5 -1
- nat/utils/log_levels.py +25 -0
- {nvidia_nat-1.3.0a20250917.dist-info → nvidia_nat-1.3.0a20250922.dist-info}/METADATA +3 -1
- {nvidia_nat-1.3.0a20250917.dist-info → nvidia_nat-1.3.0a20250922.dist-info}/RECORD +40 -31
- {nvidia_nat-1.3.0a20250917.dist-info → nvidia_nat-1.3.0a20250922.dist-info}/entry_points.txt +1 -0
- /nat/{agent/router_agent → control_flow}/__init__.py +0 -0
- /nat/{agent → control_flow}/router_agent/prompt.py +0 -0
- {nvidia_nat-1.3.0a20250917.dist-info → nvidia_nat-1.3.0a20250922.dist-info}/WHEEL +0 -0
- {nvidia_nat-1.3.0a20250917.dist-info → nvidia_nat-1.3.0a20250922.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {nvidia_nat-1.3.0a20250917.dist-info → nvidia_nat-1.3.0a20250922.dist-info}/licenses/LICENSE.md +0 -0
- {nvidia_nat-1.3.0a20250917.dist-info → nvidia_nat-1.3.0a20250922.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,7 @@ aiq/__init__.py,sha256=qte-NlwgM990yEeyaRUxA4IBQq3PaEkQUCK3i95iwPw,2341
|
|
|
2
2
|
nat/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
nat/agent/base.py,sha256=6u0z7NjrtCBxvByijQz4vrRNPb4yX9FqEyJixuBRQV4,10157
|
|
4
4
|
nat/agent/dual_node.py,sha256=pfvXa1iLKtrNBHsh-tM5RWRmVe7QkyYhQNanOfWdJJs,2569
|
|
5
|
-
nat/agent/register.py,sha256=
|
|
5
|
+
nat/agent/register.py,sha256=rPhHDyqRBIKyon3HqhOmpAjqPP18Or6wDQb0wRUBIjQ,1032
|
|
6
6
|
nat/agent/prompt_optimizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
nat/agent/prompt_optimizer/prompt.py,sha256=2I1cGZH73Q1pwxA_V-9b1sFCdQ1PLFxliaRtrIkVVVU,3042
|
|
8
8
|
nat/agent/prompt_optimizer/register.py,sha256=qV9Qkd4XDfwVYSzZOyI9RlRzK26jukaB51RriYgWd6k,6790
|
|
@@ -10,20 +10,16 @@ nat/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
10
10
|
nat/agent/react_agent/agent.py,sha256=zz1rmXdx53QG-07KGJffLZCpI3ULvYEWyCdufD42CB4,21261
|
|
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=
|
|
13
|
+
nat/agent/react_agent/register.py,sha256=l2Enc2m3GaijrTRm9yQanVe_mWrA_ekA6SwnfLBGKDA,8663
|
|
14
14
|
nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
nat/agent/reasoning_agent/reasoning_agent.py,sha256=
|
|
15
|
+
nat/agent/reasoning_agent/reasoning_agent.py,sha256=049irI9FuqqIPDoX8Vf0GMU8w2nej7infugGG8NUjt8,9563
|
|
16
16
|
nat/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
nat/agent/rewoo_agent/agent.py,sha256=
|
|
17
|
+
nat/agent/rewoo_agent/agent.py,sha256=ogTtUsNqbAjEprBKp2ZEoYfuHvgxnjV7NgygvSgMz7M,19264
|
|
18
18
|
nat/agent/rewoo_agent/prompt.py,sha256=nFMav3Zl_vmKPLzAIhbQHlldWnurPJb1GlwnekUuxDs,3720
|
|
19
|
-
nat/agent/rewoo_agent/register.py,sha256=
|
|
20
|
-
nat/agent/router_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
nat/agent/router_agent/agent.py,sha256=LY_vpy3NC-ZPmc-5Qak35Y4YN5qMM1Mlgu9A4S7VWI4,13674
|
|
22
|
-
nat/agent/router_agent/prompt.py,sha256=fIAiNsAs1zXRAatButR76zSpHJNxSkXXKKmCL86a58A,1720
|
|
23
|
-
nat/agent/router_agent/register.py,sha256=rl_0EKRge4fAHeN74DpKl-h6e94ldbErUBWcspEGBv4,4587
|
|
19
|
+
nat/agent/rewoo_agent/register.py,sha256=BkYXTOXMFp_KXrzF7R49R6nWbQkiuHsOhBkVs6VWPGQ,8807
|
|
24
20
|
nat/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
21
|
nat/agent/tool_calling_agent/agent.py,sha256=4SIp29I56oznPRQu7B3HCoX53Ri3_o3BRRYNJjeBkF8,11006
|
|
26
|
-
nat/agent/tool_calling_agent/register.py,sha256=
|
|
22
|
+
nat/agent/tool_calling_agent/register.py,sha256=_zSknu-rdF6BRgPq4ccs0f8ki74C--a_HkY802A7pUI,5921
|
|
27
23
|
nat/authentication/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
28
24
|
nat/authentication/interfaces.py,sha256=FAYM-QXVUn3a_8bmAZ7kP-lmN_BrLW8mo6krZJ3e0ME,3314
|
|
29
25
|
nat/authentication/register.py,sha256=lFhswYUk9iZ53mq33fClR9UfjJPdjGIivGGNHQeWiYo,915
|
|
@@ -31,6 +27,8 @@ nat/authentication/api_key/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-i
|
|
|
31
27
|
nat/authentication/api_key/api_key_auth_provider.py,sha256=DoN1MoeB_uOWQMHUz2OiyhwbFxQkj0FOifN2TFr4sds,4022
|
|
32
28
|
nat/authentication/api_key/api_key_auth_provider_config.py,sha256=zfkxH3yvUSKKldRf1K4PPm0rJLXGH0GDH8xj7anPYGQ,5472
|
|
33
29
|
nat/authentication/api_key/register.py,sha256=Mhv3WyZ9H7C2JN8VuPvwlsJEZrwXJCLXCIokkN9RrP0,1147
|
|
30
|
+
nat/authentication/credential_validator/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
31
|
+
nat/authentication/credential_validator/bearer_token_validator.py,sha256=cwGENd_bp-u2Y_JCRbEPxFkulk_vREpLog5c83h1nRU,21250
|
|
34
32
|
nat/authentication/exceptions/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
35
33
|
nat/authentication/exceptions/api_key_exceptions.py,sha256=6wnz951BI77rFYuHxoHOthz-y5oE08uxsuM6G5EvOyM,1545
|
|
36
34
|
nat/authentication/http_basic_auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -39,17 +37,18 @@ nat/authentication/http_basic_auth/register.py,sha256=N2VD0vw7cYABsLxsGXl5yw0htc
|
|
|
39
37
|
nat/authentication/oauth2/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
40
38
|
nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=iFp_kImFwDrweFHGTg4n9RGybH3-wRSJkyh-FPOxwDA,4538
|
|
41
39
|
nat/authentication/oauth2/oauth2_auth_code_flow_provider_config.py,sha256=e165ysd2pX2WTbV3_FQKEjEaa4TAXkJ7B98WUGbqnGE,2204
|
|
40
|
+
nat/authentication/oauth2/oauth2_resource_server_config.py,sha256=ltcNp8Dwb2Q4tlwMN5Cl0B5pouTLtXRoV-QopfqV45M,5314
|
|
42
41
|
nat/authentication/oauth2/register.py,sha256=7rXhf-ilgSS_bUJsd9pOOCotL1FM8dKUt3ke1TllKkQ,1228
|
|
43
42
|
nat/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
43
|
nat/builder/builder.py,sha256=odUw-s1jgrLWTgX4baXcAfKLeIcz8NY8cbv0LlEjK7E,10874
|
|
45
44
|
nat/builder/component_utils.py,sha256=rbKjs-Yo2uJ4xgEfTWbRWnSsJRrvalOb7TTOBljQZig,13839
|
|
46
|
-
nat/builder/context.py,sha256=
|
|
45
|
+
nat/builder/context.py,sha256=6mpk7H_gZ5_gVOKbWp8BrToqJraP1GEh9-uKX4vRrpA,12462
|
|
47
46
|
nat/builder/embedder.py,sha256=NPkOEcxt_-wc53QRijCQQDLretRUYHRYaKoYmarmrBk,965
|
|
48
47
|
nat/builder/eval_builder.py,sha256=6Raia6VgQwfFTQGbjnwAL8p4MXQhl_n5UIVuQ-l9_GQ,6575
|
|
49
48
|
nat/builder/evaluator.py,sha256=xWHMND2vcAUkdFP7FU3jnVki1rUHeTa0-9saFh2hWKs,1162
|
|
50
49
|
nat/builder/framework_enum.py,sha256=eYwHQifZ86dx-OTubVA3qhCLRqhB4ElMBYBGA0gYtic,885
|
|
51
50
|
nat/builder/front_end.py,sha256=mHooS1M7mVo1swSgbYoqbzQENXkuG7_Es9q4gFiuL8E,2175
|
|
52
|
-
nat/builder/function.py,sha256=
|
|
51
|
+
nat/builder/function.py,sha256=Jl1SkeEJR_oOr44m_t6Zytca9gwlC1HimS-FnJA6iG4,26307
|
|
53
52
|
nat/builder/function_base.py,sha256=0Eg8RtjWhEU3Yme0CVxcRutobA0Qo8-YHZLI6L2qAgM,13116
|
|
54
53
|
nat/builder/function_info.py,sha256=7Rmrn-gOFrT2TIJklJwA_O-ycx_oimwZ0-qMYpbuZrU,25161
|
|
55
54
|
nat/builder/intermediate_step_manager.py,sha256=iOuMLWTaES0J0XzaLxhTUqFvuoCAChJu3V69T43K0k0,7599
|
|
@@ -57,9 +56,9 @@ nat/builder/llm.py,sha256=DW-2q64A06VChsXNEL5PfBjH3DcsnTKVoCEWDuP7MF4,951
|
|
|
57
56
|
nat/builder/retriever.py,sha256=ZyEqc7pFK31t_yr6Jaxa34c-tRas2edKqJZCNiVh9-0,970
|
|
58
57
|
nat/builder/user_interaction_manager.py,sha256=-Z2qbQes7a2cuXgT7KEbWeuok0HcCnRdw9WB8Ghyl9k,3081
|
|
59
58
|
nat/builder/workflow.py,sha256=bHrxK-VFsxUTw2wZgkWcCttpCMDeWNGPfmIGEW_bjZo,6908
|
|
60
|
-
nat/builder/workflow_builder.py,sha256=
|
|
59
|
+
nat/builder/workflow_builder.py,sha256=5cUu0WdQAfj3uwzgyjeP9HYTdxEoAigT8e7lHUaIn3A,55209
|
|
61
60
|
nat/cli/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
62
|
-
nat/cli/entrypoint.py,sha256=
|
|
61
|
+
nat/cli/entrypoint.py,sha256=YSXGpSAEt2mwEbJUJNsgx7txq7zaZRrf7H63mdYn-FY,4929
|
|
63
62
|
nat/cli/main.py,sha256=KzUSDB1TGzHRP_Fnq5XJRopx-i9S2oycgQrXrf2vDkE,2164
|
|
64
63
|
nat/cli/register_workflow.py,sha256=DOQQgUWB_NO9k7nlkP4cAx_RX03Cndk032K-kqyuvEs,23285
|
|
65
64
|
nat/cli/type_registry.py,sha256=R301m91ar2vDorJvN8oqqGB9PhsoyNvToiYL3x2Q1io,48838
|
|
@@ -103,9 +102,17 @@ nat/cli/commands/workflow/templates/config.yml.j2,sha256=PriLJehyb5HIiVCy5NkU6lJ
|
|
|
103
102
|
nat/cli/commands/workflow/templates/pyproject.toml.j2,sha256=lDBC4exHYutXa_skuJj176yMEuZr-DsdzrqQHPZoKpk,1035
|
|
104
103
|
nat/cli/commands/workflow/templates/register.py.j2,sha256=txA-qBpWhxRc0GUcVRCIqVI6gGSh-TJijemrUqnb38s,138
|
|
105
104
|
nat/cli/commands/workflow/templates/workflow.py.j2,sha256=Z4uZPG9rtf1nxF74dF4DqDtrF3uYmYUmWowDFbQBjao,1241
|
|
105
|
+
nat/control_flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
+
nat/control_flow/register.py,sha256=YBB73ecHpvUN_RivkeMWwu645gpC8OCPVOYgr_5aEOA,845
|
|
107
|
+
nat/control_flow/sequential_executor.py,sha256=CvGK8MdAzWwQeBuYArjnmNXjREhBLo3tmFsZq3u0XCc,8331
|
|
108
|
+
nat/control_flow/router_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
|
+
nat/control_flow/router_agent/agent.py,sha256=IvMqQuJTwsdARbgPdtfGVTwKO4XZfVLNDui_Kl843Pw,13695
|
|
110
|
+
nat/control_flow/router_agent/prompt.py,sha256=fIAiNsAs1zXRAatButR76zSpHJNxSkXXKKmCL86a58A,1720
|
|
111
|
+
nat/control_flow/router_agent/register.py,sha256=A0N9-9nUW9CLOPGOh2MzxLb3oBWvgGcGK5ssPU_D-W0,4140
|
|
106
112
|
nat/data_models/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
113
|
+
nat/data_models/agent.py,sha256=IwDyb9Zc3R4Zd5rFeqt7q0EQswczAl5focxV9KozIzs,1625
|
|
107
114
|
nat/data_models/api_server.py,sha256=Zl0eAd-yV9PD8vUH8eWRvXFcUBdY2tENKe73q-Uxxgg,25699
|
|
108
|
-
nat/data_models/authentication.py,sha256=
|
|
115
|
+
nat/data_models/authentication.py,sha256=t9-2CQaIfk74DM3CLaJU5NAYGs7m6BjdFFm1hj8WwtY,9064
|
|
109
116
|
nat/data_models/common.py,sha256=nXXfGrjpxebzBUa55mLdmzePLt7VFHvTAc6Znj3yEv0,5875
|
|
110
117
|
nat/data_models/component.py,sha256=b_hXOA8Gm5UNvlFkAhsR6kEvf33ST50MKtr5kWf75Ao,1894
|
|
111
118
|
nat/data_models/component_ref.py,sha256=KFDWFVCcvJCfBBcXTh9f3R802EVHBtHXh9OdbRqFmdM,4747
|
|
@@ -230,10 +237,10 @@ nat/front_ends/console/console_front_end_plugin.py,sha256=BJ1o2IflZeFKC2gGfL_gI2
|
|
|
230
237
|
nat/front_ends/console/register.py,sha256=2Kf6Mthx6jzWzU8YdhYIR1iABmZDvs1UXM_20npXWXs,1153
|
|
231
238
|
nat/front_ends/cron/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
232
239
|
nat/front_ends/fastapi/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
233
|
-
nat/front_ends/fastapi/dask_client_mixin.py,sha256=
|
|
234
|
-
nat/front_ends/fastapi/fastapi_front_end_config.py,sha256=
|
|
240
|
+
nat/front_ends/fastapi/dask_client_mixin.py,sha256=N_tw4yxA7EKIFTKp5_C2ZksIZucWxRYkFjmZszkAkXc,2072
|
|
241
|
+
nat/front_ends/fastapi/fastapi_front_end_config.py,sha256=BcuzrVlA5b7yYyQKNvQgEanDBtKEHdpC8TAd-O7lfF0,11992
|
|
235
242
|
nat/front_ends/fastapi/fastapi_front_end_controller.py,sha256=ei-34KCMpyaeAgeAN4gVvSGFjewjjRhHZPN0FqAfhDY,2548
|
|
236
|
-
nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=
|
|
243
|
+
nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=e33YkMcLzvm4OUG34bhl-WYiBTqkR-_wJYKG4GODkGM,11169
|
|
237
244
|
nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=F-A6KQRqO0JOVj90rGewFzzSlrSIAMxAeq8L1OFQClE,52989
|
|
238
245
|
nat/front_ends/fastapi/intermediate_steps_subscriber.py,sha256=kbyWlBVpyvyQQjeUnFG9nsR4RaqqNkx567ZSVwwl2RU,3104
|
|
239
246
|
nat/front_ends/fastapi/job_store.py,sha256=S0ab_MyJvr3z28l1UY5rhORt6eiEls9_xcQDrNrBJm8,22746
|
|
@@ -250,11 +257,12 @@ nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=5HX6m
|
|
|
250
257
|
nat/front_ends/fastapi/html_snippets/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
251
258
|
nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py,sha256=BNpWwzmA58UM0GK4kZXG4PHJy_5K9ihaVHu8SgCs5JA,1131
|
|
252
259
|
nat/front_ends/mcp/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
253
|
-
nat/front_ends/mcp/
|
|
254
|
-
nat/front_ends/mcp/
|
|
255
|
-
nat/front_ends/mcp/
|
|
260
|
+
nat/front_ends/mcp/introspection_token_verifier.py,sha256=s7Q4Q6rWZJ0ZVujSxxpvVI6Bnhkg1LJQ3RLkvhzFIGE,2836
|
|
261
|
+
nat/front_ends/mcp/mcp_front_end_config.py,sha256=fFbg800FDJfwv-nXc0jEPaNVtW4ApESmVRexr-werks,2313
|
|
262
|
+
nat/front_ends/mcp/mcp_front_end_plugin.py,sha256=NiIIgApk1X2yAEwtG9tHaY6SexQMbZrd6Drs7uIJix8,5055
|
|
263
|
+
nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=TnrxwNfkphOp6a2itbJQKonjrJCK3nDXynUOe79HP2Q,10176
|
|
256
264
|
nat/front_ends/mcp/register.py,sha256=3aJtgG5VaiqujoeU1-Eq7Hl5pWslIlIwGFU2ASLTXgM,1173
|
|
257
|
-
nat/front_ends/mcp/tool_converter.py,sha256=
|
|
265
|
+
nat/front_ends/mcp/tool_converter.py,sha256=J0GS85qs2rVO2ZyGfxQcbtlWevoMJCEiEfa83PK10Ew,11548
|
|
258
266
|
nat/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
259
267
|
nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=3kevZVhvzj_Wvu8HYhRz-CRrO2OldW6wcmtcsIQCELk,1765
|
|
260
268
|
nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -295,7 +303,7 @@ nat/observability/mixin/redaction_config_mixin.py,sha256=yzLsgt1iaU0z7q1HvVT39kw
|
|
|
295
303
|
nat/observability/mixin/resource_conflict_mixin.py,sha256=mcUp3Qinmhiepq3DyRvp9IaKGYtJfDgQVB-MuyVkWvk,5243
|
|
296
304
|
nat/observability/mixin/serialize_mixin.py,sha256=DgRHJpXCz9qHFYzhlTTx8Dkj297EylCKK3ydGrH5zOw,2478
|
|
297
305
|
nat/observability/mixin/tagging_config_mixin.py,sha256=m-AUeLsiiKPMdMv_0TKAFL18BvVJ4tRzPoRCVpzyfN8,1777
|
|
298
|
-
nat/observability/mixin/type_introspection_mixin.py,sha256=
|
|
306
|
+
nat/observability/mixin/type_introspection_mixin.py,sha256=ZHMRmp38R2KypnPBJyenf6rW8jVoz0cWnFlG8rHLtpA,20327
|
|
299
307
|
nat/observability/processor/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
300
308
|
nat/observability/processor/batching_processor.py,sha256=R0Qy3bHmf-QBM6FJmjmccdsf60JuvYLU-tV4kvy2hBA,13762
|
|
301
309
|
nat/observability/processor/callback_processor.py,sha256=T5DsEm4HCUOi1VL29XCpaK04sYQvJ75KZLH-mlJGQgk,1547
|
|
@@ -357,7 +365,7 @@ nat/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=
|
|
|
357
365
|
nat/profiler/parameter_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
366
|
nat/profiler/parameter_optimization/optimizable_utils.py,sha256=93Pl8A14Zq_f3XsxSH-yFnEJ6B7W5hp7doPnPoLlRB4,3714
|
|
359
367
|
nat/profiler/parameter_optimization/optimizer_runtime.py,sha256=rXmCOq81o7ZorQOUYociVjuO3NO9CIjFBbwql2u_4H4,2715
|
|
360
|
-
nat/profiler/parameter_optimization/parameter_optimizer.py,sha256
|
|
368
|
+
nat/profiler/parameter_optimization/parameter_optimizer.py,sha256=CxRFSnl0w0JQvijsY-gszUNxvSrihQ0Jl9ySYClsNFI,6544
|
|
361
369
|
nat/profiler/parameter_optimization/parameter_selection.py,sha256=-cKhoEgwC2K-brHOiLmgLnxk23bRMDefDCZSwvCqqJM,4007
|
|
362
370
|
nat/profiler/parameter_optimization/pareto_visualizer.py,sha256=06SqR6b50dI4emJiGPLV0en19utf3jrrwLUYf_LwNDs,15904
|
|
363
371
|
nat/profiler/parameter_optimization/prompt_optimizer.py,sha256=foO-IQWBzCsFRDxAwucIq1kQOO-XwFeULBWyoGc33Zo,17646
|
|
@@ -431,6 +439,7 @@ nat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
431
439
|
nat/utils/callable_utils.py,sha256=EIao6NhHRFEoBqYRC7aWoFqhlr2LeFT0XK-ac0coF9E,2475
|
|
432
440
|
nat/utils/debugging_utils.py,sha256=6M4JhbHDNDnfmSRGmHvT5IgEeWSHBore3VngdE_PMqc,1332
|
|
433
441
|
nat/utils/dump_distro_mapping.py,sha256=ptRVwrzhZplEWZUwwHOzyeuLj-ykkxn96t4oxUmRG28,1147
|
|
442
|
+
nat/utils/log_levels.py,sha256=2hHWgOSuvuISdKN82BQgBh2yk9V5324jYMki8-1rAYs,888
|
|
434
443
|
nat/utils/log_utils.py,sha256=dZLHt7qFqLlpPqMMFO9UVtSkOpMjFwz9tkmbAfOiNlg,1355
|
|
435
444
|
nat/utils/metadata_utils.py,sha256=BSsiB6jIWd8oEuEynJi55qCG762UuTYFaiUH0OT9HdY,2897
|
|
436
445
|
nat/utils/optional_imports.py,sha256=jQSVBc2fBSRw-2d6r8cEwvh5-di2EUUPakuuo9QbbwA,4039
|
|
@@ -458,10 +467,10 @@ nat/utils/reactive/base/observer_base.py,sha256=6BiQfx26EMumotJ3KoVcdmFBYR_fnAss
|
|
|
458
467
|
nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
|
|
459
468
|
nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
460
469
|
nat/utils/settings/global_settings.py,sha256=9JaO6pxKT_Pjw6rxJRsRlFCXdVKCl_xUKU2QHZQWWNM,7294
|
|
461
|
-
nvidia_nat-1.3.
|
|
462
|
-
nvidia_nat-1.3.
|
|
463
|
-
nvidia_nat-1.3.
|
|
464
|
-
nvidia_nat-1.3.
|
|
465
|
-
nvidia_nat-1.3.
|
|
466
|
-
nvidia_nat-1.3.
|
|
467
|
-
nvidia_nat-1.3.
|
|
470
|
+
nvidia_nat-1.3.0a20250922.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
471
|
+
nvidia_nat-1.3.0a20250922.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
472
|
+
nvidia_nat-1.3.0a20250922.dist-info/METADATA,sha256=oRhemXV7FuDWWz4Aw7e3q5JW7s9wWfZHjrwAfhq7MsU,22605
|
|
473
|
+
nvidia_nat-1.3.0a20250922.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
474
|
+
nvidia_nat-1.3.0a20250922.dist-info/entry_points.txt,sha256=4jCqjyETMpyoWbCBf4GalZU8I_wbstpzwQNezdAVbbo,698
|
|
475
|
+
nvidia_nat-1.3.0a20250922.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
|
|
476
|
+
nvidia_nat-1.3.0a20250922.dist-info/RECORD,,
|
{nvidia_nat-1.3.0a20250917.dist-info → nvidia_nat-1.3.0a20250922.dist-info}/entry_points.txt
RENAMED
|
@@ -5,6 +5,7 @@ nat = nat.cli.main:run_cli
|
|
|
5
5
|
[nat.components]
|
|
6
6
|
nat_agents = nat.agent.register
|
|
7
7
|
nat_authentication = nat.authentication.register
|
|
8
|
+
nat_control_flow = nat.control_flow.register
|
|
8
9
|
nat_embedders = nat.embedder.register
|
|
9
10
|
nat_evaluators = nat.eval.register
|
|
10
11
|
nat_llms = nat.llm.register
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nvidia_nat-1.3.0a20250917.dist-info → nvidia_nat-1.3.0a20250922.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|