nvidia-nat 1.2.0a20250813__py3-none-any.whl → 1.2.0rc6__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 +1 -1
- nat/agent/reasoning_agent/reasoning_agent.py +3 -3
- nat/agent/rewoo_agent/prompt.py +11 -12
- nat/agent/rewoo_agent/register.py +30 -32
- nat/authentication/http_basic_auth/http_basic_auth_provider.py +1 -1
- nat/authentication/interfaces.py +1 -1
- nat/authentication/oauth2/oauth2_auth_code_flow_provider.py +2 -2
- nat/builder/component_utils.py +5 -5
- nat/builder/context.py +5 -5
- nat/builder/front_end.py +6 -6
- nat/builder/function_base.py +4 -4
- nat/builder/function_info.py +1 -1
- nat/builder/intermediate_step_manager.py +4 -4
- nat/builder/user_interaction_manager.py +3 -3
- nat/builder/workflow_builder.py +2 -2
- nat/cli/cli_utils/validation.py +1 -1
- nat/cli/commands/configure/channel/add.py +1 -1
- nat/cli/commands/configure/channel/channel.py +1 -3
- nat/cli/commands/configure/channel/remove.py +1 -1
- nat/cli/commands/configure/channel/update.py +1 -1
- nat/cli/commands/configure/configure.py +2 -2
- nat/cli/commands/evaluate.py +1 -1
- nat/cli/commands/info/info.py +2 -4
- nat/cli/commands/info/list_components.py +2 -2
- nat/cli/commands/info/list_mcp.py +9 -9
- nat/cli/commands/registry/publish.py +3 -3
- nat/cli/commands/registry/pull.py +3 -3
- nat/cli/commands/registry/registry.py +1 -3
- nat/cli/commands/registry/remove.py +3 -3
- nat/cli/commands/registry/search.py +3 -3
- nat/cli/commands/start.py +4 -4
- nat/cli/commands/workflow/templates/pyproject.toml.j2 +4 -4
- nat/cli/commands/workflow/workflow_commands.py +6 -6
- nat/data_models/api_server.py +38 -31
- nat/data_models/component_ref.py +9 -9
- nat/data_models/dataset_handler.py +56 -10
- nat/data_models/discovery_metadata.py +21 -50
- nat/data_models/evaluate.py +2 -2
- nat/data_models/intermediate_step.py +4 -4
- nat/embedder/register.py +0 -2
- nat/eval/dataset_handler/dataset_handler.py +118 -5
- nat/eval/evaluate.py +1 -1
- nat/eval/evaluator/evaluator_model.py +3 -3
- nat/eval/rag_evaluator/evaluate.py +1 -1
- nat/eval/swe_bench_evaluator/evaluate.py +2 -2
- nat/experimental/test_time_compute/editing/motivation_aware_summarization.py +1 -1
- nat/experimental/test_time_compute/functions/plan_select_execute_function.py +4 -4
- nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py +1 -1
- nat/experimental/test_time_compute/scoring/llm_based_agent_scorer.py +1 -1
- nat/experimental/test_time_compute/scoring/llm_based_plan_scorer.py +1 -1
- nat/experimental/test_time_compute/search/multi_llm_planner.py +1 -1
- nat/experimental/test_time_compute/search/multi_query_retrieval_search.py +1 -1
- nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py +1 -1
- nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py +1 -1
- nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py +1 -1
- nat/experimental/test_time_compute/selection/llm_based_plan_selector.py +1 -1
- nat/front_ends/console/console_front_end_config.py +1 -1
- nat/front_ends/fastapi/fastapi_front_end_config.py +6 -7
- nat/front_ends/fastapi/fastapi_front_end_plugin.py +4 -4
- nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py +13 -13
- nat/front_ends/fastapi/intermediate_steps_subscriber.py +1 -1
- nat/front_ends/fastapi/main.py +6 -6
- nat/front_ends/fastapi/message_handler.py +14 -3
- nat/front_ends/fastapi/message_validator.py +6 -8
- nat/front_ends/fastapi/response_helpers.py +3 -3
- nat/front_ends/mcp/mcp_front_end_config.py +3 -2
- nat/front_ends/mcp/mcp_front_end_plugin_worker.py +4 -4
- nat/front_ends/mcp/tool_converter.py +15 -16
- nat/memory/__init__.py +2 -2
- nat/meta/pypi.md +8 -8
- nat/object_store/__init__.py +2 -2
- nat/observability/exporter/base_exporter.py +1 -1
- nat/observability/exporter/raw_exporter.py +1 -1
- nat/observability/exporter_manager.py +1 -1
- nat/profiler/callbacks/agno_callback_handler.py +4 -4
- nat/profiler/callbacks/llama_index_callback_handler.py +2 -2
- nat/profiler/callbacks/semantic_kernel_callback_handler.py +1 -1
- nat/profiler/decorators/function_tracking.py +1 -1
- nat/profiler/forecasting/models/linear_model.py +3 -2
- nat/profiler/forecasting/models/random_forest_regressor.py +3 -2
- nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py +1 -1
- nat/profiler/inference_optimization/experimental/prefix_span_analysis.py +1 -1
- nat/profiler/profile_runner.py +1 -1
- nat/registry_handlers/local/local_handler.py +5 -5
- nat/registry_handlers/local/register_local.py +1 -1
- nat/registry_handlers/package_utils.py +17 -17
- nat/registry_handlers/pypi/pypi_handler.py +5 -5
- nat/registry_handlers/pypi/register_pypi.py +3 -3
- nat/registry_handlers/registry_handler_base.py +8 -8
- nat/registry_handlers/rest/register_rest.py +4 -4
- nat/registry_handlers/rest/rest_handler.py +6 -6
- nat/registry_handlers/schemas/package.py +3 -3
- nat/registry_handlers/schemas/publish.py +4 -4
- nat/registry_handlers/schemas/pull.py +4 -4
- nat/registry_handlers/schemas/search.py +7 -7
- nat/runtime/loader.py +21 -20
- nat/runtime/runner.py +2 -2
- nat/runtime/session.py +1 -1
- nat/settings/global_settings.py +2 -2
- nat/tool/chat_completion.py +1 -1
- nat/tool/code_execution/README.md +2 -2
- nat/tool/code_execution/test_code_execution_sandbox.py +1 -1
- nat/tool/mcp/exceptions.py +1 -1
- nat/tool/mcp/mcp_tool.py +1 -1
- nat/tool/retriever.py +3 -3
- nat/tool/server_tools.py +11 -11
- nat/utils/settings/global_settings.py +1 -1
- {nvidia_nat-1.2.0a20250813.dist-info → nvidia_nat-1.2.0rc6.dist-info}/METADATA +9 -9
- {nvidia_nat-1.2.0a20250813.dist-info → nvidia_nat-1.2.0rc6.dist-info}/RECORD +114 -116
- nat/embedder/langchain_client.py +0 -41
- nat/meta/module_to_distro.json +0 -4
- {nvidia_nat-1.2.0a20250813.dist-info → nvidia_nat-1.2.0rc6.dist-info}/WHEEL +0 -0
- {nvidia_nat-1.2.0a20250813.dist-info → nvidia_nat-1.2.0rc6.dist-info}/entry_points.txt +0 -0
- {nvidia_nat-1.2.0a20250813.dist-info → nvidia_nat-1.2.0rc6.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {nvidia_nat-1.2.0a20250813.dist-info → nvidia_nat-1.2.0rc6.dist-info}/licenses/LICENSE.md +0 -0
- {nvidia_nat-1.2.0a20250813.dist-info → nvidia_nat-1.2.0rc6.dist-info}/top_level.txt +0 -0
|
@@ -6,18 +6,18 @@ nat/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
6
6
|
nat/agent/react_agent/agent.py,sha256=UJBhVVpPwNB0fcHtHeJk2U0TKQtVnWe9R-_BNXVZlw4,19424
|
|
7
7
|
nat/agent/react_agent/output_parser.py,sha256=m7K6wRwtckBBpAHqOf3BZ9mqZLwrP13Kxz5fvNxbyZE,4219
|
|
8
8
|
nat/agent/react_agent/prompt.py,sha256=iGPBU6kh1xbp4QsU1p3o4A0JDov23J1EVM3HSAX6S0A,1713
|
|
9
|
-
nat/agent/react_agent/register.py,sha256=
|
|
9
|
+
nat/agent/react_agent/register.py,sha256=g3xkVWqr1p26Gjk4OJF_kolV6WBtS5GJkLvFHG7e7-I,8099
|
|
10
10
|
nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
nat/agent/reasoning_agent/reasoning_agent.py,sha256=
|
|
11
|
+
nat/agent/reasoning_agent/reasoning_agent.py,sha256=2NDDHeesM2s2PnJfRsv2OTYjeajR1rYUVDvJZLzWGAQ,9434
|
|
12
12
|
nat/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
nat/agent/rewoo_agent/agent.py,sha256=BE4w8Tk1XvxN3qH-lbrT03RQlGP7WAEFfqXjAly8JCM,19009
|
|
14
|
-
nat/agent/rewoo_agent/prompt.py,sha256=
|
|
15
|
-
nat/agent/rewoo_agent/register.py,sha256=
|
|
14
|
+
nat/agent/rewoo_agent/prompt.py,sha256=yRDaH8qMVBVchz--rZIJt8dP3GgFi4akVpclt-q1lHw,3673
|
|
15
|
+
nat/agent/rewoo_agent/register.py,sha256=6lZVKi7dWC9324mqAMvsO4pLAAz1Vv914NlhFWvAYwk,8411
|
|
16
16
|
nat/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
nat/agent/tool_calling_agent/agent.py,sha256=tKcVIV1EI0D9qlSDUJ7mJOhWCAotFBka2Ii0f4mukoU,5718
|
|
18
18
|
nat/agent/tool_calling_agent/register.py,sha256=iUZ53Ki-KfNwJ-R17r7a3JqmKdKbZCNZReUK0uPJfbU,5413
|
|
19
19
|
nat/authentication/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
20
|
-
nat/authentication/interfaces.py,sha256=
|
|
20
|
+
nat/authentication/interfaces.py,sha256=FAYM-QXVUn3a_8bmAZ7kP-lmN_BrLW8mo6krZJ3e0ME,3314
|
|
21
21
|
nat/authentication/register.py,sha256=4-HP_f6wzTloTth7SEyJMRjnoYqTL22W7AQUoNVIKKU,947
|
|
22
22
|
nat/authentication/api_key/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
23
23
|
nat/authentication/api_key/api_key_auth_provider.py,sha256=d6b1nN2BvFvPhMD_6OjLLjpOmO4JT1ZW7CHqaKfeoDM,4057
|
|
@@ -26,30 +26,30 @@ nat/authentication/api_key/register.py,sha256=Mhv3WyZ9H7C2JN8VuPvwlsJEZrwXJCLXCI
|
|
|
26
26
|
nat/authentication/exceptions/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
27
27
|
nat/authentication/exceptions/api_key_exceptions.py,sha256=6wnz951BI77rFYuHxoHOthz-y5oE08uxsuM6G5EvOyM,1545
|
|
28
28
|
nat/authentication/http_basic_auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
nat/authentication/http_basic_auth/http_basic_auth_provider.py,sha256=
|
|
29
|
+
nat/authentication/http_basic_auth/http_basic_auth_provider.py,sha256=vmukbeI32aK6Ulc-yoaFHszr6BqmCvZHIpKr4-arMhs,3442
|
|
30
30
|
nat/authentication/http_basic_auth/register.py,sha256=N2VD0vw7cYABsLxsGXl5yw0htc8adkrB0Y_EMxKwFfk,1235
|
|
31
31
|
nat/authentication/oauth2/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
32
|
-
nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=
|
|
32
|
+
nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=iFp_kImFwDrweFHGTg4n9RGybH3-wRSJkyh-FPOxwDA,4538
|
|
33
33
|
nat/authentication/oauth2/oauth2_auth_code_flow_provider_config.py,sha256=e165ysd2pX2WTbV3_FQKEjEaa4TAXkJ7B98WUGbqnGE,2204
|
|
34
34
|
nat/authentication/oauth2/register.py,sha256=7rXhf-ilgSS_bUJsd9pOOCotL1FM8dKUt3ke1TllKkQ,1228
|
|
35
35
|
nat/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
nat/builder/builder.py,sha256=df_KvzFKowwXopadDW__d-o46ta7imR5YhOzgwq0ejY,10059
|
|
37
|
-
nat/builder/component_utils.py,sha256=
|
|
38
|
-
nat/builder/context.py,sha256=
|
|
37
|
+
nat/builder/component_utils.py,sha256=Gnk0G9tIWEAZ8jD8LrDIYKf3d3OBh-eqgPimJcFmiUk,13575
|
|
38
|
+
nat/builder/context.py,sha256=Nfbn4BDzkLDt7FUkq54B7-_0V8qmzxHoLCO5KZs9NWQ,11025
|
|
39
39
|
nat/builder/embedder.py,sha256=NPkOEcxt_-wc53QRijCQQDLretRUYHRYaKoYmarmrBk,965
|
|
40
40
|
nat/builder/eval_builder.py,sha256=nwDDgI1tjNqqkwYREkiaA6uYzf-WXos1-RO8jI-Qy9w,6605
|
|
41
41
|
nat/builder/evaluator.py,sha256=xWHMND2vcAUkdFP7FU3jnVki1rUHeTa0-9saFh2hWKs,1162
|
|
42
42
|
nat/builder/framework_enum.py,sha256=eYwHQifZ86dx-OTubVA3qhCLRqhB4ElMBYBGA0gYtic,885
|
|
43
|
-
nat/builder/front_end.py,sha256=
|
|
43
|
+
nat/builder/front_end.py,sha256=mHooS1M7mVo1swSgbYoqbzQENXkuG7_Es9q4gFiuL8E,2175
|
|
44
44
|
nat/builder/function.py,sha256=XTktk98Gl2Z0Nt0Zp60gbIQBNXR9AoEr8HPwyF8LE5c,13173
|
|
45
|
-
nat/builder/function_base.py,sha256=
|
|
46
|
-
nat/builder/function_info.py,sha256=
|
|
47
|
-
nat/builder/intermediate_step_manager.py,sha256=
|
|
45
|
+
nat/builder/function_base.py,sha256=KnL8z_-vusiKdEkB9M1QW2Zc_RA1w8GIVrDQ09T4WvU,13248
|
|
46
|
+
nat/builder/function_info.py,sha256=VdWGWWfJEdKa83kmDpXzlIcSJkEdFFMXkozmbuZro-M,25258
|
|
47
|
+
nat/builder/intermediate_step_manager.py,sha256=iOuMLWTaES0J0XzaLxhTUqFvuoCAChJu3V69T43K0k0,7599
|
|
48
48
|
nat/builder/llm.py,sha256=DW-2q64A06VChsXNEL5PfBjH3DcsnTKVoCEWDuP7MF4,951
|
|
49
49
|
nat/builder/retriever.py,sha256=ZyEqc7pFK31t_yr6Jaxa34c-tRas2edKqJZCNiVh9-0,970
|
|
50
|
-
nat/builder/user_interaction_manager.py,sha256=
|
|
50
|
+
nat/builder/user_interaction_manager.py,sha256=jvDllGmSvrPRQSi7B71jf3Erx3CnQHHcZkN6eo2oJ4M,3051
|
|
51
51
|
nat/builder/workflow.py,sha256=xYthDJRU_8PeF38DHVuqOROjSGxvoKCw-rY32b1e0k8,6361
|
|
52
|
-
nat/builder/workflow_builder.py,sha256=
|
|
52
|
+
nat/builder/workflow_builder.py,sha256=58F6ucTY5isKzMtNxAx3cxWPCqPFyQPOoVAkeKqtJHc,46220
|
|
53
53
|
nat/cli/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
54
54
|
nat/cli/entrypoint.py,sha256=Nip28QDI84h4vlsVsBBvD7CAdchSdVRLz4UkT2CerqY,4831
|
|
55
55
|
nat/cli/main.py,sha256=KzUSDB1TGzHRP_Fnq5XJRopx-i9S2oycgQrXrf2vDkE,2164
|
|
@@ -57,58 +57,58 @@ nat/cli/register_workflow.py,sha256=AUTPSNo5xXRIOR8u91HEMHJZ_W0pQKak9KR7mvi1Brc,
|
|
|
57
57
|
nat/cli/type_registry.py,sha256=fC2S7VMxasFGBgSwsleyeog2iuPtvD9iwypMZlXm8IQ,45884
|
|
58
58
|
nat/cli/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
nat/cli/cli_utils/config_override.py,sha256=37GcZm9NnSCyw_OuOv55CXC9EI4pqD_unVOHX3_DQSM,8919
|
|
60
|
-
nat/cli/cli_utils/validation.py,sha256=
|
|
60
|
+
nat/cli/cli_utils/validation.py,sha256=KVZvAkWZx-QVVBuCFTcH2muLzMB7ONQA1GE2TzEVN78,1288
|
|
61
61
|
nat/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
nat/cli/commands/evaluate.py,sha256=
|
|
63
|
-
nat/cli/commands/start.py,sha256=
|
|
62
|
+
nat/cli/commands/evaluate.py,sha256=wSoImgarbX1DMssslKluIa_itj7KtfyCKKw3bU7-PXE,4783
|
|
63
|
+
nat/cli/commands/start.py,sha256=tjbJcAq-YhrCRRg317cMSkeDlbF7GxIDOgskQH9Kc14,9797
|
|
64
64
|
nat/cli/commands/uninstall.py,sha256=TZFRb4I8QosJaIsu8N7SL0T488cRsIpXTFKH3OUCz9A,3195
|
|
65
65
|
nat/cli/commands/validate.py,sha256=mseAUfwRP8RL2Jc_a7MA9_0j9CRQFojEFPTPSuLiFGI,1669
|
|
66
66
|
nat/cli/commands/configure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
-
nat/cli/commands/configure/configure.py,sha256=
|
|
67
|
+
nat/cli/commands/configure/configure.py,sha256=Pql8YDW0q4Ch4HPWlDoton7FqfLbLoaUpn3eAbS6gkQ,1091
|
|
68
68
|
nat/cli/commands/configure/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
nat/cli/commands/configure/channel/add.py,sha256=
|
|
70
|
-
nat/cli/commands/configure/channel/channel.py,sha256=
|
|
71
|
-
nat/cli/commands/configure/channel/remove.py,sha256=
|
|
72
|
-
nat/cli/commands/configure/channel/update.py,sha256=
|
|
69
|
+
nat/cli/commands/configure/channel/add.py,sha256=axoPwtqA7a0nw7-xyfHBRvMLVLI0jV6b5PaMu1hMTqo,1068
|
|
70
|
+
nat/cli/commands/configure/channel/channel.py,sha256=RUA3ajmiYL1muhO71uwSR9jb7hKt2wroggwem_e0sLI,1187
|
|
71
|
+
nat/cli/commands/configure/channel/remove.py,sha256=GgLudl7SWyvhqLUuRLijXn2SdugsiOiZkkR-vLlKCcw,1096
|
|
72
|
+
nat/cli/commands/configure/channel/update.py,sha256=hcuAWJFhac3x3jurQRySsX_T-SA3S2308EjRhWBJOO8,1091
|
|
73
73
|
nat/cli/commands/info/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
74
|
-
nat/cli/commands/info/info.py,sha256=
|
|
74
|
+
nat/cli/commands/info/info.py,sha256=5_s2_MMYn6ZLQpADdZ3aVRg4uvyXvF-4xVJclXxN15U,1317
|
|
75
75
|
nat/cli/commands/info/list_channels.py,sha256=clDoGke747suDS5HAF0-6_TW3h8jDkUU57ELc0bjRBI,1292
|
|
76
|
-
nat/cli/commands/info/list_components.py,sha256=
|
|
77
|
-
nat/cli/commands/info/list_mcp.py,sha256=
|
|
76
|
+
nat/cli/commands/info/list_components.py,sha256=icPJU8iif5YMFKRQlW2dAAJcCiC_MsSIWRshMwsJHb0,4452
|
|
77
|
+
nat/cli/commands/info/list_mcp.py,sha256=63BLWO_vn1uUVYDkzKLfgxRe5TZ0vWgiIZKyVHIDc90,12643
|
|
78
78
|
nat/cli/commands/registry/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
79
|
-
nat/cli/commands/registry/publish.py,sha256=
|
|
80
|
-
nat/cli/commands/registry/pull.py,sha256=
|
|
81
|
-
nat/cli/commands/registry/registry.py,sha256=
|
|
82
|
-
nat/cli/commands/registry/remove.py,sha256=
|
|
83
|
-
nat/cli/commands/registry/search.py,sha256=
|
|
79
|
+
nat/cli/commands/registry/publish.py,sha256=2E8WdVP6dZSgZ4tx9mpkTVbFDQwYDAEncOmmhJhYjKY,3202
|
|
80
|
+
nat/cli/commands/registry/pull.py,sha256=Aw9rO0kGkdMJSIn91_lsuP3rhVY0AjL85RlWJazmWvU,4095
|
|
81
|
+
nat/cli/commands/registry/registry.py,sha256=EN6beFCQ9BjBqvYdrFqsbPd_a4ibaixC10BD5kevBNI,1303
|
|
82
|
+
nat/cli/commands/registry/remove.py,sha256=7TBo8q0ng2pQaz-0_yqafVvYYiSdqx9HV7F1z62s4LA,3891
|
|
83
|
+
nat/cli/commands/registry/search.py,sha256=HEh4vMY9LtPgt0pmSwkuiJK2sHJ_cYwx9kwIwipymkQ,5086
|
|
84
84
|
nat/cli/commands/sizing/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
85
85
|
nat/cli/commands/sizing/calc.py,sha256=3cJHKCbzvV7EwYfLcpfk3_Ki7soAjOaiBcLK-Q6hPVA,11150
|
|
86
86
|
nat/cli/commands/sizing/sizing.py,sha256=-Hr9mz_ScEMtBbn6ijvmmWVk0WybLeX0Ryi4qhDiYQU,902
|
|
87
87
|
nat/cli/commands/workflow/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
88
88
|
nat/cli/commands/workflow/workflow.py,sha256=40nIOehOX-4xI-qJqJraBX3XVz3l2VtFsZkMQYd897w,1342
|
|
89
|
-
nat/cli/commands/workflow/workflow_commands.py,sha256=
|
|
89
|
+
nat/cli/commands/workflow/workflow_commands.py,sha256=ot47b_z6X01-xbW79n6_A5w2P_wyg2pqqpLppVisk10,11882
|
|
90
90
|
nat/cli/commands/workflow/templates/__init__.py.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
91
|
nat/cli/commands/workflow/templates/config.yml.j2,sha256=KkZl1fOMVQVFBW-BD_d0Lu8kQgNBtjNpfojhSCPu4uA,222
|
|
92
|
-
nat/cli/commands/workflow/templates/pyproject.toml.j2,sha256
|
|
92
|
+
nat/cli/commands/workflow/templates/pyproject.toml.j2,sha256=-g0lB0V_ndkmNvG5ZD63hFVJ-BaK1O7M4AzD4iGWqs0,740
|
|
93
93
|
nat/cli/commands/workflow/templates/register.py.j2,sha256=SlOFmIZakPDu_E6DbIhUZ3yP8KhTrAQCFGBuhy9Fyg4,170
|
|
94
94
|
nat/cli/commands/workflow/templates/workflow.py.j2,sha256=Z4uZPG9rtf1nxF74dF4DqDtrF3uYmYUmWowDFbQBjao,1241
|
|
95
95
|
nat/data_models/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
96
|
-
nat/data_models/api_server.py,sha256=
|
|
96
|
+
nat/data_models/api_server.py,sha256=J9G4aYV2TmIsMNEQtwHZYriyyjynghyHHIa7uwileFM,25689
|
|
97
97
|
nat/data_models/authentication.py,sha256=kF-eTOiKuEsvHFAPy-WQxumeSIhtjny59Wci1uh84qo,7349
|
|
98
98
|
nat/data_models/common.py,sha256=y_8AiWmTEaMjCMayVaFYddhv2AAou8Pr84isHgGxeUg,5874
|
|
99
99
|
nat/data_models/component.py,sha256=YURCaCPnaa6ZPVzSMHHm3iFkqnxGhUHvxUWY8bRKlnI,1816
|
|
100
|
-
nat/data_models/component_ref.py,sha256=
|
|
100
|
+
nat/data_models/component_ref.py,sha256=mVkaVv55xfTYXUxl28gGWHlKFT73IqUGwFkKaBLVVuw,4518
|
|
101
101
|
nat/data_models/config.py,sha256=1ymUL8COKLKVLXw-ZXcqREjJdAyAcjjrY-Z27Bsb3DM,17189
|
|
102
|
-
nat/data_models/dataset_handler.py,sha256=
|
|
103
|
-
nat/data_models/discovery_metadata.py,sha256=
|
|
102
|
+
nat/data_models/dataset_handler.py,sha256=UDQLpStUwLEMm0e6BvuOFEsHYSopWu5DhinxEv2U6og,5523
|
|
103
|
+
nat/data_models/discovery_metadata.py,sha256=cIAheyVuWksB5Tnv8yB65k4kPaCSUXrbcO75O7puUTc,13492
|
|
104
104
|
nat/data_models/embedder.py,sha256=nPhthEQDtzAMGd8gFRB1ZfJpN5M9DJvv0h28ohHnTmI,1002
|
|
105
|
-
nat/data_models/evaluate.py,sha256=
|
|
105
|
+
nat/data_models/evaluate.py,sha256=wn5vItQQhRm5V6jSPtKxUAVsWYOCc3gwRpTG6FPeAD0,4708
|
|
106
106
|
nat/data_models/evaluator.py,sha256=bd2njsyQB2t6ClJ66gJiCjYHsQpWZwPD7rsU0J109TI,939
|
|
107
107
|
nat/data_models/front_end.py,sha256=z8k6lSWjt1vMOYFbjWQxodpwAqPeuGS0hRBjsriDW2s,932
|
|
108
108
|
nat/data_models/function.py,sha256=M_duXVXL5MvYe0WVLvqEgEzXs0UAYNSMfy9ZTpxuKPA,1013
|
|
109
109
|
nat/data_models/function_dependencies.py,sha256=NOPUF7W-OxiJ76nI8MwgVs6kky-rQjgRkLeTJh-7pvg,2732
|
|
110
110
|
nat/data_models/interactive.py,sha256=qOkxyYPQYEBIBMDAA1rjfYcdvf6-iCM4qPV8Awc4VGw,8794
|
|
111
|
-
nat/data_models/intermediate_step.py,sha256=
|
|
111
|
+
nat/data_models/intermediate_step.py,sha256=RBv3B_iEhEb3SwPNswqc-DacZsd32IZjAjvh3-crTjo,11709
|
|
112
112
|
nat/data_models/invocation_node.py,sha256=nDRylgzBfJduGA-lme9xN4P6BdOYj0L6ytLHnTuetMI,1618
|
|
113
113
|
nat/data_models/llm.py,sha256=PCTeCPg2YnYk5tvSu7XOEVr2Cg_wSkjAdVsoiTg8Joo,968
|
|
114
114
|
nat/data_models/logging.py,sha256=1QtVjIQ99PgMYUuzw4h1FAoPRteZY7uf3oFTqV3ONgA,940
|
|
@@ -125,13 +125,12 @@ nat/data_models/swe_bench_model.py,sha256=dmgU1M-lL7bUO3gD7wkeDkffPf65cxF1ijgELk
|
|
|
125
125
|
nat/data_models/telemetry_exporter.py,sha256=P7kqxIQnFVuvo_UFpH9QSB8fACy_0U2Uzkw_IfWXagE,998
|
|
126
126
|
nat/data_models/ttc_strategy.py,sha256=tAkKWcyEBmBOOYtHMtQTgeCbHxFTk5SEkmFunNVnfyE,1114
|
|
127
127
|
nat/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
|
-
nat/embedder/langchain_client.py,sha256=QXzL7xY7UvaGW6yUZzOc9038hxU6oTeOOZYNW-_dfvY,1751
|
|
129
128
|
nat/embedder/nim_embedder.py,sha256=cB2ttl2FwKW_OcIzIHswu8twcBYlc9tM9D0wAWjKc1A,2517
|
|
130
129
|
nat/embedder/openai_embedder.py,sha256=8dkYVup-JGxhnMlYkcXmMoegKAhOL1yFFFcUhj_9PrI,2008
|
|
131
|
-
nat/embedder/register.py,sha256=
|
|
130
|
+
nat/embedder/register.py,sha256=hvA3T42-YQCrHLvEzhEoB-HS09RojLogcOVdO4-GaXs,879
|
|
132
131
|
nat/eval/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
133
132
|
nat/eval/config.py,sha256=c_lSMgmIjKO7l-5JBbMVdnBfnWhAzM7IRQFDjCoFEo0,2271
|
|
134
|
-
nat/eval/evaluate.py,sha256=
|
|
133
|
+
nat/eval/evaluate.py,sha256=yrTsHLMHJyKQmLMybzQ7WjkVb4XLDHeWRqLwcKSUpn4,23650
|
|
135
134
|
nat/eval/intermediate_step_adapter.py,sha256=E1AqH0hO_NNUT7nRGkIllitYJAszjjubul0IUwq-cyc,4498
|
|
136
135
|
nat/eval/register.py,sha256=QOHJqA2CQixeWMC9InyKbzXo1jByvrntD_m9-2Mvg9k,1076
|
|
137
136
|
nat/eval/remote_workflow.py,sha256=IUsWHbAShBY5GgTsG9qTwK-SqRwrSNZM9CUfzBhlWo8,6012
|
|
@@ -140,18 +139,18 @@ nat/eval/usage_stats.py,sha256=_d_ErIvSKDN8wuvOyPn01kqM7zlFpwVxqOonaCV5XtY,1319
|
|
|
140
139
|
nat/eval/dataset_handler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
140
|
nat/eval/dataset_handler/dataset_downloader.py,sha256=w5Kjj7Dn2gQ14ekgt3rtGT8EPGJtXXXlckbtby9rJ2k,4553
|
|
142
141
|
nat/eval/dataset_handler/dataset_filter.py,sha256=HrK0m3SQnPX6zOcKwJwYMrD9O-f6aOw8Vo3j9RKszqE,2115
|
|
143
|
-
nat/eval/dataset_handler/dataset_handler.py,sha256=
|
|
142
|
+
nat/eval/dataset_handler/dataset_handler.py,sha256=IDkB98DAUv3Ofnmej7nOODzLr7lMHJOjGEWResqDvJQ,15269
|
|
144
143
|
nat/eval/evaluator/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
145
144
|
nat/eval/evaluator/base_evaluator.py,sha256=pubxUm2DXkruSiYPkzezPj3-gzFEDAFGTYYTw7iXglU,3233
|
|
146
|
-
nat/eval/evaluator/evaluator_model.py,sha256=
|
|
145
|
+
nat/eval/evaluator/evaluator_model.py,sha256=Mjf6kVpL__zCoL2B7vRkXxdNXRdFC3bJ6giRPZPLEzI,1515
|
|
147
146
|
nat/eval/rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
148
|
-
nat/eval/rag_evaluator/evaluate.py,sha256=
|
|
147
|
+
nat/eval/rag_evaluator/evaluate.py,sha256=qvpa6FdQNQmChU6op1aELw9_Dabd81cSQ-HHQVOBjwc,8399
|
|
149
148
|
nat/eval/rag_evaluator/register.py,sha256=TOSTuWxZLj2CYvs5n5RXh3j_9O_P2GYhYvcZHKUT1qU,5889
|
|
150
149
|
nat/eval/runners/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
151
150
|
nat/eval/runners/config.py,sha256=bRPai_th02OJrFepbbY6w-t7A18TBXozQUnnnH9iWIU,1403
|
|
152
151
|
nat/eval/runners/multi_eval_runner.py,sha256=3YSHOHjGFSlMxVEkuphUsCW5H5w73k3xD-W2rFNRWqE,1986
|
|
153
152
|
nat/eval/swe_bench_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
|
-
nat/eval/swe_bench_evaluator/evaluate.py,sha256=
|
|
153
|
+
nat/eval/swe_bench_evaluator/evaluate.py,sha256=Fyt6OAVtoDKQzLs0FwUshXZAP8s5T492MY0hSEA3Mes,9858
|
|
155
154
|
nat/eval/swe_bench_evaluator/register.py,sha256=5mzvBTUBdqahBZNU4KjB1go81cObo9F4iA3y_eOJ86g,1537
|
|
156
155
|
nat/eval/trajectory_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
156
|
nat/eval/trajectory_evaluator/evaluate.py,sha256=GXLT0cfbaCWhN25bBS8uYOh7m90O6NVBL4o1xhlXWCE,3257
|
|
@@ -171,12 +170,12 @@ nat/experimental/test_time_compute/register.py,sha256=MWDEfLLB8agI2_2_8of5_C0q3W
|
|
|
171
170
|
nat/experimental/test_time_compute/editing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
171
|
nat/experimental/test_time_compute/editing/iterative_plan_refinement_editor.py,sha256=uh0vJFDUucSSd_boU9pwPm5JD674Hhhe5CQxvFWfHlg,6137
|
|
173
172
|
nat/experimental/test_time_compute/editing/llm_as_a_judge_editor.py,sha256=QAu46omTvXJOqWzN_Xeeuhf25R0WxHqMjAdXcB9IxqQ,8539
|
|
174
|
-
nat/experimental/test_time_compute/editing/motivation_aware_summarization.py,sha256=
|
|
173
|
+
nat/experimental/test_time_compute/editing/motivation_aware_summarization.py,sha256=S7s_BigZ1ru-3lP7c58Zpt5Nxavi8Ko-A1cmH7KkX3s,4503
|
|
175
174
|
nat/experimental/test_time_compute/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
175
|
nat/experimental/test_time_compute/functions/execute_score_select_function.py,sha256=OHiQ01a6g3OEd-K1WZynuQspmrvBpgKKxxqO-UbM4z0,4550
|
|
177
|
-
nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=
|
|
176
|
+
nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=kR3VA3BYSngI0F8xzkKX36yw8CADaToGqXBzoO02kQQ,9832
|
|
178
177
|
nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py,sha256=ujooFqyiS8r33VIWhKlLyftlGAGmDHx5XfpUi_bt6BM,8421
|
|
179
|
-
nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py,sha256=
|
|
178
|
+
nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py,sha256=H4LmatlubHGTUBXAp-8LIK8Z6bUid0W_8EuigaGU89Q,6907
|
|
180
179
|
nat/experimental/test_time_compute/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
180
|
nat/experimental/test_time_compute/models/editor_config.py,sha256=wFHcd4GjWy4fxuXrYnC0gJ0ZszsAjziohK8vS7cc8EA,7153
|
|
182
181
|
nat/experimental/test_time_compute/models/scoring_config.py,sha256=zi93HQrtY1FiRuZgDOdlDZql6T-1W6SteybSUMXjr8U,5500
|
|
@@ -187,39 +186,39 @@ nat/experimental/test_time_compute/models/strategy_base.py,sha256=QeJpJqkDEfXjlk
|
|
|
187
186
|
nat/experimental/test_time_compute/models/tool_use_config.py,sha256=WX6Z2ODGElDA7Io8wBxtDkk3jUQGtHLukS6a-ivSZnE,1617
|
|
188
187
|
nat/experimental/test_time_compute/models/ttc_item.py,sha256=E7WEYBmLKo5fth8oljnGF32lojkz31LZIZWNVnk_B3U,2387
|
|
189
188
|
nat/experimental/test_time_compute/scoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
190
|
-
nat/experimental/test_time_compute/scoring/llm_based_agent_scorer.py,sha256=
|
|
191
|
-
nat/experimental/test_time_compute/scoring/llm_based_plan_scorer.py,sha256=
|
|
189
|
+
nat/experimental/test_time_compute/scoring/llm_based_agent_scorer.py,sha256=L5Q3PBhEFvLhhbEhJqAb2aOyRdGxsUVoN4hMgDY5LNk,6608
|
|
190
|
+
nat/experimental/test_time_compute/scoring/llm_based_plan_scorer.py,sha256=WpUDgzjNTHVLULi7apzN4uJEBmevdZSRygBznotm03M,6501
|
|
192
191
|
nat/experimental/test_time_compute/scoring/motivation_aware_scorer.py,sha256=YxDBBPKn5LelVEV4j5q_ibEhl0erYhNQ3fDQ9y42S3w,4588
|
|
193
192
|
nat/experimental/test_time_compute/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
|
-
nat/experimental/test_time_compute/search/multi_llm_planner.py,sha256=
|
|
195
|
-
nat/experimental/test_time_compute/search/multi_query_retrieval_search.py,sha256=
|
|
196
|
-
nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py,sha256=
|
|
193
|
+
nat/experimental/test_time_compute/search/multi_llm_planner.py,sha256=i1wNoVXM0J86Nl_MxwP5Pyns8YeuADw2usCX1khh2B0,5771
|
|
194
|
+
nat/experimental/test_time_compute/search/multi_query_retrieval_search.py,sha256=VjOxtZcZ33fLqiqWyXRKg3GYBKqBYG4a_aEgzfjVdT8,5281
|
|
195
|
+
nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py,sha256=ult-gBGpp_RPFSnGirqi0j_Y4vMoFDdqkOHfCeLemaw,5691
|
|
197
196
|
nat/experimental/test_time_compute/selection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
197
|
nat/experimental/test_time_compute/selection/best_of_n_selector.py,sha256=0cFHOTfNsHSguP6Xw5f3MMgJZR-pbkaa4xQCACEOqqg,2489
|
|
199
|
-
nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py,sha256=
|
|
200
|
-
nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py,sha256=
|
|
201
|
-
nat/experimental/test_time_compute/selection/llm_based_plan_selector.py,sha256=
|
|
198
|
+
nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py,sha256=qAVrMck-iDDVci3rg4F_jCky6QEwmJFzWw-2HB0G6EU,5798
|
|
199
|
+
nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py,sha256=YTX_unhwH5oQ1W0wKKeIvwJALoeAPV-YfgpgsCUkmqI,6756
|
|
200
|
+
nat/experimental/test_time_compute/selection/llm_based_plan_selector.py,sha256=GY85s6mxHcILeXS5GK_-F-mDYrArOw1WB1JsYorrrcQ,5611
|
|
202
201
|
nat/experimental/test_time_compute/selection/threshold_selector.py,sha256=9E__TMt5sOhm-KLTWdGKUrxQ6cKYqFjO-CoF_kNILPk,2415
|
|
203
202
|
nat/front_ends/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
204
203
|
nat/front_ends/register.py,sha256=OKv1xi-g8WHtUMuIPhwjG6wOYqaGDD-Q9vDtKtT9d1Y,889
|
|
205
204
|
nat/front_ends/console/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
206
205
|
nat/front_ends/console/authentication_flow_handler.py,sha256=Q1A7dv-pUlzsGZ8NXu8r-aGCqRiFqadPPBOw2TmyUNk,9566
|
|
207
|
-
nat/front_ends/console/console_front_end_config.py,sha256=
|
|
206
|
+
nat/front_ends/console/console_front_end_config.py,sha256=wkMXk-RCdlEj3303kB1gh47UKJnubX2R-vzBzhedpS4,1318
|
|
208
207
|
nat/front_ends/console/console_front_end_plugin.py,sha256=BJ1o2IflZeFKC2gGfL_gI24pg0t2inT33H0Z14wCwY4,3931
|
|
209
208
|
nat/front_ends/console/register.py,sha256=2Kf6Mthx6jzWzU8YdhYIR1iABmZDvs1UXM_20npXWXs,1153
|
|
210
209
|
nat/front_ends/cron/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
211
210
|
nat/front_ends/fastapi/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
212
|
-
nat/front_ends/fastapi/fastapi_front_end_config.py,sha256
|
|
211
|
+
nat/front_ends/fastapi/fastapi_front_end_config.py,sha256=-fkA7sJ2sBHmCvxdTyd-JJSLc1inVnT_pXa6kmmuGI4,10849
|
|
213
212
|
nat/front_ends/fastapi/fastapi_front_end_controller.py,sha256=vs-VIWHd-YW1w2t-ifYqJ0jy5_SoD-11VyeojW_up5Y,2596
|
|
214
|
-
nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=
|
|
215
|
-
nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=
|
|
216
|
-
nat/front_ends/fastapi/intermediate_steps_subscriber.py,sha256=
|
|
213
|
+
nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=zOmryQcB1jEosXuGwcBbxmZUnTFY5PMpn3EYLBOj4tU,4428
|
|
214
|
+
nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=gtxVtk_mHzWqcL_wH9QOWWNBT4ksJqyRqe3Gk9cWuqc,52043
|
|
215
|
+
nat/front_ends/fastapi/intermediate_steps_subscriber.py,sha256=kbyWlBVpyvyQQjeUnFG9nsR4RaqqNkx567ZSVwwl2RU,3104
|
|
217
216
|
nat/front_ends/fastapi/job_store.py,sha256=AZC0a8miKqSI9YbW19-AA_GPITVY9bYHXn9H8saNrfQ,6389
|
|
218
|
-
nat/front_ends/fastapi/main.py,sha256=
|
|
219
|
-
nat/front_ends/fastapi/message_handler.py,sha256=
|
|
220
|
-
nat/front_ends/fastapi/message_validator.py,sha256=
|
|
217
|
+
nat/front_ends/fastapi/main.py,sha256=QQuwvgYsNuvcRzWmo3FVz1BZBm-DynaC5IJloloheBs,2917
|
|
218
|
+
nat/front_ends/fastapi/message_handler.py,sha256=xdz4335uz2a2PbwXVIjPAqyCtqrhKNaO7mHlKUZCKqY,15139
|
|
219
|
+
nat/front_ends/fastapi/message_validator.py,sha256=2XS-md_7pyYknPMlmCgnJvwdXvD-ZKBAp0yDe5fvotk,17869
|
|
221
220
|
nat/front_ends/fastapi/register.py,sha256=rA12NPFgV9ZNHOEIgB7_SB6NytjRxgBTLo7fJ-73_HM,1153
|
|
222
|
-
nat/front_ends/fastapi/response_helpers.py,sha256=
|
|
221
|
+
nat/front_ends/fastapi/response_helpers.py,sha256=jq6CoFV4_kMVSJ1j5icF3dczxNRAv5m_9RRkLmeWXdo,9042
|
|
223
222
|
nat/front_ends/fastapi/step_adaptor.py,sha256=THpcJptGJyDN9E08Y6hAr2ChKhBrJt4RTa5m7GDorTc,12448
|
|
224
223
|
nat/front_ends/fastapi/auth_flow_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
224
|
nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py,sha256=69ye-nJ81jAoD1cVYv86-AUYu2-Uk8ZqU_m8AVO9vT8,1280
|
|
@@ -227,11 +226,11 @@ nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=5HX6m
|
|
|
227
226
|
nat/front_ends/fastapi/html_snippets/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
228
227
|
nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py,sha256=BNpWwzmA58UM0GK4kZXG4PHJy_5K9ihaVHu8SgCs5JA,1131
|
|
229
228
|
nat/front_ends/mcp/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
230
|
-
nat/front_ends/mcp/mcp_front_end_config.py,sha256=
|
|
229
|
+
nat/front_ends/mcp/mcp_front_end_config.py,sha256=QS8DUVOPqg71RrU7gtw_gBApmmADUAZHNy69I425QNg,1826
|
|
231
230
|
nat/front_ends/mcp/mcp_front_end_plugin.py,sha256=kHR7jhenSuibrsKoXVHAeLoAiDcZxalStYEFR-38gDo,3243
|
|
232
|
-
nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=
|
|
231
|
+
nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=Ssgv6ORdRmdfANLSehOCuTr_zzUS9Ok6Rkn7uWNyoZk,5249
|
|
233
232
|
nat/front_ends/mcp/register.py,sha256=3aJtgG5VaiqujoeU1-Eq7Hl5pWslIlIwGFU2ASLTXgM,1173
|
|
234
|
-
nat/front_ends/mcp/tool_converter.py,sha256=
|
|
233
|
+
nat/front_ends/mcp/tool_converter.py,sha256=rCvFL8lrztkjC0nFtfzgfFrPK_IUKk-M_er8jBCM9Ic,9755
|
|
235
234
|
nat/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
236
235
|
nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=3kevZVhvzj_Wvu8HYhRz-CRrO2OldW6wcmtcsIQCELk,1765
|
|
237
236
|
nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -242,25 +241,24 @@ nat/llm/register.py,sha256=GMsFzhupP_rwSVkIoJUT8j0CRhWyC4X58ihnO_l9OkM,899
|
|
|
242
241
|
nat/llm/utils/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
243
242
|
nat/llm/utils/env_config_value.py,sha256=SBpppIRszDXNcEEG2L6kVojY7LH_EpHfK7bu92TGrE4,3568
|
|
244
243
|
nat/llm/utils/error.py,sha256=gFFDG_v_3hBZVWpcD7HWkno-NBHDjXae7qDGnfiCNwA,820
|
|
245
|
-
nat/memory/__init__.py,sha256=
|
|
244
|
+
nat/memory/__init__.py,sha256=ARS_HJipPR4mLDqw3VISSQLzeezru_vgNgsi1Ku0GRE,828
|
|
246
245
|
nat/memory/interfaces.py,sha256=lyj1TGr3Fhibul8Y64Emj-BUEqDotmmFoVCEMqTujUA,5531
|
|
247
246
|
nat/memory/models.py,sha256=c5dA7nKHQ4AS1_ptQZcfC_oXO495-ehocnf_qXTE6c8,4319
|
|
248
|
-
nat/meta/
|
|
249
|
-
nat/
|
|
250
|
-
nat/object_store/__init__.py,sha256=7JInpxFZUdqigaBaXDzUj0KTlv_2tiM-SuTOlSvadkg,847
|
|
247
|
+
nat/meta/pypi.md,sha256=6oXSSS1rmCZGbW32_mGq0qrMh0g6aSe-_E9QwIle4Og,4524
|
|
248
|
+
nat/object_store/__init__.py,sha256=81UKtZ6qcc__hfNjMnEYBHE16k7XBXX6R5IJNg1zfRs,831
|
|
251
249
|
nat/object_store/in_memory_object_store.py,sha256=98UgQK2YdXTTQjBfQS-mjBCCugm1XUB7DZCFS8xe9yQ,2644
|
|
252
250
|
nat/object_store/interfaces.py,sha256=5NbsE9TccihOf5ScG04hE1eNOaiajOZIUOeK_Kvukk8,2519
|
|
253
251
|
nat/object_store/models.py,sha256=yAEa7oZgax7OwObynv0MFCMo43xTGps5xz3SIY6-0VM,1425
|
|
254
252
|
nat/object_store/register.py,sha256=M93V17RxBXzGZaAmWboDw-S2XP7lrMEyzdlxXqC0f30,788
|
|
255
253
|
nat/observability/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
256
|
-
nat/observability/exporter_manager.py,sha256=
|
|
254
|
+
nat/observability/exporter_manager.py,sha256=5rJlgcdXIV3-EFkxVJv275V_ZGw84P9Th8LFuIZrmYo,13851
|
|
257
255
|
nat/observability/register.py,sha256=p9Izk5_iJBNxu2_E4VoaDnBoINWoTDf661FnWbLtqIk,4267
|
|
258
256
|
nat/observability/exporter/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
259
|
-
nat/observability/exporter/base_exporter.py,sha256=
|
|
257
|
+
nat/observability/exporter/base_exporter.py,sha256=taOWf3wQfxAzq3OYwhkY_AQJxElwz_amUI_r1s-_INM,16624
|
|
260
258
|
nat/observability/exporter/exporter.py,sha256=fqF0GYuhZRQEq0skq_FK2nlnsaUAzLpQi-OciaOkRno,2391
|
|
261
259
|
nat/observability/exporter/file_exporter.py,sha256=ja3FQzPJLfrwZn5h-t6K7k3pC_64TBJd5rGlAYPiak0,1490
|
|
262
260
|
nat/observability/exporter/processing_exporter.py,sha256=_hTRSzJeCx1Z3CrU3pow5YVsrxg3XoLCvdfkU_Gf5VM,14488
|
|
263
|
-
nat/observability/exporter/raw_exporter.py,sha256=
|
|
261
|
+
nat/observability/exporter/raw_exporter.py,sha256=0ROEd-DlLP6pIxl4u2zJ6PMVrDrQa0DMHFDRsdGQMIk,1859
|
|
264
262
|
nat/observability/exporter/span_exporter.py,sha256=p2rugOIyubBk_Frg1c-x-THzvFZt8q8HhYssKUp8Hdg,13250
|
|
265
263
|
nat/observability/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
266
264
|
nat/observability/mixin/batch_config_mixin.py,sha256=DixQq-jRhBFJvpOX-gq7GvPmZCPOXQdacylyEuhZ6y0,1399
|
|
@@ -284,7 +282,7 @@ nat/profiler/data_frame_row.py,sha256=vudqk1ZzZtlZln2Ir43mPl3nwNc0pQlhwbtdY9oSKt
|
|
|
284
282
|
nat/profiler/data_models.py,sha256=UAuTy9_l623JUNdIKIHPxoNEwZ7Qj-Vv93rfjxyf5Ak,1026
|
|
285
283
|
nat/profiler/inference_metrics_model.py,sha256=Thz3OHBDzGrpPYaOm8m8_pNeEA_q0yDlUUDHFkQ3U90,1481
|
|
286
284
|
nat/profiler/intermediate_property_adapter.py,sha256=cCxyldN052meVJ4Ul-vbmguum0mLdaz3syFoidkIDsg,3537
|
|
287
|
-
nat/profiler/profile_runner.py,sha256=
|
|
285
|
+
nat/profiler/profile_runner.py,sha256=kFcrKGzE3tIVziX38SUTTHXW-GKQimA82388mJei0OU,22354
|
|
288
286
|
nat/profiler/utils.py,sha256=IK4Rk5pytbg5aOGV8Ibr92jsBMTqOuX8QembOmwXrTI,8180
|
|
289
287
|
nat/profiler/calc/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
290
288
|
nat/profiler/calc/calc_runner.py,sha256=PUC7x2udUseif0brdmMiSv1LyhmEkcCVLVq8EHXJSnY,30681
|
|
@@ -292,22 +290,22 @@ nat/profiler/calc/calculations.py,sha256=K_r1OvEOEF5ffoadS4mAzTNHguVLMkNkrxrdtKv
|
|
|
292
290
|
nat/profiler/calc/data_models.py,sha256=vmBu89C1LsJyIRpEEzGi29_cFJDZJUJXOSXWtraVfd8,6172
|
|
293
291
|
nat/profiler/calc/plot.py,sha256=h_GyTg-6qU6n2ZAUCsMmXkz6ha-lrcQ903G0JxNWrzM,12222
|
|
294
292
|
nat/profiler/callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
295
|
-
nat/profiler/callbacks/agno_callback_handler.py,sha256=
|
|
293
|
+
nat/profiler/callbacks/agno_callback_handler.py,sha256=y99-QFV5-GOYN6YzM_3U_7rd-n3AkG1cmc0T9wGKUes,14908
|
|
296
294
|
nat/profiler/callbacks/base_callback_class.py,sha256=BFZMkb-dPoHAnM_4jVXX08hD8Vi2n8thyftVlUxfE24,745
|
|
297
295
|
nat/profiler/callbacks/langchain_callback_handler.py,sha256=cjZpnrmVRtEq8kji3UpheWBSzq9RTZVeuBAKC_ILD0c,12505
|
|
298
|
-
nat/profiler/callbacks/llama_index_callback_handler.py,sha256=
|
|
299
|
-
nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=
|
|
296
|
+
nat/profiler/callbacks/llama_index_callback_handler.py,sha256=UJlT8pFlchmn4OXkmV3iNc2N_uJB2OQZxTFsuUMhaaM,9317
|
|
297
|
+
nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=5bbffvxtizyDs9RyrRNxk9y_DHg2luu1KxFiWaxU484,11143
|
|
300
298
|
nat/profiler/callbacks/token_usage_base_model.py,sha256=X0b_AbBgVQAAbgbDMim-3S3XdQ7PaPs9qMUACvMAe5o,1104
|
|
301
299
|
nat/profiler/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
300
|
nat/profiler/decorators/framework_wrapper.py,sha256=fMEjJgtMAvmEL1e2L7ijyCLRhxoGJ7ylXVTno6bo4J0,5438
|
|
303
|
-
nat/profiler/decorators/function_tracking.py,sha256=
|
|
301
|
+
nat/profiler/decorators/function_tracking.py,sha256=U0miBtztTeSEnBsGVBD_utbUD6Cbf7m8eimsb4XtR5M,11087
|
|
304
302
|
nat/profiler/forecasting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
303
|
nat/profiler/forecasting/config.py,sha256=5BhMa8csuPCjEnTaNQjo_2IoO7esh1ch02MoSWkvwPw,791
|
|
306
304
|
nat/profiler/forecasting/model_trainer.py,sha256=6Ci2KN4sNj1V3yduHXlA0tn50yHUmM2VcbRRS2L96OA,2456
|
|
307
305
|
nat/profiler/forecasting/models/__init__.py,sha256=pLpWi7u1UrguKIYD-BYu8IExvJLX_U2cuW3Ifp3zCOY,937
|
|
308
306
|
nat/profiler/forecasting/models/forecasting_base_model.py,sha256=6-oe3jn-X9_m3QvkWAEJ9m7sMLlZ7VDt6yfNyWK-_18,1219
|
|
309
|
-
nat/profiler/forecasting/models/linear_model.py,sha256=
|
|
310
|
-
nat/profiler/forecasting/models/random_forest_regressor.py,sha256=
|
|
307
|
+
nat/profiler/forecasting/models/linear_model.py,sha256=YSf0tT4yLtEHW5-V02EFUks__MRiTzt0OxuwJOaJ_vc,7008
|
|
308
|
+
nat/profiler/forecasting/models/random_forest_regressor.py,sha256=fiom3CGzsy0A-8gBG0FoEfj1T4GywaQjmDf9db1fskw,9548
|
|
311
309
|
nat/profiler/inference_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
312
310
|
nat/profiler/inference_optimization/data_models.py,sha256=lK6EPAgEPtJMMpe3SFoDqx4BntJVo8fMQzLfqOMKpB0,11884
|
|
313
311
|
nat/profiler/inference_optimization/llm_metrics.py,sha256=kC8LUonJiXjQ5ogH8D7GTEYk44ypwncRJrN0ByRWz6k,9482
|
|
@@ -315,32 +313,32 @@ nat/profiler/inference_optimization/prompt_caching.py,sha256=n3kfgWibCjkXbp6_Qo8
|
|
|
315
313
|
nat/profiler/inference_optimization/token_uniqueness.py,sha256=Q8cf14V0YisDoXar7Gess0Gch7vqPLHmL892mVC86PA,4571
|
|
316
314
|
nat/profiler/inference_optimization/workflow_runtimes.py,sha256=RXCsLoWkaLi32fi8kqajhgVMIedtzljUUZ8LA-xJDEU,2664
|
|
317
315
|
nat/profiler/inference_optimization/bottleneck_analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
|
-
nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py,sha256=
|
|
316
|
+
nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py,sha256=J8gKaCe_F9PtHB051ZzqE-gyD5NMXqd2pZ9pnOqHHzI,16739
|
|
319
317
|
nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py,sha256=B711-qR949Xjb0nMK-GIAQSNDfTX-xahuAGf7taKwSk,11100
|
|
320
318
|
nat/profiler/inference_optimization/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
321
319
|
nat/profiler/inference_optimization/experimental/concurrency_spike_analysis.py,sha256=3hFMDbfW7MKxFIhO7y35qtP5wPtLAA2ZqltlnI-OsVc,16953
|
|
322
|
-
nat/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=
|
|
320
|
+
nat/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=U5ro7xcvQFq1fXY1w_8Ts8f95rowNayIDnto95UTMrA,16607
|
|
323
321
|
nat/registry_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
324
322
|
nat/registry_handlers/metadata_factory.py,sha256=MTbXa7pifVPpmLJs86jVCS1wHk5drRykNPpJuv2A_0U,2769
|
|
325
|
-
nat/registry_handlers/package_utils.py,sha256=
|
|
323
|
+
nat/registry_handlers/package_utils.py,sha256=tOU3YM4Hx7mnMPuiL17FTyK2MLtRge2ScdG-bcWg-8s,22541
|
|
326
324
|
nat/registry_handlers/register.py,sha256=k2gvV0htVpfMdzsRvZGnTZp17JA2Na8sO9ocMaxDSmo,902
|
|
327
|
-
nat/registry_handlers/registry_handler_base.py,sha256=
|
|
325
|
+
nat/registry_handlers/registry_handler_base.py,sha256=pEE1nKG824BnWlUc6y0bwAzPlrLgHeJIgcXyncY2dVg,5767
|
|
328
326
|
nat/registry_handlers/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
|
-
nat/registry_handlers/local/local_handler.py,sha256=
|
|
330
|
-
nat/registry_handlers/local/register_local.py,sha256=
|
|
327
|
+
nat/registry_handlers/local/local_handler.py,sha256=HduVG18jLm61bf8zrDCAutL8nxPssd5D1OyZomoa78c,7597
|
|
328
|
+
nat/registry_handlers/local/register_local.py,sha256=EMcQ3tvDDic4YeViz3jNIQyrUiD0foriP11CuuEmrr0,1341
|
|
331
329
|
nat/registry_handlers/pypi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
|
-
nat/registry_handlers/pypi/pypi_handler.py,sha256=
|
|
333
|
-
nat/registry_handlers/pypi/register_pypi.py,sha256=
|
|
330
|
+
nat/registry_handlers/pypi/pypi_handler.py,sha256=fezfnzN0-znqAzWCrj9nD_FQxT_cB_zT6IESBlNxjo0,10131
|
|
331
|
+
nat/registry_handlers/pypi/register_pypi.py,sha256=iFoZeAQjO_dZfzCsgp-5SmqwFDQ9y8QReVHZ0iGFoow,1840
|
|
334
332
|
nat/registry_handlers/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
335
|
-
nat/registry_handlers/rest/register_rest.py,sha256=
|
|
336
|
-
nat/registry_handlers/rest/rest_handler.py,sha256=
|
|
333
|
+
nat/registry_handlers/rest/register_rest.py,sha256=We_WtZ0KPSgCjsORRA1QNAgljEAGLeUi92mYRJ3nVQU,2529
|
|
334
|
+
nat/registry_handlers/rest/rest_handler.py,sha256=d7F6SF2o_Bebprg5VJEt3W1dSXAk8azo1USi-wGvKqQ,9434
|
|
337
335
|
nat/registry_handlers/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
336
|
nat/registry_handlers/schemas/headers.py,sha256=LnVfCMNc3vRr-lRdFB8Cuv9Db5Ct-ACTapjWLaRg2os,1549
|
|
339
|
-
nat/registry_handlers/schemas/package.py,sha256=
|
|
340
|
-
nat/registry_handlers/schemas/publish.py,sha256=
|
|
341
|
-
nat/registry_handlers/schemas/pull.py,sha256=
|
|
337
|
+
nat/registry_handlers/schemas/package.py,sha256=dVBRh1Tps_lV0k-f60mT7FwJftlVmf8JgiXie0tZZhQ,2421
|
|
338
|
+
nat/registry_handlers/schemas/publish.py,sha256=b-qMygqRard_uMrFz9aPXVQptlGGtQJKpbp8ZsI6xvw,2248
|
|
339
|
+
nat/registry_handlers/schemas/pull.py,sha256=7g_5TyC8M-80dRJeSJzVmeh5zLO2XUBs9mgut0LmGK4,2629
|
|
342
340
|
nat/registry_handlers/schemas/remove.py,sha256=BxxFfkmYxCFvbBgTyYNaRfnsq7hAphAxLQ-R7neQOOI,1390
|
|
343
|
-
nat/registry_handlers/schemas/search.py,sha256=
|
|
341
|
+
nat/registry_handlers/schemas/search.py,sha256=EyJhC9iZZm9mqG_Yovrn_-o75gkcDb0q9CFWgx5e0Bg,3157
|
|
344
342
|
nat/registry_handlers/schemas/status.py,sha256=U4c5vWsu1SqewSRSgR9ch5xji8xPSUdzaXh1IA4tByA,1473
|
|
345
343
|
nat/retriever/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
344
|
nat/retriever/interface.py,sha256=CRvx-UBFoa_bDcHrr_kkKhgUx2fthcaH_p50s59zE6Y,1413
|
|
@@ -353,26 +351,26 @@ nat/retriever/nemo_retriever/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W
|
|
|
353
351
|
nat/retriever/nemo_retriever/register.py,sha256=3XdrvEJzX2Zc8wpdm__4YYlEWBW-FK3tl_BwOWtn-4w,2893
|
|
354
352
|
nat/retriever/nemo_retriever/retriever.py,sha256=k9j4U3f5a_7LumndzNYgRl9r5RLg8Ugo2Uj76TRuMzo,6934
|
|
355
353
|
nat/runtime/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
356
|
-
nat/runtime/loader.py,sha256=
|
|
357
|
-
nat/runtime/runner.py,sha256=
|
|
358
|
-
nat/runtime/session.py,sha256=
|
|
354
|
+
nat/runtime/loader.py,sha256=MnIIToOvmHGjIWBL3B5tBkFb5-CHCfm-P3UDUkzu0YU,7967
|
|
355
|
+
nat/runtime/runner.py,sha256=771HZO52KaSM0LBsa7eq0Qp6P87w1Q_SCc-BE-uzI-0,6396
|
|
356
|
+
nat/runtime/session.py,sha256=5pePjDM7y2O7hyUX4UERt7Iq3_TJhBeZ7_kb9JvzcF4,6263
|
|
359
357
|
nat/runtime/user_metadata.py,sha256=ce37NRYJWnMOWk6A7VAQ1GQztjMmkhMOq-uYf2gNCwo,3692
|
|
360
358
|
nat/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
nat/settings/global_settings.py,sha256=
|
|
359
|
+
nat/settings/global_settings.py,sha256=NF9qmClchpTdgUXalOpcOoUFC8ZWldQaLr5TC6s3bfU,12036
|
|
362
360
|
nat/test/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
|
|
363
361
|
nat/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
nat/tool/chat_completion.py,sha256=
|
|
362
|
+
nat/tool/chat_completion.py,sha256=zB8sqEBEHW0QDcnv0NdqO43ybxe5Q-WKZr9s349UBvA,3149
|
|
365
363
|
nat/tool/datetime_tools.py,sha256=JmYFYL-e4I9_kup7m-E1cI6XfPkrwIx45qCqKPwDx24,1664
|
|
366
364
|
nat/tool/document_search.py,sha256=hHTwlwX8kpji97Ze6BUP8OaQYhR1g7u1xT0Zi_oxoIs,6793
|
|
367
365
|
nat/tool/nvidia_rag.py,sha256=NOJywoYICQnE6XUG32fPvjN0z_hR7CDoN4_UA2rN120,4178
|
|
368
366
|
nat/tool/register.py,sha256=Lwl6l_eEzS8LAELxClmniNhhLluRVZFYXhsk2ocQhNg,1491
|
|
369
|
-
nat/tool/retriever.py,sha256=
|
|
370
|
-
nat/tool/server_tools.py,sha256=
|
|
371
|
-
nat/tool/code_execution/README.md,sha256=
|
|
367
|
+
nat/tool/retriever.py,sha256=SPHFCpSmNA-KxpnfAWx3RZXDf27GDUN9vTMwU6rveok,3812
|
|
368
|
+
nat/tool/server_tools.py,sha256=rQLipwRv8lAyU-gohky2JoVDxWQTUTSttNWjhu7lcHU,3194
|
|
369
|
+
nat/tool/code_execution/README.md,sha256=sl3YX4As95HX61XqTXOGnUcHBV1lla-OeuTnLI4qgng,4019
|
|
372
370
|
nat/tool/code_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
373
371
|
nat/tool/code_execution/code_sandbox.py,sha256=AynQfmvT4mtrV5DHV-20HF8mNTDo1NX4Wj2mlpaEIfs,10159
|
|
374
372
|
nat/tool/code_execution/register.py,sha256=zPFzYqaQhH2B3K8iildVYY_7RKgpoRNKdAo00KmBLQI,3322
|
|
375
|
-
nat/tool/code_execution/test_code_execution_sandbox.py,sha256=
|
|
373
|
+
nat/tool/code_execution/test_code_execution_sandbox.py,sha256=iyK9awJs6ST8fc_S3lNPye6It0DxSNp1UIrAUKPJ1h4,14776
|
|
376
374
|
nat/tool/code_execution/utils.py,sha256=__W-T1kaphFKYSc2AydQW8lCdvD7zAccarvs7XVFTtI,4194
|
|
377
375
|
nat/tool/code_execution/local_sandbox/.gitignore,sha256=BrV-H5osDtwwIx0eieoexolpnaJvc2DQLV15j95Qtyg,19
|
|
378
376
|
nat/tool/code_execution/local_sandbox/Dockerfile.sandbox,sha256=CYqZ5jbBwk3ge8pg87aLjhzWERauScwya5naYq0vb5o,2316
|
|
@@ -389,9 +387,9 @@ nat/tool/github_tools/get_github_issue.py,sha256=fFJFYt3mWR6CK46r6k3-3eVbAKLNh1y
|
|
|
389
387
|
nat/tool/github_tools/get_github_pr.py,sha256=p4Xu-YA6L1dQ8O0e5LDzphrn5DknjttDhLeudgk7Iys,9716
|
|
390
388
|
nat/tool/github_tools/update_github_issue.py,sha256=fj_OAp5bSmSyj-wPAUvzfCGRBuwPyoK1kJ95Fn8XDg8,4103
|
|
391
389
|
nat/tool/mcp/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
392
|
-
nat/tool/mcp/exceptions.py,sha256=
|
|
390
|
+
nat/tool/mcp/exceptions.py,sha256=EGVOnYlui8xufm8dhJyPL1SUqBLnCGOTvRoeyNcmcWE,5980
|
|
393
391
|
nat/tool/mcp/mcp_client.py,sha256=jdlJULJG1EGdj2CwT26x6hBatG6vz0cXsh14c_ttv20,8963
|
|
394
|
-
nat/tool/mcp/mcp_tool.py,sha256=
|
|
392
|
+
nat/tool/mcp/mcp_tool.py,sha256=DhnGEHQI2bIrTMzwW3EH08Wgm2QcvvEMeyjy0_xVRoE,4096
|
|
395
393
|
nat/tool/memory_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
396
394
|
nat/tool/memory_tools/add_memory_tool.py,sha256=DYaYkVlH2myRshJpzmULfzdF0wFoPCAkTBokFVmhfzU,3349
|
|
397
395
|
nat/tool/memory_tools/delete_memory_tool.py,sha256=EWJVgzIzLDqktY5domXph-N2U9FmybdWl4J7KM7uK4g,2532
|
|
@@ -426,11 +424,11 @@ nat/utils/reactive/base/observable_base.py,sha256=CRG8pQYOcR9-r9ZQkYNl0P99309rPT
|
|
|
426
424
|
nat/utils/reactive/base/observer_base.py,sha256=UAlyAY_ky4q2t0P81RVFo2Bs_R7z5Nde55vRWqXUgz8,1875
|
|
427
425
|
nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
|
|
428
426
|
nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
|
-
nat/utils/settings/global_settings.py,sha256=
|
|
430
|
-
nvidia_nat-1.2.
|
|
431
|
-
nvidia_nat-1.2.
|
|
432
|
-
nvidia_nat-1.2.
|
|
433
|
-
nvidia_nat-1.2.
|
|
434
|
-
nvidia_nat-1.2.
|
|
435
|
-
nvidia_nat-1.2.
|
|
436
|
-
nvidia_nat-1.2.
|
|
427
|
+
nat/utils/settings/global_settings.py,sha256=CYHQX7F6MDR18vsVFTrEySpS9cBufuVGTUqZm9lREFs,7446
|
|
428
|
+
nvidia_nat-1.2.0rc6.dist-info/licenses/LICENSE-3rd-party.txt,sha256=8o7aySJa9CBvFshPcsRdJbczzdNyDGJ8b0J67WRUQ2k,183936
|
|
429
|
+
nvidia_nat-1.2.0rc6.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
430
|
+
nvidia_nat-1.2.0rc6.dist-info/METADATA,sha256=blF_qymwsJPfUvzlXRuW6PnnN8vmtOoWEBD62WC4rT0,21688
|
|
431
|
+
nvidia_nat-1.2.0rc6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
432
|
+
nvidia_nat-1.2.0rc6.dist-info/entry_points.txt,sha256=FNh4pZVSe_61s29zdks66lmXBPtsnko8KSZ4ffv7WVE,653
|
|
433
|
+
nvidia_nat-1.2.0rc6.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
|
|
434
|
+
nvidia_nat-1.2.0rc6.dist-info/RECORD,,
|
nat/embedder/langchain_client.py
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText: Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
2
|
-
# SPDX-License-Identifier: Apache-2.0
|
|
3
|
-
#
|
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
# you may not use this file except in compliance with the License.
|
|
6
|
-
# You may obtain a copy of the License at
|
|
7
|
-
#
|
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
#
|
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
-
# See the License for the specific language governing permissions and
|
|
14
|
-
# limitations under the License.
|
|
15
|
-
|
|
16
|
-
from nat.builder.builder import Builder
|
|
17
|
-
from nat.builder.framework_enum import LLMFrameworkEnum
|
|
18
|
-
from nat.cli.register_workflow import register_embedder_client
|
|
19
|
-
from nat.embedder.nim_embedder import NIMEmbedderModelConfig
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
@register_embedder_client(config_type=NIMEmbedderModelConfig, wrapper_type=LLMFrameworkEnum.LANGCHAIN)
|
|
23
|
-
async def nim_langchain(embedder_config: NIMEmbedderModelConfig, builder: Builder):
|
|
24
|
-
|
|
25
|
-
from langchain_nvidia_ai_endpoints import NVIDIAEmbeddings
|
|
26
|
-
|
|
27
|
-
yield NVIDIAEmbeddings(**embedder_config.model_dump(exclude={"type"}, by_alias=True))
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
@register_embedder_client(config_type=NIMEmbedderModelConfig, wrapper_type=LLMFrameworkEnum.LLAMA_INDEX)
|
|
31
|
-
async def nim_llamaindex(embedder_config: NIMEmbedderModelConfig, builder: Builder):
|
|
32
|
-
|
|
33
|
-
from llama_index.embeddings.nvidia import NVIDIAEmbedding # pylint: disable=no-name-in-module
|
|
34
|
-
|
|
35
|
-
config_obj = {
|
|
36
|
-
**embedder_config.model_dump(exclude={"type", "model_name"}, by_alias=True),
|
|
37
|
-
"model":
|
|
38
|
-
embedder_config.model_name,
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
yield NVIDIAEmbedding(**config_obj)
|
nat/meta/module_to_distro.json
DELETED
|
File without changes
|
|
File without changes
|
{nvidia_nat-1.2.0a20250813.dist-info → nvidia_nat-1.2.0rc6.dist-info}/licenses/LICENSE-3rd-party.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|