nvidia-nat 1.3.0.dev2__py3-none-any.whl → 1.3.0rc2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aiq/__init__.py +2 -2
- nat/agent/base.py +24 -15
- nat/agent/dual_node.py +9 -4
- nat/agent/prompt_optimizer/prompt.py +68 -0
- nat/agent/prompt_optimizer/register.py +149 -0
- nat/agent/react_agent/agent.py +79 -47
- nat/agent/react_agent/register.py +50 -22
- nat/agent/reasoning_agent/reasoning_agent.py +11 -9
- nat/agent/register.py +1 -1
- nat/agent/rewoo_agent/agent.py +326 -148
- nat/agent/rewoo_agent/prompt.py +19 -22
- nat/agent/rewoo_agent/register.py +54 -27
- nat/agent/tool_calling_agent/agent.py +84 -28
- nat/agent/tool_calling_agent/register.py +51 -28
- nat/authentication/api_key/api_key_auth_provider.py +2 -2
- nat/authentication/credential_validator/bearer_token_validator.py +557 -0
- nat/authentication/http_basic_auth/http_basic_auth_provider.py +1 -1
- nat/authentication/interfaces.py +5 -2
- nat/authentication/oauth2/oauth2_auth_code_flow_provider.py +69 -36
- nat/authentication/oauth2/oauth2_resource_server_config.py +124 -0
- nat/authentication/register.py +0 -1
- nat/builder/builder.py +56 -24
- nat/builder/component_utils.py +9 -5
- nat/builder/context.py +68 -17
- nat/builder/eval_builder.py +16 -11
- nat/builder/framework_enum.py +1 -0
- nat/builder/front_end.py +1 -1
- nat/builder/function.py +378 -8
- nat/builder/function_base.py +3 -3
- nat/builder/function_info.py +6 -8
- nat/builder/user_interaction_manager.py +2 -2
- nat/builder/workflow.py +13 -1
- nat/builder/workflow_builder.py +281 -76
- nat/cli/cli_utils/config_override.py +2 -2
- nat/cli/commands/evaluate.py +1 -1
- nat/cli/commands/info/info.py +16 -6
- nat/cli/commands/info/list_channels.py +1 -1
- nat/cli/commands/info/list_components.py +7 -8
- nat/cli/commands/mcp/__init__.py +14 -0
- nat/cli/commands/mcp/mcp.py +986 -0
- nat/cli/commands/object_store/__init__.py +14 -0
- nat/cli/commands/object_store/object_store.py +227 -0
- nat/cli/commands/optimize.py +90 -0
- nat/cli/commands/registry/publish.py +2 -2
- nat/cli/commands/registry/pull.py +2 -2
- nat/cli/commands/registry/remove.py +2 -2
- nat/cli/commands/registry/search.py +15 -17
- nat/cli/commands/start.py +16 -5
- nat/cli/commands/uninstall.py +1 -1
- nat/cli/commands/workflow/templates/config.yml.j2 +14 -13
- nat/cli/commands/workflow/templates/pyproject.toml.j2 +4 -1
- nat/cli/commands/workflow/templates/register.py.j2 +2 -3
- nat/cli/commands/workflow/templates/workflow.py.j2 +35 -21
- nat/cli/commands/workflow/workflow_commands.py +62 -22
- nat/cli/entrypoint.py +8 -10
- nat/cli/main.py +3 -0
- nat/cli/register_workflow.py +38 -4
- nat/cli/type_registry.py +75 -6
- nat/control_flow/__init__.py +0 -0
- nat/control_flow/register.py +20 -0
- nat/control_flow/router_agent/__init__.py +0 -0
- nat/control_flow/router_agent/agent.py +329 -0
- nat/control_flow/router_agent/prompt.py +48 -0
- nat/control_flow/router_agent/register.py +91 -0
- nat/control_flow/sequential_executor.py +166 -0
- nat/data_models/agent.py +34 -0
- nat/data_models/api_server.py +74 -66
- nat/data_models/authentication.py +23 -9
- nat/data_models/common.py +1 -1
- nat/data_models/component.py +2 -0
- nat/data_models/component_ref.py +11 -0
- nat/data_models/config.py +41 -17
- nat/data_models/dataset_handler.py +1 -1
- nat/data_models/discovery_metadata.py +4 -4
- nat/data_models/evaluate.py +4 -1
- nat/data_models/function.py +34 -0
- nat/data_models/function_dependencies.py +14 -6
- nat/data_models/gated_field_mixin.py +242 -0
- nat/data_models/intermediate_step.py +3 -3
- nat/data_models/optimizable.py +119 -0
- nat/data_models/optimizer.py +149 -0
- nat/data_models/span.py +41 -3
- nat/data_models/swe_bench_model.py +1 -1
- nat/data_models/temperature_mixin.py +44 -0
- nat/data_models/thinking_mixin.py +86 -0
- nat/data_models/top_p_mixin.py +44 -0
- nat/embedder/nim_embedder.py +1 -1
- nat/embedder/openai_embedder.py +1 -1
- nat/embedder/register.py +0 -1
- nat/eval/config.py +3 -1
- nat/eval/dataset_handler/dataset_handler.py +71 -7
- nat/eval/evaluate.py +86 -31
- nat/eval/evaluator/base_evaluator.py +1 -1
- nat/eval/evaluator/evaluator_model.py +13 -0
- nat/eval/intermediate_step_adapter.py +1 -1
- nat/eval/rag_evaluator/evaluate.py +2 -2
- nat/eval/rag_evaluator/register.py +3 -3
- nat/eval/register.py +4 -1
- nat/eval/remote_workflow.py +3 -3
- nat/eval/runtime_evaluator/__init__.py +14 -0
- nat/eval/runtime_evaluator/evaluate.py +123 -0
- nat/eval/runtime_evaluator/register.py +100 -0
- nat/eval/swe_bench_evaluator/evaluate.py +6 -6
- nat/eval/trajectory_evaluator/evaluate.py +1 -1
- nat/eval/trajectory_evaluator/register.py +1 -1
- nat/eval/tunable_rag_evaluator/evaluate.py +4 -7
- nat/eval/utils/eval_trace_ctx.py +89 -0
- nat/eval/utils/weave_eval.py +18 -9
- nat/experimental/decorators/experimental_warning_decorator.py +27 -7
- nat/experimental/test_time_compute/functions/plan_select_execute_function.py +7 -3
- nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py +3 -3
- nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py +1 -1
- nat/experimental/test_time_compute/models/strategy_base.py +5 -4
- nat/experimental/test_time_compute/register.py +0 -1
- nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py +1 -3
- nat/front_ends/console/authentication_flow_handler.py +82 -30
- nat/front_ends/console/console_front_end_plugin.py +8 -5
- nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py +52 -17
- nat/front_ends/fastapi/dask_client_mixin.py +65 -0
- nat/front_ends/fastapi/fastapi_front_end_config.py +36 -5
- nat/front_ends/fastapi/fastapi_front_end_controller.py +4 -4
- nat/front_ends/fastapi/fastapi_front_end_plugin.py +135 -4
- nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py +452 -282
- nat/front_ends/fastapi/job_store.py +518 -99
- nat/front_ends/fastapi/main.py +11 -19
- nat/front_ends/fastapi/message_handler.py +13 -14
- nat/front_ends/fastapi/message_validator.py +19 -19
- nat/front_ends/fastapi/response_helpers.py +4 -4
- nat/front_ends/fastapi/step_adaptor.py +2 -2
- nat/front_ends/fastapi/utils.py +57 -0
- nat/front_ends/mcp/introspection_token_verifier.py +73 -0
- nat/front_ends/mcp/mcp_front_end_config.py +10 -1
- nat/front_ends/mcp/mcp_front_end_plugin.py +45 -13
- nat/front_ends/mcp/mcp_front_end_plugin_worker.py +116 -8
- nat/front_ends/mcp/tool_converter.py +44 -14
- nat/front_ends/register.py +0 -1
- nat/front_ends/simple_base/simple_front_end_plugin_base.py +3 -1
- nat/llm/aws_bedrock_llm.py +24 -12
- nat/llm/azure_openai_llm.py +13 -6
- nat/llm/litellm_llm.py +69 -0
- nat/llm/nim_llm.py +20 -8
- nat/llm/openai_llm.py +14 -6
- nat/llm/register.py +4 -1
- nat/llm/utils/env_config_value.py +2 -3
- nat/llm/utils/thinking.py +215 -0
- nat/meta/pypi.md +9 -9
- nat/object_store/register.py +0 -1
- nat/observability/exporter/base_exporter.py +3 -3
- nat/observability/exporter/file_exporter.py +1 -1
- nat/observability/exporter/processing_exporter.py +309 -81
- nat/observability/exporter/span_exporter.py +35 -15
- nat/observability/exporter_manager.py +7 -7
- nat/observability/mixin/file_mixin.py +7 -7
- nat/observability/mixin/redaction_config_mixin.py +42 -0
- nat/observability/mixin/tagging_config_mixin.py +62 -0
- nat/observability/mixin/type_introspection_mixin.py +420 -107
- nat/observability/processor/batching_processor.py +5 -7
- nat/observability/processor/falsy_batch_filter_processor.py +55 -0
- nat/observability/processor/processor.py +3 -0
- nat/observability/processor/processor_factory.py +70 -0
- nat/observability/processor/redaction/__init__.py +24 -0
- nat/observability/processor/redaction/contextual_redaction_processor.py +125 -0
- nat/observability/processor/redaction/contextual_span_redaction_processor.py +66 -0
- nat/observability/processor/redaction/redaction_processor.py +177 -0
- nat/observability/processor/redaction/span_header_redaction_processor.py +92 -0
- nat/observability/processor/span_tagging_processor.py +68 -0
- nat/observability/register.py +6 -4
- nat/profiler/calc/calc_runner.py +3 -4
- nat/profiler/callbacks/agno_callback_handler.py +1 -1
- nat/profiler/callbacks/langchain_callback_handler.py +6 -6
- nat/profiler/callbacks/llama_index_callback_handler.py +3 -3
- nat/profiler/callbacks/semantic_kernel_callback_handler.py +3 -3
- nat/profiler/data_frame_row.py +1 -1
- nat/profiler/decorators/framework_wrapper.py +62 -13
- nat/profiler/decorators/function_tracking.py +160 -3
- nat/profiler/forecasting/models/forecasting_base_model.py +3 -1
- nat/profiler/forecasting/models/linear_model.py +1 -1
- nat/profiler/forecasting/models/random_forest_regressor.py +1 -1
- nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py +1 -1
- nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py +1 -1
- nat/profiler/inference_optimization/data_models.py +3 -3
- nat/profiler/inference_optimization/experimental/prefix_span_analysis.py +8 -9
- nat/profiler/inference_optimization/token_uniqueness.py +1 -1
- nat/profiler/parameter_optimization/__init__.py +0 -0
- nat/profiler/parameter_optimization/optimizable_utils.py +93 -0
- nat/profiler/parameter_optimization/optimizer_runtime.py +67 -0
- nat/profiler/parameter_optimization/parameter_optimizer.py +153 -0
- nat/profiler/parameter_optimization/parameter_selection.py +107 -0
- nat/profiler/parameter_optimization/pareto_visualizer.py +380 -0
- nat/profiler/parameter_optimization/prompt_optimizer.py +384 -0
- nat/profiler/parameter_optimization/update_helpers.py +66 -0
- nat/profiler/profile_runner.py +14 -9
- nat/profiler/utils.py +4 -2
- nat/registry_handlers/local/local_handler.py +2 -2
- nat/registry_handlers/package_utils.py +1 -2
- nat/registry_handlers/pypi/pypi_handler.py +23 -26
- nat/registry_handlers/register.py +3 -4
- nat/registry_handlers/rest/rest_handler.py +12 -13
- nat/retriever/milvus/retriever.py +2 -2
- nat/retriever/nemo_retriever/retriever.py +1 -1
- nat/retriever/register.py +0 -1
- nat/runtime/loader.py +2 -2
- nat/runtime/runner.py +106 -8
- nat/runtime/session.py +69 -8
- nat/settings/global_settings.py +16 -5
- nat/tool/chat_completion.py +5 -2
- nat/tool/code_execution/local_sandbox/local_sandbox_server.py +3 -3
- nat/tool/datetime_tools.py +49 -9
- nat/tool/document_search.py +2 -2
- nat/tool/github_tools.py +450 -0
- nat/tool/memory_tools/get_memory_tool.py +1 -1
- nat/tool/nvidia_rag.py +1 -1
- nat/tool/register.py +2 -9
- nat/tool/retriever.py +3 -2
- nat/utils/callable_utils.py +70 -0
- nat/utils/data_models/schema_validator.py +3 -3
- nat/utils/decorators.py +210 -0
- nat/utils/exception_handlers/automatic_retries.py +104 -51
- nat/utils/exception_handlers/schemas.py +1 -1
- nat/utils/io/yaml_tools.py +2 -2
- nat/utils/log_levels.py +25 -0
- nat/utils/reactive/base/observable_base.py +2 -2
- nat/utils/reactive/base/observer_base.py +1 -1
- nat/utils/reactive/observable.py +2 -2
- nat/utils/reactive/observer.py +4 -4
- nat/utils/reactive/subscription.py +1 -1
- nat/utils/settings/global_settings.py +6 -8
- nat/utils/type_converter.py +4 -3
- nat/utils/type_utils.py +9 -5
- {nvidia_nat-1.3.0.dev2.dist-info → nvidia_nat-1.3.0rc2.dist-info}/METADATA +42 -18
- {nvidia_nat-1.3.0.dev2.dist-info → nvidia_nat-1.3.0rc2.dist-info}/RECORD +238 -196
- {nvidia_nat-1.3.0.dev2.dist-info → nvidia_nat-1.3.0rc2.dist-info}/entry_points.txt +1 -0
- nat/cli/commands/info/list_mcp.py +0 -304
- nat/tool/github_tools/create_github_commit.py +0 -133
- nat/tool/github_tools/create_github_issue.py +0 -87
- nat/tool/github_tools/create_github_pr.py +0 -106
- nat/tool/github_tools/get_github_file.py +0 -106
- nat/tool/github_tools/get_github_issue.py +0 -166
- nat/tool/github_tools/get_github_pr.py +0 -256
- nat/tool/github_tools/update_github_issue.py +0 -100
- nat/tool/mcp/exceptions.py +0 -142
- nat/tool/mcp/mcp_client.py +0 -255
- nat/tool/mcp/mcp_tool.py +0 -96
- nat/utils/exception_handlers/mcp.py +0 -211
- /nat/{tool/github_tools → agent/prompt_optimizer}/__init__.py +0 -0
- /nat/{tool/mcp → authentication/credential_validator}/__init__.py +0 -0
- {nvidia_nat-1.3.0.dev2.dist-info → nvidia_nat-1.3.0rc2.dist-info}/WHEEL +0 -0
- {nvidia_nat-1.3.0.dev2.dist-info → nvidia_nat-1.3.0rc2.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {nvidia_nat-1.3.0.dev2.dist-info → nvidia_nat-1.3.0rc2.dist-info}/licenses/LICENSE.md +0 -0
- {nvidia_nat-1.3.0.dev2.dist-info → nvidia_nat-1.3.0rc2.dist-info}/top_level.txt +0 -0
|
@@ -1,68 +1,75 @@
|
|
|
1
|
-
aiq/__init__.py,sha256=
|
|
1
|
+
aiq/__init__.py,sha256=qte-NlwgM990yEeyaRUxA4IBQq3PaEkQUCK3i95iwPw,2341
|
|
2
2
|
nat/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
nat/agent/base.py,sha256=
|
|
4
|
-
nat/agent/dual_node.py,sha256=
|
|
5
|
-
nat/agent/register.py,sha256=
|
|
3
|
+
nat/agent/base.py,sha256=8cXz9Py8sFs7rTF4V9d3uzZAYFVquuWL0RQSkVMdnb0,10155
|
|
4
|
+
nat/agent/dual_node.py,sha256=pfvXa1iLKtrNBHsh-tM5RWRmVe7QkyYhQNanOfWdJJs,2569
|
|
5
|
+
nat/agent/register.py,sha256=rPhHDyqRBIKyon3HqhOmpAjqPP18Or6wDQb0wRUBIjQ,1032
|
|
6
|
+
nat/agent/prompt_optimizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
nat/agent/prompt_optimizer/prompt.py,sha256=2I1cGZH73Q1pwxA_V-9b1sFCdQ1PLFxliaRtrIkVVVU,3042
|
|
8
|
+
nat/agent/prompt_optimizer/register.py,sha256=s1WZzHYivU1LwH3iZZ3YSEiOfIurzwxqvUGrfG2_rz4,6799
|
|
6
9
|
nat/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
nat/agent/react_agent/agent.py,sha256=
|
|
10
|
+
nat/agent/react_agent/agent.py,sha256=sWrg9WrglTKQQyG3EcjNm2JTEchCPEo9li-Po7TJKss,21294
|
|
8
11
|
nat/agent/react_agent/output_parser.py,sha256=m7K6wRwtckBBpAHqOf3BZ9mqZLwrP13Kxz5fvNxbyZE,4219
|
|
9
12
|
nat/agent/react_agent/prompt.py,sha256=N47JJrT6xwYQCv1jedHhlul2AE7EfKsSYfAbgJwWRew,1758
|
|
10
|
-
nat/agent/react_agent/register.py,sha256=
|
|
13
|
+
nat/agent/react_agent/register.py,sha256=wAoPkly7dE8bb5x8XFf5-C1qJQausLKQwQcFCby_dwU,9307
|
|
11
14
|
nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
nat/agent/reasoning_agent/reasoning_agent.py,sha256=
|
|
15
|
+
nat/agent/reasoning_agent/reasoning_agent.py,sha256=k_0wEDqACQn1Rn1MAKxoXyqOKsthHCQ1gt990YYUqHU,9575
|
|
13
16
|
nat/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
nat/agent/rewoo_agent/agent.py,sha256=
|
|
15
|
-
nat/agent/rewoo_agent/prompt.py,sha256=
|
|
16
|
-
nat/agent/rewoo_agent/register.py,sha256=
|
|
17
|
+
nat/agent/rewoo_agent/agent.py,sha256=XXgVXY9xwkyxnr093KXUtfgyNxAQbyGAecoGqN5mMLY,26199
|
|
18
|
+
nat/agent/rewoo_agent/prompt.py,sha256=B0JeL1xDX4VKcShlkkviEcAsOKAwzSlX8NcAQdmUUPw,3645
|
|
19
|
+
nat/agent/rewoo_agent/register.py,sha256=GfJRQgpFWl-LQ-pPaG7EUeBH5u7pDZZNVP5cSweZJdM,9599
|
|
17
20
|
nat/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
nat/agent/tool_calling_agent/agent.py,sha256=
|
|
19
|
-
nat/agent/tool_calling_agent/register.py,sha256=
|
|
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
|
|
20
23
|
nat/authentication/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
21
|
-
nat/authentication/interfaces.py,sha256=
|
|
22
|
-
nat/authentication/register.py,sha256=
|
|
24
|
+
nat/authentication/interfaces.py,sha256=1J2CWEJ_n6CLA3_HD3XV28CSbyfxrPAHzr7Q4kKDFdc,3511
|
|
25
|
+
nat/authentication/register.py,sha256=lFhswYUk9iZ53mq33fClR9UfjJPdjGIivGGNHQeWiYo,915
|
|
23
26
|
nat/authentication/api_key/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
24
|
-
nat/authentication/api_key/api_key_auth_provider.py,sha256=
|
|
27
|
+
nat/authentication/api_key/api_key_auth_provider.py,sha256=QGRZZilD2GryhRJoODfKqypH54IwQp0I-Cck40Dc7dM,4032
|
|
25
28
|
nat/authentication/api_key/api_key_auth_provider_config.py,sha256=zfkxH3yvUSKKldRf1K4PPm0rJLXGH0GDH8xj7anPYGQ,5472
|
|
26
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
|
|
27
32
|
nat/authentication/exceptions/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
28
33
|
nat/authentication/exceptions/api_key_exceptions.py,sha256=6wnz951BI77rFYuHxoHOthz-y5oE08uxsuM6G5EvOyM,1545
|
|
29
34
|
nat/authentication/http_basic_auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
nat/authentication/http_basic_auth/http_basic_auth_provider.py,sha256=
|
|
35
|
+
nat/authentication/http_basic_auth/http_basic_auth_provider.py,sha256=OXr5TV87SiZtzSK9i_E6WXWyVhWq2MfqO_SS1aZ3p6U,3452
|
|
31
36
|
nat/authentication/http_basic_auth/register.py,sha256=N2VD0vw7cYABsLxsGXl5yw0htc8adkrB0Y_EMxKwFfk,1235
|
|
32
37
|
nat/authentication/oauth2/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
33
|
-
nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=
|
|
38
|
+
nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=NXsVATFxQ10Gg_nrW7Ljft2VXlAj460TeoXL-ww4WZc,5804
|
|
34
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
|
|
35
41
|
nat/authentication/oauth2/register.py,sha256=7rXhf-ilgSS_bUJsd9pOOCotL1FM8dKUt3ke1TllKkQ,1228
|
|
36
42
|
nat/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
nat/builder/builder.py,sha256=
|
|
38
|
-
nat/builder/component_utils.py,sha256
|
|
39
|
-
nat/builder/context.py,sha256=
|
|
43
|
+
nat/builder/builder.py,sha256=okI3Y101hwF63AwazzxiahQx-W9eFZ_SNdFXzDuoftU,11608
|
|
44
|
+
nat/builder/component_utils.py,sha256=-5vEWLwj9ch-1B9vbkBjCIkXB9SL8Tj9yl6zFwhV6wU,13832
|
|
45
|
+
nat/builder/context.py,sha256=6NQmHfJS0gY4eLU7Xg84olmrgUdtVJcS3gmxc-OADiw,13093
|
|
40
46
|
nat/builder/embedder.py,sha256=NPkOEcxt_-wc53QRijCQQDLretRUYHRYaKoYmarmrBk,965
|
|
41
|
-
nat/builder/eval_builder.py,sha256=
|
|
47
|
+
nat/builder/eval_builder.py,sha256=I-ScvupmorClYoVBIs_PhSsB7Xf9e2nGWe0rCZp3txo,6857
|
|
42
48
|
nat/builder/evaluator.py,sha256=xWHMND2vcAUkdFP7FU3jnVki1rUHeTa0-9saFh2hWKs,1162
|
|
43
|
-
nat/builder/framework_enum.py,sha256=
|
|
44
|
-
nat/builder/front_end.py,sha256=
|
|
45
|
-
nat/builder/function.py,sha256=
|
|
46
|
-
nat/builder/function_base.py,sha256=
|
|
47
|
-
nat/builder/function_info.py,sha256=
|
|
49
|
+
nat/builder/framework_enum.py,sha256=n7IaTQBxhFozIQqRMcX9kXntw28JhFzCj82jJ0C5tNU,901
|
|
50
|
+
nat/builder/front_end.py,sha256=FCJ87NSshVVuTg8zZrq3YAr_u0RaYVZVcibnqlRFy-M,2173
|
|
51
|
+
nat/builder/function.py,sha256=RrfKSCt9WunPhwn5fk8X7wuvb9A21iO8T-IySHUi3KM,27763
|
|
52
|
+
nat/builder/function_base.py,sha256=0Eg8RtjWhEU3Yme0CVxcRutobA0Qo8-YHZLI6L2qAgM,13116
|
|
53
|
+
nat/builder/function_info.py,sha256=7Rmrn-gOFrT2TIJklJwA_O-ycx_oimwZ0-qMYpbuZrU,25161
|
|
48
54
|
nat/builder/intermediate_step_manager.py,sha256=iOuMLWTaES0J0XzaLxhTUqFvuoCAChJu3V69T43K0k0,7599
|
|
49
55
|
nat/builder/llm.py,sha256=DW-2q64A06VChsXNEL5PfBjH3DcsnTKVoCEWDuP7MF4,951
|
|
50
56
|
nat/builder/retriever.py,sha256=ZyEqc7pFK31t_yr6Jaxa34c-tRas2edKqJZCNiVh9-0,970
|
|
51
|
-
nat/builder/user_interaction_manager.py,sha256
|
|
52
|
-
nat/builder/workflow.py,sha256=
|
|
53
|
-
nat/builder/workflow_builder.py,sha256=
|
|
57
|
+
nat/builder/user_interaction_manager.py,sha256=-Z2qbQes7a2cuXgT7KEbWeuok0HcCnRdw9WB8Ghyl9k,3081
|
|
58
|
+
nat/builder/workflow.py,sha256=bHrxK-VFsxUTw2wZgkWcCttpCMDeWNGPfmIGEW_bjZo,6908
|
|
59
|
+
nat/builder/workflow_builder.py,sha256=Fdf2eIYrRg1ovLkySzzgh5C2PNLV7QzQIN7pLHSr6zI,56339
|
|
54
60
|
nat/cli/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
55
|
-
nat/cli/entrypoint.py,sha256=
|
|
56
|
-
nat/cli/main.py,sha256=
|
|
57
|
-
nat/cli/register_workflow.py,sha256=
|
|
58
|
-
nat/cli/type_registry.py,sha256=
|
|
61
|
+
nat/cli/entrypoint.py,sha256=7NHq3Grb_qzpJzzbb0YtTsWd4YhA6y9ljHwsOQPQAIs,4928
|
|
62
|
+
nat/cli/main.py,sha256=LZMKvoHYR926mghMjVpfLiI2qraqtrhMY9hvuAQCRWk,2258
|
|
63
|
+
nat/cli/register_workflow.py,sha256=DOQQgUWB_NO9k7nlkP4cAx_RX03Cndk032K-kqyuvEs,23285
|
|
64
|
+
nat/cli/type_registry.py,sha256=HbPU-7lzSHZ4aepJ3qOgfnl5LzK6-KHwcerhFpWw6mU,48839
|
|
59
65
|
nat/cli/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
-
nat/cli/cli_utils/config_override.py,sha256=
|
|
66
|
+
nat/cli/cli_utils/config_override.py,sha256=6eYS_dYsf-4fSc70_z9dVc66EaTDsjOVwVFWQfKGlZE,8899
|
|
61
67
|
nat/cli/cli_utils/validation.py,sha256=KVZvAkWZx-QVVBuCFTcH2muLzMB7ONQA1GE2TzEVN78,1288
|
|
62
68
|
nat/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
nat/cli/commands/evaluate.py,sha256=
|
|
64
|
-
nat/cli/commands/
|
|
65
|
-
nat/cli/commands/
|
|
69
|
+
nat/cli/commands/evaluate.py,sha256=_gSK9km6DQNxFcOZnOpzYuXtM0MG3-ng6S-1UNccG80,4748
|
|
70
|
+
nat/cli/commands/optimize.py,sha256=07b8B6vPDljUgZtcnpaGFi4E10mqK4IwLMV1Y0ZzvQA,2954
|
|
71
|
+
nat/cli/commands/start.py,sha256=kT1HS3ipbZcXvCiC9j35LvO8mDILlvo7L2nayuTKabE,10431
|
|
72
|
+
nat/cli/commands/uninstall.py,sha256=KJDe-BCUD5ws_lTpCNPj3Ac26TQO8kys0AZqjZsljfs,3180
|
|
66
73
|
nat/cli/commands/validate.py,sha256=mseAUfwRP8RL2Jc_a7MA9_0j9CRQFojEFPTPSuLiFGI,1669
|
|
67
74
|
nat/cli/commands/configure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
75
|
nat/cli/commands/configure/configure.py,sha256=Pql8YDW0q4Ch4HPWlDoton7FqfLbLoaUpn3eAbS6gkQ,1091
|
|
@@ -72,119 +79,140 @@ nat/cli/commands/configure/channel/channel.py,sha256=RUA3ajmiYL1muhO71uwSR9jb7hK
|
|
|
72
79
|
nat/cli/commands/configure/channel/remove.py,sha256=GgLudl7SWyvhqLUuRLijXn2SdugsiOiZkkR-vLlKCcw,1096
|
|
73
80
|
nat/cli/commands/configure/channel/update.py,sha256=hcuAWJFhac3x3jurQRySsX_T-SA3S2308EjRhWBJOO8,1091
|
|
74
81
|
nat/cli/commands/info/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
75
|
-
nat/cli/commands/info/info.py,sha256=
|
|
76
|
-
nat/cli/commands/info/list_channels.py,sha256=
|
|
77
|
-
nat/cli/commands/info/list_components.py,sha256=
|
|
78
|
-
nat/cli/commands/
|
|
82
|
+
nat/cli/commands/info/info.py,sha256=BGqshIEDpNRH9hM-06k-Gq-QX-qNddPICSWCN-ReC-g,1627
|
|
83
|
+
nat/cli/commands/info/list_channels.py,sha256=K97TE6wtikgImY-wAbFNi0HHUGtkvIFd2woaG06VkT0,1277
|
|
84
|
+
nat/cli/commands/info/list_components.py,sha256=QlAJVONBA77xW8Lx6Autw5NTAZNy_VrJGr1GL9MfnHM,4532
|
|
85
|
+
nat/cli/commands/mcp/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
86
|
+
nat/cli/commands/mcp/mcp.py,sha256=IiLPu2nxOlp3uBON-e6ANNpzPZQGkmiFLX8-qgGJ9cg,43862
|
|
87
|
+
nat/cli/commands/object_store/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
88
|
+
nat/cli/commands/object_store/object_store.py,sha256=_ivB-R30a-66fNy-fUzi58HQ0Ay0gYsGz7T1xXoRa3Y,8576
|
|
79
89
|
nat/cli/commands/registry/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
80
|
-
nat/cli/commands/registry/publish.py,sha256=
|
|
81
|
-
nat/cli/commands/registry/pull.py,sha256=
|
|
90
|
+
nat/cli/commands/registry/publish.py,sha256=EBkHmxdzlFDN4IJ_pi_ii39ZG_m0lmhgdPws22A75ZI,3172
|
|
91
|
+
nat/cli/commands/registry/pull.py,sha256=p7Km0ZI8uV1aV_5liyzwfE_L_m66n7cGfHz_ZLGtqTM,4065
|
|
82
92
|
nat/cli/commands/registry/registry.py,sha256=EN6beFCQ9BjBqvYdrFqsbPd_a4ibaixC10BD5kevBNI,1303
|
|
83
|
-
nat/cli/commands/registry/remove.py,sha256=
|
|
84
|
-
nat/cli/commands/registry/search.py,sha256=
|
|
93
|
+
nat/cli/commands/registry/remove.py,sha256=LYKNDh-RThIsrfuLRkjH2EDLEVupJDeVit_H9nrUL64,3861
|
|
94
|
+
nat/cli/commands/registry/search.py,sha256=xZGnNcrJraZYCp67eJjRGoZrNBnu39A6qINDe12cgqs,5135
|
|
85
95
|
nat/cli/commands/sizing/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
86
96
|
nat/cli/commands/sizing/calc.py,sha256=3cJHKCbzvV7EwYfLcpfk3_Ki7soAjOaiBcLK-Q6hPVA,11150
|
|
87
97
|
nat/cli/commands/sizing/sizing.py,sha256=-Hr9mz_ScEMtBbn6ijvmmWVk0WybLeX0Ryi4qhDiYQU,902
|
|
88
98
|
nat/cli/commands/workflow/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
89
99
|
nat/cli/commands/workflow/workflow.py,sha256=40nIOehOX-4xI-qJqJraBX3XVz3l2VtFsZkMQYd897w,1342
|
|
90
|
-
nat/cli/commands/workflow/workflow_commands.py,sha256=
|
|
100
|
+
nat/cli/commands/workflow/workflow_commands.py,sha256=hJXsy0vDhL6ITCJaM_xPepXwEom2E6_beTqr0HBldaU,14256
|
|
91
101
|
nat/cli/commands/workflow/templates/__init__.py.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
|
-
nat/cli/commands/workflow/templates/config.yml.j2,sha256=
|
|
93
|
-
nat/cli/commands/workflow/templates/pyproject.toml.j2,sha256=
|
|
94
|
-
nat/cli/commands/workflow/templates/register.py.j2,sha256=
|
|
95
|
-
nat/cli/commands/workflow/templates/workflow.py.j2,sha256=
|
|
102
|
+
nat/cli/commands/workflow/templates/config.yml.j2,sha256=KORGAFt1TW524YxXD2jpm_uTESihUKV5fnSoXQrH1PI,368
|
|
103
|
+
nat/cli/commands/workflow/templates/pyproject.toml.j2,sha256=lDBC4exHYutXa_skuJj176yMEuZr-DsdzrqQHPZoKpk,1035
|
|
104
|
+
nat/cli/commands/workflow/templates/register.py.j2,sha256=OuS8T6ZZ2hb0jOIvT1RojS8CuiL93n223K6Drs_MrBo,152
|
|
105
|
+
nat/cli/commands/workflow/templates/workflow.py.j2,sha256=xN2n0HfVP6f4wRSXQ6y4v5-1eZt3cWLPEPKSVh8wDC8,1785
|
|
106
|
+
nat/control_flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
|
+
nat/control_flow/register.py,sha256=YBB73ecHpvUN_RivkeMWwu645gpC8OCPVOYgr_5aEOA,845
|
|
108
|
+
nat/control_flow/sequential_executor.py,sha256=iFbnyVxOsbltLfNhukH7yv0rGYpva4z-AhyEo-3QiRI,8327
|
|
109
|
+
nat/control_flow/router_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
|
+
nat/control_flow/router_agent/agent.py,sha256=IvMqQuJTwsdARbgPdtfGVTwKO4XZfVLNDui_Kl843Pw,13695
|
|
111
|
+
nat/control_flow/router_agent/prompt.py,sha256=fIAiNsAs1zXRAatButR76zSpHJNxSkXXKKmCL86a58A,1720
|
|
112
|
+
nat/control_flow/router_agent/register.py,sha256=4RGmS9sy-QtIMmvh8mfMcR1VqxFPLpG4RckWCIExh40,4144
|
|
96
113
|
nat/data_models/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
97
|
-
nat/data_models/
|
|
98
|
-
nat/data_models/
|
|
99
|
-
nat/data_models/
|
|
100
|
-
nat/data_models/
|
|
101
|
-
nat/data_models/
|
|
102
|
-
nat/data_models/
|
|
103
|
-
nat/data_models/
|
|
104
|
-
nat/data_models/
|
|
114
|
+
nat/data_models/agent.py,sha256=IwDyb9Zc3R4Zd5rFeqt7q0EQswczAl5focxV9KozIzs,1625
|
|
115
|
+
nat/data_models/api_server.py,sha256=V8y1v9-5p4kmaQmmDU2N6m_V_CFJeozDzJEoIHOSV8w,26177
|
|
116
|
+
nat/data_models/authentication.py,sha256=XPu9W8nh4XRSuxPv3HxO-FMQ_JtTEoK6Y02JwnzDwTg,8457
|
|
117
|
+
nat/data_models/common.py,sha256=nXXfGrjpxebzBUa55mLdmzePLt7VFHvTAc6Znj3yEv0,5875
|
|
118
|
+
nat/data_models/component.py,sha256=b_hXOA8Gm5UNvlFkAhsR6kEvf33ST50MKtr5kWf75Ao,1894
|
|
119
|
+
nat/data_models/component_ref.py,sha256=KFDWFVCcvJCfBBcXTh9f3R802EVHBtHXh9OdbRqFmdM,4747
|
|
120
|
+
nat/data_models/config.py,sha256=pWy-rHI7lfn1-_Vtl6HAmVZs2rC7GZF54ZojoEp0ZbQ,18817
|
|
121
|
+
nat/data_models/dataset_handler.py,sha256=bFPahRkmPtSmA4DVSUwKg-NJRHP7TGQDSRJiSv5UhZY,5518
|
|
122
|
+
nat/data_models/discovery_metadata.py,sha256=_l97iQsqp_ihba8CbMBQ73mH1sipTQ19GiJDdzQYQGY,13432
|
|
105
123
|
nat/data_models/embedder.py,sha256=nPhthEQDtzAMGd8gFRB1ZfJpN5M9DJvv0h28ohHnTmI,1002
|
|
106
|
-
nat/data_models/evaluate.py,sha256=
|
|
124
|
+
nat/data_models/evaluate.py,sha256=L0GdNh_c8jii-MiK8oHW9sUUsGO3l1FMsprr-UazT5c,4836
|
|
107
125
|
nat/data_models/evaluator.py,sha256=bd2njsyQB2t6ClJ66gJiCjYHsQpWZwPD7rsU0J109TI,939
|
|
108
126
|
nat/data_models/front_end.py,sha256=z8k6lSWjt1vMOYFbjWQxodpwAqPeuGS0hRBjsriDW2s,932
|
|
109
|
-
nat/data_models/function.py,sha256=
|
|
110
|
-
nat/data_models/function_dependencies.py,sha256=
|
|
127
|
+
nat/data_models/function.py,sha256=CuhV-fIjVVTsOJmTbvZ5Q9V370uKZJ0bJLyU2gEe35E,2265
|
|
128
|
+
nat/data_models/function_dependencies.py,sha256=soDGXU4IwEn-3w3fGDm6vNLOR6jS6me-Ml_g7B6giBw,2901
|
|
129
|
+
nat/data_models/gated_field_mixin.py,sha256=1xycSpXc_fq8CucLp3khE1w0-JYfcbr__EJkbvxTD0w,9817
|
|
111
130
|
nat/data_models/interactive.py,sha256=qOkxyYPQYEBIBMDAA1rjfYcdvf6-iCM4qPV8Awc4VGw,8794
|
|
112
|
-
nat/data_models/intermediate_step.py,sha256=
|
|
131
|
+
nat/data_models/intermediate_step.py,sha256=OhdGAtSBiMiCfT1R-BjihUvcVoQsRsxHDQcJ1gMDVXA,11585
|
|
113
132
|
nat/data_models/invocation_node.py,sha256=nDRylgzBfJduGA-lme9xN4P6BdOYj0L6ytLHnTuetMI,1618
|
|
114
133
|
nat/data_models/llm.py,sha256=PCTeCPg2YnYk5tvSu7XOEVr2Cg_wSkjAdVsoiTg8Joo,968
|
|
115
134
|
nat/data_models/logging.py,sha256=1QtVjIQ99PgMYUuzw4h1FAoPRteZY7uf3oFTqV3ONgA,940
|
|
116
135
|
nat/data_models/memory.py,sha256=IKwe7CflCto30j4yI5yQtq8DXfMilAJ17S5NcsSDrOQ,1052
|
|
117
136
|
nat/data_models/object_store.py,sha256=S8YY6i8ALgRPuggUI1FCG-xbvwPWuaCg1lJnZOx5scM,1515
|
|
137
|
+
nat/data_models/optimizable.py,sha256=VTu9RlS102bsU6G_uhrxFkMATextuVQozfWsfoktqRc,4861
|
|
138
|
+
nat/data_models/optimizer.py,sha256=Zs4-w_Ek08iSLulsbb-4c1gK8zQB67UeRK1gHoqS1X4,5291
|
|
118
139
|
nat/data_models/profiler.py,sha256=z3IlEhj-veB4Yz85271bTkScSUkVwK50tR3dwlDRgcE,1781
|
|
119
140
|
nat/data_models/registry_handler.py,sha256=g1rFaz4uSydMJn7qpdX-DNHJd_rNf8tXYN49dLDYHPo,968
|
|
120
141
|
nat/data_models/retriever.py,sha256=IJAIaeEXM8zj_towrvZ30Uoxt8e4WvOXrQwqGloS1qI,1202
|
|
121
142
|
nat/data_models/retry_mixin.py,sha256=s7UAhAHhlwTJ3uz6POVaSD8Y5DwKnU8mmo7OkRzeaW8,1863
|
|
122
|
-
nat/data_models/span.py,sha256=
|
|
143
|
+
nat/data_models/span.py,sha256=1ylpLf0UKwJSpKbwuFian9ut40GnF-AXsWYep1n2Y_0,8056
|
|
123
144
|
nat/data_models/step_adaptor.py,sha256=1qn56wB_nIYBM5IjN4ftsltCAkqaJd3Sqe5v0TRR4K8,2615
|
|
124
145
|
nat/data_models/streaming.py,sha256=sSqJqLqb70qyw69_4R9QC2RMbRw7UjTLPdo3FYBUGxE,1159
|
|
125
|
-
nat/data_models/swe_bench_model.py,sha256=
|
|
146
|
+
nat/data_models/swe_bench_model.py,sha256=uZs-hLFuT1B5CiPFwFg1PHinDW8PHne8TBzu7tHFv_k,1718
|
|
126
147
|
nat/data_models/telemetry_exporter.py,sha256=P7kqxIQnFVuvo_UFpH9QSB8fACy_0U2Uzkw_IfWXagE,998
|
|
148
|
+
nat/data_models/temperature_mixin.py,sha256=LlpfWrWtDrPJfSKfNx5E0P3p5SNGZli7ACRRpmO0QqA,1628
|
|
149
|
+
nat/data_models/thinking_mixin.py,sha256=lzAnUk5vyv1nTYG9ho4BD3U2NTVZ50gBysN62iGj2KM,3303
|
|
150
|
+
nat/data_models/top_p_mixin.py,sha256=mu0DLnCAiwNzpSFR8FOW4kQBUpodSrvUR4MsLrNtbgA,1599
|
|
127
151
|
nat/data_models/ttc_strategy.py,sha256=tAkKWcyEBmBOOYtHMtQTgeCbHxFTk5SEkmFunNVnfyE,1114
|
|
128
152
|
nat/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
153
|
nat/embedder/azure_openai_embedder.py,sha256=8OM54DCVCmWuQ8eZ5lXxsKYQktRmHMoIelRHZmKurUk,2381
|
|
130
|
-
nat/embedder/nim_embedder.py,sha256=
|
|
131
|
-
nat/embedder/openai_embedder.py,sha256=
|
|
132
|
-
nat/embedder/register.py,sha256=
|
|
154
|
+
nat/embedder/nim_embedder.py,sha256=4DLcweOajXi67ZpLq_QvK0ZihFsntpsSF27FEvhF1ZQ,2532
|
|
155
|
+
nat/embedder/openai_embedder.py,sha256=uASGh8KEmJg6_km8YNaenpPC92v-WbFpsvq-l4R38pY,1937
|
|
156
|
+
nat/embedder/register.py,sha256=TM_LKuSlJr3tEceNVuHfAx_yrCzf1sryD5Ycep5rNGo,883
|
|
133
157
|
nat/eval/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
134
|
-
nat/eval/config.py,sha256=
|
|
135
|
-
nat/eval/evaluate.py,sha256=
|
|
136
|
-
nat/eval/intermediate_step_adapter.py,sha256=
|
|
137
|
-
nat/eval/register.py,sha256=
|
|
138
|
-
nat/eval/remote_workflow.py,sha256=
|
|
158
|
+
nat/eval/config.py,sha256=G0LE4JpZaQy3PvERldVATFpQCiDQcVJGUFChgorqzNo,2377
|
|
159
|
+
nat/eval/evaluate.py,sha256=PGsVTF6Xgxygu29bbV879gfCuDjEZj5-Df9_uOQT2FY,26733
|
|
160
|
+
nat/eval/intermediate_step_adapter.py,sha256=mquQfPbq4-Owid2GzSyxtGNXoZ0i8crB6sA49rxnyrU,4483
|
|
161
|
+
nat/eval/register.py,sha256=Vce8HGsu6KDj7MA_5W2ziQtss1F180ndMjuqGiHxTe8,1358
|
|
162
|
+
nat/eval/remote_workflow.py,sha256=JAAbD0s753AOjo9baT4OqcB5dVEDmN34jPe0Uk13LcU,6024
|
|
139
163
|
nat/eval/runtime_event_subscriber.py,sha256=9MVgZLKvpnThHINaPbszPYDWnJ61sntS09YZtDhIRE4,1900
|
|
140
164
|
nat/eval/usage_stats.py,sha256=_d_ErIvSKDN8wuvOyPn01kqM7zlFpwVxqOonaCV5XtY,1319
|
|
141
165
|
nat/eval/dataset_handler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
166
|
nat/eval/dataset_handler/dataset_downloader.py,sha256=w5Kjj7Dn2gQ14ekgt3rtGT8EPGJtXXXlckbtby9rJ2k,4553
|
|
143
167
|
nat/eval/dataset_handler/dataset_filter.py,sha256=HrK0m3SQnPX6zOcKwJwYMrD9O-f6aOw8Vo3j9RKszqE,2115
|
|
144
|
-
nat/eval/dataset_handler/dataset_handler.py,sha256=
|
|
168
|
+
nat/eval/dataset_handler/dataset_handler.py,sha256=my28rKvQiiRN_h2TJz6fdKeMOjP3LC3_e2aJNnPPYhE,18159
|
|
145
169
|
nat/eval/evaluator/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
146
|
-
nat/eval/evaluator/base_evaluator.py,sha256=
|
|
147
|
-
nat/eval/evaluator/evaluator_model.py,sha256=
|
|
170
|
+
nat/eval/evaluator/base_evaluator.py,sha256=5WaVGhCGzkynCJyQdxRv7CtqLoUpr6B4O8tilP_gb3g,3232
|
|
171
|
+
nat/eval/evaluator/evaluator_model.py,sha256=riGCcDW8YwC3Kd1yoVmbMdJE1Yf2kVmO8uhsGsKKJA4,1878
|
|
148
172
|
nat/eval/rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
|
-
nat/eval/rag_evaluator/evaluate.py,sha256=
|
|
150
|
-
nat/eval/rag_evaluator/register.py,sha256=
|
|
173
|
+
nat/eval/rag_evaluator/evaluate.py,sha256=iQ_fUg1PAuIB2gH6Y7Gz9PeztsdhEswUjyUMa5ZXEx4,8399
|
|
174
|
+
nat/eval/rag_evaluator/register.py,sha256=AzT5uICDU5dEo7scvStmOWC7ac-S0Tx4UY87idGtXIs,5835
|
|
151
175
|
nat/eval/runners/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
152
176
|
nat/eval/runners/config.py,sha256=bRPai_th02OJrFepbbY6w-t7A18TBXozQUnnnH9iWIU,1403
|
|
153
177
|
nat/eval/runners/multi_eval_runner.py,sha256=3YSHOHjGFSlMxVEkuphUsCW5H5w73k3xD-W2rFNRWqE,1986
|
|
178
|
+
nat/eval/runtime_evaluator/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
179
|
+
nat/eval/runtime_evaluator/evaluate.py,sha256=HTUDWrUD6G8ggkofDCRhwuXWdQTb3V7o9FJ2_vc_LyQ,5379
|
|
180
|
+
nat/eval/runtime_evaluator/register.py,sha256=eOqokSisoaYzCANzyLXmGGCGUp0rLXdcqHXtDW_bZ5s,4509
|
|
154
181
|
nat/eval/swe_bench_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
-
nat/eval/swe_bench_evaluator/evaluate.py,sha256=
|
|
182
|
+
nat/eval/swe_bench_evaluator/evaluate.py,sha256=agiRVnUBT53vjjYEd5dCscLy6FTj12s_gYgmaI3agy0,9827
|
|
156
183
|
nat/eval/swe_bench_evaluator/register.py,sha256=5mzvBTUBdqahBZNU4KjB1go81cObo9F4iA3y_eOJ86g,1537
|
|
157
184
|
nat/eval/trajectory_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
158
|
-
nat/eval/trajectory_evaluator/evaluate.py,sha256=
|
|
159
|
-
nat/eval/trajectory_evaluator/register.py,sha256=
|
|
185
|
+
nat/eval/trajectory_evaluator/evaluate.py,sha256=wtbKyVs-jE0xjkDLOYHVwoa3J1yaWyO0FvZpxajVRE0,3242
|
|
186
|
+
nat/eval/trajectory_evaluator/register.py,sha256=QijI0Lf_9OxQUgOlNIbSG5H60QNy6dKjpt7Cz4p_IWk,1715
|
|
160
187
|
nat/eval/tunable_rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
|
-
nat/eval/tunable_rag_evaluator/evaluate.py,sha256=
|
|
188
|
+
nat/eval/tunable_rag_evaluator/evaluate.py,sha256=SzZYwE0juuNv6o9Pbddxi4edxRXlo87SJJB0FAqM_ic,13021
|
|
162
189
|
nat/eval/tunable_rag_evaluator/register.py,sha256=jYhPz8Xwsxyb7E0xpkAcQFT20xjSoYd_4qOJ7ltvUzU,2558
|
|
163
190
|
nat/eval/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
+
nat/eval/utils/eval_trace_ctx.py,sha256=hN0YZ0wMOPzh9I-iSav-cGdxY3RWQWoE_tk5BxUf1mc,3264
|
|
164
192
|
nat/eval/utils/output_uploader.py,sha256=27-aKIejV-6DGNErR6iTioNE5rN_lEeiNoBTS1qIVVM,5579
|
|
165
193
|
nat/eval/utils/tqdm_position_registry.py,sha256=9CtpCk1wtYCSyieHPaSp8nlZu6EcNUOaUz2RTqfekrA,1286
|
|
166
|
-
nat/eval/utils/weave_eval.py,sha256=
|
|
194
|
+
nat/eval/utils/weave_eval.py,sha256=fma5x9JbWpWrfQbfMHcjMovlRVR0v35yfNt1Avt6Vro,7719
|
|
167
195
|
nat/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
196
|
nat/experimental/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
|
-
nat/experimental/decorators/experimental_warning_decorator.py,sha256=
|
|
197
|
+
nat/experimental/decorators/experimental_warning_decorator.py,sha256=ADj8fR9jL2FGFDcR8zJZbdvO9Leur8pUEVEUqpfNENY,5757
|
|
170
198
|
nat/experimental/test_time_compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
|
-
nat/experimental/test_time_compute/register.py,sha256=
|
|
199
|
+
nat/experimental/test_time_compute/register.py,sha256=7atPs0bUk8isVKwOpbG-3bTEjfPMDO3dU-TCjJui4bs,1568
|
|
172
200
|
nat/experimental/test_time_compute/editing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
201
|
nat/experimental/test_time_compute/editing/iterative_plan_refinement_editor.py,sha256=uh0vJFDUucSSd_boU9pwPm5JD674Hhhe5CQxvFWfHlg,6137
|
|
174
202
|
nat/experimental/test_time_compute/editing/llm_as_a_judge_editor.py,sha256=QAu46omTvXJOqWzN_Xeeuhf25R0WxHqMjAdXcB9IxqQ,8539
|
|
175
203
|
nat/experimental/test_time_compute/editing/motivation_aware_summarization.py,sha256=S7s_BigZ1ru-3lP7c58Zpt5Nxavi8Ko-A1cmH7KkX3s,4503
|
|
176
204
|
nat/experimental/test_time_compute/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
205
|
nat/experimental/test_time_compute/functions/execute_score_select_function.py,sha256=OHiQ01a6g3OEd-K1WZynuQspmrvBpgKKxxqO-UbM4z0,4550
|
|
178
|
-
nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=
|
|
179
|
-
nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py,sha256=
|
|
180
|
-
nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py,sha256=
|
|
206
|
+
nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=ZkxFwF8SF6y88qa9ZqBsie--bnbsHpWC72ky-ttBzV0,10067
|
|
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
|
|
181
209
|
nat/experimental/test_time_compute/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
210
|
nat/experimental/test_time_compute/models/editor_config.py,sha256=wFHcd4GjWy4fxuXrYnC0gJ0ZszsAjziohK8vS7cc8EA,7153
|
|
183
211
|
nat/experimental/test_time_compute/models/scoring_config.py,sha256=zi93HQrtY1FiRuZgDOdlDZql6T-1W6SteybSUMXjr8U,5500
|
|
184
212
|
nat/experimental/test_time_compute/models/search_config.py,sha256=yqkwMuMs4LlEFhc8c2vZwCSmQlG4F-O4usxy-zomcZg,6487
|
|
185
213
|
nat/experimental/test_time_compute/models/selection_config.py,sha256=vcPvtE7Ya7IvvKIEBMmPYnfJgBnl5WOu1v7r95WHQK4,7867
|
|
186
214
|
nat/experimental/test_time_compute/models/stage_enums.py,sha256=UNQwUqRFoRe5pgasUbBRkRil7zs_NAsJlgFbWhcAU_Y,1284
|
|
187
|
-
nat/experimental/test_time_compute/models/strategy_base.py,sha256=
|
|
215
|
+
nat/experimental/test_time_compute/models/strategy_base.py,sha256=N0s_SrxpUP9Sg32P1V1dm9C2uRH5JCdWvZGFngAU45U,2596
|
|
188
216
|
nat/experimental/test_time_compute/models/tool_use_config.py,sha256=WX6Z2ODGElDA7Io8wBxtDkk3jUQGtHLukS6a-ivSZnE,1617
|
|
189
217
|
nat/experimental/test_time_compute/models/ttc_item.py,sha256=E7WEYBmLKo5fth8oljnGF32lojkz31LZIZWNVnk_B3U,2387
|
|
190
218
|
nat/experimental/test_time_compute/scoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -198,143 +226,166 @@ nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py,sha2
|
|
|
198
226
|
nat/experimental/test_time_compute/selection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
227
|
nat/experimental/test_time_compute/selection/best_of_n_selector.py,sha256=0cFHOTfNsHSguP6Xw5f3MMgJZR-pbkaa4xQCACEOqqg,2489
|
|
200
228
|
nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py,sha256=qAVrMck-iDDVci3rg4F_jCky6QEwmJFzWw-2HB0G6EU,5798
|
|
201
|
-
nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py,sha256=
|
|
229
|
+
nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py,sha256=8bXzhpKAfGafGPN8TuXaGqZFuNk9A4IKqFFKan7NHLE,6709
|
|
202
230
|
nat/experimental/test_time_compute/selection/llm_based_plan_selector.py,sha256=GY85s6mxHcILeXS5GK_-F-mDYrArOw1WB1JsYorrrcQ,5611
|
|
203
231
|
nat/experimental/test_time_compute/selection/threshold_selector.py,sha256=9E__TMt5sOhm-KLTWdGKUrxQ6cKYqFjO-CoF_kNILPk,2415
|
|
204
232
|
nat/front_ends/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
205
|
-
nat/front_ends/register.py,sha256=
|
|
233
|
+
nat/front_ends/register.py,sha256=_C6AFpsQ8hUXavKHaBMy0g137fOcLfEjyU0EAuYqtao,857
|
|
206
234
|
nat/front_ends/console/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
207
|
-
nat/front_ends/console/authentication_flow_handler.py,sha256=
|
|
235
|
+
nat/front_ends/console/authentication_flow_handler.py,sha256=iv8sm7i1mtVT60lfXwwqDrlQfNZ1bl1bPfWkaH5oaLA,12147
|
|
208
236
|
nat/front_ends/console/console_front_end_config.py,sha256=wkMXk-RCdlEj3303kB1gh47UKJnubX2R-vzBzhedpS4,1318
|
|
209
|
-
nat/front_ends/console/console_front_end_plugin.py,sha256=
|
|
237
|
+
nat/front_ends/console/console_front_end_plugin.py,sha256=vsaBwCvgsyDNEM2YdH5bKivXWa4uPTfMv9cQaoEh7uI,4310
|
|
210
238
|
nat/front_ends/console/register.py,sha256=2Kf6Mthx6jzWzU8YdhYIR1iABmZDvs1UXM_20npXWXs,1153
|
|
211
239
|
nat/front_ends/cron/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
212
240
|
nat/front_ends/fastapi/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
213
|
-
nat/front_ends/fastapi/
|
|
214
|
-
nat/front_ends/fastapi/
|
|
215
|
-
nat/front_ends/fastapi/
|
|
216
|
-
nat/front_ends/fastapi/
|
|
241
|
+
nat/front_ends/fastapi/dask_client_mixin.py,sha256=N_tw4yxA7EKIFTKp5_C2ZksIZucWxRYkFjmZszkAkXc,2072
|
|
242
|
+
nat/front_ends/fastapi/fastapi_front_end_config.py,sha256=BcuzrVlA5b7yYyQKNvQgEanDBtKEHdpC8TAd-O7lfF0,11992
|
|
243
|
+
nat/front_ends/fastapi/fastapi_front_end_controller.py,sha256=ei-34KCMpyaeAgeAN4gVvSGFjewjjRhHZPN0FqAfhDY,2548
|
|
244
|
+
nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=e33YkMcLzvm4OUG34bhl-WYiBTqkR-_wJYKG4GODkGM,11169
|
|
245
|
+
nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=yrUSjbo9ge7yZi4fcFOsVFhLL5zxSh8ftZtHAExfm_s,60342
|
|
217
246
|
nat/front_ends/fastapi/intermediate_steps_subscriber.py,sha256=kbyWlBVpyvyQQjeUnFG9nsR4RaqqNkx567ZSVwwl2RU,3104
|
|
218
|
-
nat/front_ends/fastapi/job_store.py,sha256=
|
|
219
|
-
nat/front_ends/fastapi/main.py,sha256=
|
|
220
|
-
nat/front_ends/fastapi/message_handler.py,sha256=
|
|
221
|
-
nat/front_ends/fastapi/message_validator.py,sha256=
|
|
247
|
+
nat/front_ends/fastapi/job_store.py,sha256=cWIBnIgRdkGL7qbBunEKzTYzdPp3l3QCDHMP-qTZJpc,22743
|
|
248
|
+
nat/front_ends/fastapi/main.py,sha256=s8gXCy61rJjK1aywMRpgPvzlkMGsCS-kI_0EIy4JjBM,2445
|
|
249
|
+
nat/front_ends/fastapi/message_handler.py,sha256=8pdA3K8hLCcR-ohHXYtLUgX1U2sYFzqgeslIszlQbRo,15181
|
|
250
|
+
nat/front_ends/fastapi/message_validator.py,sha256=Opx9ZjaNUfS3MS6w25bq_h_XASY_i2prmQRlY_sn5xM,17614
|
|
222
251
|
nat/front_ends/fastapi/register.py,sha256=rA12NPFgV9ZNHOEIgB7_SB6NytjRxgBTLo7fJ-73_HM,1153
|
|
223
|
-
nat/front_ends/fastapi/response_helpers.py,sha256=
|
|
224
|
-
nat/front_ends/fastapi/step_adaptor.py,sha256=
|
|
252
|
+
nat/front_ends/fastapi/response_helpers.py,sha256=MGE9E73sQSCYjsR5YXRga2qbl44hrTAPW2N5Ui3vXX0,9028
|
|
253
|
+
nat/front_ends/fastapi/step_adaptor.py,sha256=J6UtoXL9De8bgAg93nE0ASLUHZbidWOfRiuFo-tyZgY,12412
|
|
254
|
+
nat/front_ends/fastapi/utils.py,sha256=oYuuLsugx-fpy6u4xd9gL7g9kfwsyKOnwH5YOwH633w,1998
|
|
225
255
|
nat/front_ends/fastapi/auth_flow_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
256
|
nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py,sha256=69ye-nJ81jAoD1cVYv86-AUYu2-Uk8ZqU_m8AVO9vT8,1280
|
|
227
|
-
nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=
|
|
257
|
+
nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=qU8Kba48PD7TitygQNsZfx2rrluKlpRm7Zx_C6DtOnc,6576
|
|
228
258
|
nat/front_ends/fastapi/html_snippets/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
229
259
|
nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py,sha256=BNpWwzmA58UM0GK4kZXG4PHJy_5K9ihaVHu8SgCs5JA,1131
|
|
230
260
|
nat/front_ends/mcp/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
231
|
-
nat/front_ends/mcp/
|
|
232
|
-
nat/front_ends/mcp/
|
|
233
|
-
nat/front_ends/mcp/
|
|
261
|
+
nat/front_ends/mcp/introspection_token_verifier.py,sha256=s7Q4Q6rWZJ0ZVujSxxpvVI6Bnhkg1LJQ3RLkvhzFIGE,2836
|
|
262
|
+
nat/front_ends/mcp/mcp_front_end_config.py,sha256=fFbg800FDJfwv-nXc0jEPaNVtW4ApESmVRexr-werks,2313
|
|
263
|
+
nat/front_ends/mcp/mcp_front_end_plugin.py,sha256=NiIIgApk1X2yAEwtG9tHaY6SexQMbZrd6Drs7uIJix8,5055
|
|
264
|
+
nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=jMclC0qEd910oTGCqd1kQ8WjP3WPdQKTl854-2bU_KI,10200
|
|
234
265
|
nat/front_ends/mcp/register.py,sha256=3aJtgG5VaiqujoeU1-Eq7Hl5pWslIlIwGFU2ASLTXgM,1173
|
|
235
|
-
nat/front_ends/mcp/tool_converter.py,sha256=
|
|
266
|
+
nat/front_ends/mcp/tool_converter.py,sha256=jyH6tFKUDXSfRBKkv8WjvJsQt05zk3FJBTCwnIuUh5M,11547
|
|
236
267
|
nat/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
237
|
-
nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=
|
|
268
|
+
nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=py_yA9XAw-yHfK5cQJLM8ElnubEEM2ac8M0bvz-ScWs,1801
|
|
238
269
|
nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
-
nat/llm/aws_bedrock_llm.py,sha256
|
|
240
|
-
nat/llm/azure_openai_llm.py,sha256=
|
|
241
|
-
nat/llm/
|
|
242
|
-
nat/llm/
|
|
243
|
-
nat/llm/
|
|
270
|
+
nat/llm/aws_bedrock_llm.py,sha256=-P6OltFz8CPHmKmgUipFaIpROLGdnnRmd-q5BfjY7lM,3219
|
|
271
|
+
nat/llm/azure_openai_llm.py,sha256=30JWbNyscHhuRjFdWF2yLAEcKurY0q2BSMVFTdtSv9g,2649
|
|
272
|
+
nat/llm/litellm_llm.py,sha256=3XtAKdI4lmbbuiEGKSJob0mqAp8RvYRpxK6t0GQk0UE,2770
|
|
273
|
+
nat/llm/nim_llm.py,sha256=9sU3FUOedx5jY3He3qiN0T-AC48F5maIpz87NxP7Q0Q,2696
|
|
274
|
+
nat/llm/openai_llm.py,sha256=AMf8Xxzo3kYVi7XfyqatuU1-CH0-8QGmshDbSHHREXY,2487
|
|
275
|
+
nat/llm/register.py,sha256=7xDYdK4w4opAwIjzDM5x7moJXT3QeEGaGGc_nDfY0i4,1090
|
|
244
276
|
nat/llm/utils/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
245
|
-
nat/llm/utils/env_config_value.py,sha256=
|
|
277
|
+
nat/llm/utils/env_config_value.py,sha256=kBVsv0pEokIAfDQx5omR7_FevFv_5fTPswcbnvhVT2c,3548
|
|
246
278
|
nat/llm/utils/error.py,sha256=gFFDG_v_3hBZVWpcD7HWkno-NBHDjXae7qDGnfiCNwA,820
|
|
279
|
+
nat/llm/utils/thinking.py,sha256=bG2zjvSgRASlSghkVpGvvFoRqEESDVNknQtDYXyFyi0,7602
|
|
247
280
|
nat/memory/__init__.py,sha256=ARS_HJipPR4mLDqw3VISSQLzeezru_vgNgsi1Ku0GRE,828
|
|
248
281
|
nat/memory/interfaces.py,sha256=lyj1TGr3Fhibul8Y64Emj-BUEqDotmmFoVCEMqTujUA,5531
|
|
249
282
|
nat/memory/models.py,sha256=c5dA7nKHQ4AS1_ptQZcfC_oXO495-ehocnf_qXTE6c8,4319
|
|
250
|
-
nat/meta/pypi.md,sha256=
|
|
283
|
+
nat/meta/pypi.md,sha256=BRG0KqnZlxRYorEkCpb8RoOe3RQC6FlvVeMWCcdAzY4,4502
|
|
251
284
|
nat/object_store/__init__.py,sha256=81UKtZ6qcc__hfNjMnEYBHE16k7XBXX6R5IJNg1zfRs,831
|
|
252
285
|
nat/object_store/in_memory_object_store.py,sha256=98UgQK2YdXTTQjBfQS-mjBCCugm1XUB7DZCFS8xe9yQ,2644
|
|
253
286
|
nat/object_store/interfaces.py,sha256=5NbsE9TccihOf5ScG04hE1eNOaiajOZIUOeK_Kvukk8,2519
|
|
254
287
|
nat/object_store/models.py,sha256=xsch4o3GzEFxVbFEYBfr92lEMZk5XHHr224WZGsQUNM,1537
|
|
255
|
-
nat/object_store/register.py,sha256=
|
|
288
|
+
nat/object_store/register.py,sha256=jNuZfyG2rSuxS-DNK_aFdgfjiHK3VC1_4A5lmpmRP_A,756
|
|
256
289
|
nat/observability/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
257
|
-
nat/observability/exporter_manager.py,sha256=
|
|
258
|
-
nat/observability/register.py,sha256=
|
|
290
|
+
nat/observability/exporter_manager.py,sha256=sJqYEF68-83WPkhp7Sj6ULWV0FoWM8cXEZ4ZilaXFhs,13836
|
|
291
|
+
nat/observability/register.py,sha256=Hpk5aYYXCKdvkTqE245QgtmhCKrGh75uZZoefcxa38Y,4225
|
|
259
292
|
nat/observability/exporter/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
260
|
-
nat/observability/exporter/base_exporter.py,sha256=
|
|
293
|
+
nat/observability/exporter/base_exporter.py,sha256=OGSv-_688TmzdGUeax4iMBwvaHICPSyWmklsDQanbtM,16604
|
|
261
294
|
nat/observability/exporter/exporter.py,sha256=fqF0GYuhZRQEq0skq_FK2nlnsaUAzLpQi-OciaOkRno,2391
|
|
262
|
-
nat/observability/exporter/file_exporter.py,sha256=
|
|
263
|
-
nat/observability/exporter/processing_exporter.py,sha256=
|
|
295
|
+
nat/observability/exporter/file_exporter.py,sha256=XYsFjF8ob4Ag-SyGtKEh6wRU9lBx3lbdu7Uo85NvVyo,1465
|
|
296
|
+
nat/observability/exporter/processing_exporter.py,sha256=U_VE1VZZ2giGE-OUGH4pnHTYW2Nwcwfx4bFLL7_iu9M,25044
|
|
264
297
|
nat/observability/exporter/raw_exporter.py,sha256=0ROEd-DlLP6pIxl4u2zJ6PMVrDrQa0DMHFDRsdGQMIk,1859
|
|
265
|
-
nat/observability/exporter/span_exporter.py,sha256=
|
|
298
|
+
nat/observability/exporter/span_exporter.py,sha256=FIZgc_eTdfKr0pCSEC94PecsGGOelag1R-K76FMvI-0,14094
|
|
266
299
|
nat/observability/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
267
300
|
nat/observability/mixin/batch_config_mixin.py,sha256=DixQq-jRhBFJvpOX-gq7GvPmZCPOXQdacylyEuhZ6y0,1399
|
|
268
301
|
nat/observability/mixin/collector_config_mixin.py,sha256=3iptkRH9N6JgcsPq7GyjjJVAoxjd-l42UKE7iSF4Hq8,1087
|
|
269
|
-
nat/observability/mixin/file_mixin.py,sha256=
|
|
302
|
+
nat/observability/mixin/file_mixin.py,sha256=J5kC70O3hoU86IDOoQtdk7caRD28nlIZL3igXcRSNBE,12306
|
|
270
303
|
nat/observability/mixin/file_mode.py,sha256=Rq7l8UegECub5QCyCAYwhyL_Jul386gW-ANmtMmv2G4,837
|
|
304
|
+
nat/observability/mixin/redaction_config_mixin.py,sha256=yzLsgt1iaU0z7q1HvVT39kwhVVV6jBtWuP0SKG3jkMI,2141
|
|
271
305
|
nat/observability/mixin/resource_conflict_mixin.py,sha256=mcUp3Qinmhiepq3DyRvp9IaKGYtJfDgQVB-MuyVkWvk,5243
|
|
272
306
|
nat/observability/mixin/serialize_mixin.py,sha256=DgRHJpXCz9qHFYzhlTTx8Dkj297EylCKK3ydGrH5zOw,2478
|
|
273
|
-
nat/observability/mixin/
|
|
307
|
+
nat/observability/mixin/tagging_config_mixin.py,sha256=m-AUeLsiiKPMdMv_0TKAFL18BvVJ4tRzPoRCVpzyfN8,1777
|
|
308
|
+
nat/observability/mixin/type_introspection_mixin.py,sha256=ZHMRmp38R2KypnPBJyenf6rW8jVoz0cWnFlG8rHLtpA,20327
|
|
274
309
|
nat/observability/processor/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
275
|
-
nat/observability/processor/batching_processor.py,sha256=
|
|
310
|
+
nat/observability/processor/batching_processor.py,sha256=SBxESG24n5Iiz982DiVPMGy82L2gi9auWkTLALsUsrU,13754
|
|
276
311
|
nat/observability/processor/callback_processor.py,sha256=T5DsEm4HCUOi1VL29XCpaK04sYQvJ75KZLH-mlJGQgk,1547
|
|
312
|
+
nat/observability/processor/falsy_batch_filter_processor.py,sha256=CInyZ1eIjtD1W6imPbuqwUeoWOMQ_0J0M9nPL6XwhTo,1778
|
|
277
313
|
nat/observability/processor/intermediate_step_serializer.py,sha256=aHeCmixyop7uxNnKmrUZ8SIFeBNS05gYohKLepqbrcQ,1249
|
|
278
|
-
nat/observability/processor/processor.py,sha256=
|
|
314
|
+
nat/observability/processor/processor.py,sha256=NhcRKkXcfRDgHfn8Bw0XSnb8S9h5cdI4HnEO2BubLfo,2695
|
|
315
|
+
nat/observability/processor/processor_factory.py,sha256=1Ak4OWwmbimc5PKWwqPYq4fJqJifFm6MiI8vcafeErY,2408
|
|
316
|
+
nat/observability/processor/span_tagging_processor.py,sha256=9Zqr-IvnZYOddTw-n0pVzigcJB6hNVc9TyZma9z8Ozw,2553
|
|
317
|
+
nat/observability/processor/redaction/__init__.py,sha256=fctoXoEfCotEJphUS7rqtT7jHw2MPRA795D77xjSKfU,964
|
|
318
|
+
nat/observability/processor/redaction/contextual_redaction_processor.py,sha256=HFsuOsFgUinTUWJ3GEsqvLBfV08So2A2rf9LGZyzc34,4953
|
|
319
|
+
nat/observability/processor/redaction/contextual_span_redaction_processor.py,sha256=wmliaoeKwzQQX8kaeC-Jifq6YvSgeO_H5ri6sWhX7t4,2575
|
|
320
|
+
nat/observability/processor/redaction/redaction_processor.py,sha256=9WZACuFcR8f41VyOYWwXHxpHuxR2sQ3QC-Ta3TNJ2wk,6164
|
|
321
|
+
nat/observability/processor/redaction/span_header_redaction_processor.py,sha256=NA3M8Ex4J5QqMfAIOiI-I_TUgO3511FY7xZmglRg3xU,3764
|
|
279
322
|
nat/observability/utils/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
280
323
|
nat/observability/utils/dict_utils.py,sha256=DcNhZ0mgcJ-QQfsCl9QSGL-m_jTuHhr1N-v43ZCAMik,7371
|
|
281
324
|
nat/observability/utils/time_utils.py,sha256=V8m-e3ldUgwv031B17y29yLXIowdlTH4QW8xDw9WKvk,1071
|
|
282
325
|
nat/plugins/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
|
|
283
326
|
nat/profiler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
|
-
nat/profiler/data_frame_row.py,sha256=
|
|
327
|
+
nat/profiler/data_frame_row.py,sha256=GPVbsjh1vF3PHcuyFiugvyaw5UuvRYh5x5VSZ7FcPTo,1719
|
|
285
328
|
nat/profiler/data_models.py,sha256=UAuTy9_l623JUNdIKIHPxoNEwZ7Qj-Vv93rfjxyf5Ak,1026
|
|
286
329
|
nat/profiler/inference_metrics_model.py,sha256=Thz3OHBDzGrpPYaOm8m8_pNeEA_q0yDlUUDHFkQ3U90,1481
|
|
287
330
|
nat/profiler/intermediate_property_adapter.py,sha256=cCxyldN052meVJ4Ul-vbmguum0mLdaz3syFoidkIDsg,3537
|
|
288
|
-
nat/profiler/profile_runner.py,sha256=
|
|
289
|
-
nat/profiler/utils.py,sha256=
|
|
331
|
+
nat/profiler/profile_runner.py,sha256=mVYfonKyP-KwxG9aACicP7m0eeGovmK8a_WUsq-RGkA,22541
|
|
332
|
+
nat/profiler/utils.py,sha256=XAMq_0nYMf0blD8ffoRj4xSQgwz8KagsqlM7VmnDI44,8266
|
|
290
333
|
nat/profiler/calc/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
291
|
-
nat/profiler/calc/calc_runner.py,sha256=
|
|
334
|
+
nat/profiler/calc/calc_runner.py,sha256=1xvLvVF4QOX_p1-Ps1wqNGWZ9zX49JZxjqo0KiDDn-g,30624
|
|
292
335
|
nat/profiler/calc/calculations.py,sha256=K_r1OvEOEF5ffoadS4mAzTNHguVLMkNkrxrdtKvJJSs,12327
|
|
293
336
|
nat/profiler/calc/data_models.py,sha256=vmBu89C1LsJyIRpEEzGi29_cFJDZJUJXOSXWtraVfd8,6172
|
|
294
337
|
nat/profiler/calc/plot.py,sha256=h_GyTg-6qU6n2ZAUCsMmXkz6ha-lrcQ903G0JxNWrzM,12222
|
|
295
338
|
nat/profiler/callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
|
-
nat/profiler/callbacks/agno_callback_handler.py,sha256=
|
|
339
|
+
nat/profiler/callbacks/agno_callback_handler.py,sha256=oM1KN3m2x957SWWCcibmUpSIKlS3Puj6mhw7-k4Vxxk,14904
|
|
297
340
|
nat/profiler/callbacks/base_callback_class.py,sha256=BFZMkb-dPoHAnM_4jVXX08hD8Vi2n8thyftVlUxfE24,745
|
|
298
|
-
nat/profiler/callbacks/langchain_callback_handler.py,sha256=
|
|
299
|
-
nat/profiler/callbacks/llama_index_callback_handler.py,sha256=
|
|
300
|
-
nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=
|
|
341
|
+
nat/profiler/callbacks/langchain_callback_handler.py,sha256=GakGAu-ekscK-aj22i47QZWzlluRDEfYK54WQ-CrL3w,12748
|
|
342
|
+
nat/profiler/callbacks/llama_index_callback_handler.py,sha256=xzYve07uMlSTDjj929LMtiVE5zdvAI2f8A19oJolKXs,9272
|
|
343
|
+
nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=BknzhQNB-MDMhR4QC9JScCp-zXq7KZ33SFb7X0MiTaI,11087
|
|
301
344
|
nat/profiler/callbacks/token_usage_base_model.py,sha256=X0b_AbBgVQAAbgbDMim-3S3XdQ7PaPs9qMUACvMAe5o,1104
|
|
302
345
|
nat/profiler/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
|
-
nat/profiler/decorators/framework_wrapper.py,sha256=
|
|
304
|
-
nat/profiler/decorators/function_tracking.py,sha256
|
|
346
|
+
nat/profiler/decorators/framework_wrapper.py,sha256=qlQ_o6fzsV6jUBbHYFuGjX_Aq-NDZ23l9l3ViDKxy5g,7682
|
|
347
|
+
nat/profiler/decorators/function_tracking.py,sha256=-ai_4djCbNwMan5SiTq3MVMBrcKoUWyxzviAV-Eh4xg,16771
|
|
305
348
|
nat/profiler/forecasting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
306
349
|
nat/profiler/forecasting/config.py,sha256=5BhMa8csuPCjEnTaNQjo_2IoO7esh1ch02MoSWkvwPw,791
|
|
307
350
|
nat/profiler/forecasting/model_trainer.py,sha256=6Ci2KN4sNj1V3yduHXlA0tn50yHUmM2VcbRRS2L96OA,2456
|
|
308
351
|
nat/profiler/forecasting/models/__init__.py,sha256=pLpWi7u1UrguKIYD-BYu8IExvJLX_U2cuW3Ifp3zCOY,937
|
|
309
|
-
nat/profiler/forecasting/models/forecasting_base_model.py,sha256=
|
|
310
|
-
nat/profiler/forecasting/models/linear_model.py,sha256=
|
|
311
|
-
nat/profiler/forecasting/models/random_forest_regressor.py,sha256=
|
|
352
|
+
nat/profiler/forecasting/models/forecasting_base_model.py,sha256=PP6PObogPsfvzVGo6trfcDZ5b-VutqGVjdeOMAZB2W8,1235
|
|
353
|
+
nat/profiler/forecasting/models/linear_model.py,sha256=3Jyw238v0j4MkR5cqPazYP-gjw6bMUS6fS6xZlRndJs,7010
|
|
354
|
+
nat/profiler/forecasting/models/random_forest_regressor.py,sha256=3Lgguy5CFKoPCJyrS7f8ImeV6SCLAGajfnZCIAmBs8Y,9550
|
|
312
355
|
nat/profiler/inference_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
|
-
nat/profiler/inference_optimization/data_models.py,sha256=
|
|
356
|
+
nat/profiler/inference_optimization/data_models.py,sha256=gJzlzKIkUbPPA4QyhQIXtE3hzuxdKFpB5ywECJ4T2Vg,11779
|
|
314
357
|
nat/profiler/inference_optimization/llm_metrics.py,sha256=kC8LUonJiXjQ5ogH8D7GTEYk44ypwncRJrN0ByRWz6k,9482
|
|
315
358
|
nat/profiler/inference_optimization/prompt_caching.py,sha256=n3kfgWibCjkXbp6_Qo8q3aLk3fhr_p8KYnAOnTybpZU,6505
|
|
316
|
-
nat/profiler/inference_optimization/token_uniqueness.py,sha256=
|
|
359
|
+
nat/profiler/inference_optimization/token_uniqueness.py,sha256=zCPPwaBj1LOp6b9xKg9rJ80nbx1pgiRbo2PID_N8d2c,4536
|
|
317
360
|
nat/profiler/inference_optimization/workflow_runtimes.py,sha256=RXCsLoWkaLi32fi8kqajhgVMIedtzljUUZ8LA-xJDEU,2664
|
|
318
361
|
nat/profiler/inference_optimization/bottleneck_analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
|
-
nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py,sha256=
|
|
320
|
-
nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py,sha256=
|
|
362
|
+
nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py,sha256=ouXHdlzqGD1hHLCXE7fNmUmUJqk8-Kw33XcHYg9ACdU,16741
|
|
363
|
+
nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py,sha256=DBbOxgKAYsGMIkFnbHGNPDdZQllmXBKW0Nkiso05NzI,11096
|
|
321
364
|
nat/profiler/inference_optimization/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
322
365
|
nat/profiler/inference_optimization/experimental/concurrency_spike_analysis.py,sha256=3hFMDbfW7MKxFIhO7y35qtP5wPtLAA2ZqltlnI-OsVc,16953
|
|
323
|
-
nat/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=
|
|
366
|
+
nat/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=mTC93u3e78nFDP36TnkNse8_HwNQKn3Qw4ksMycRAA8,16664
|
|
367
|
+
nat/profiler/parameter_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
368
|
+
nat/profiler/parameter_optimization/optimizable_utils.py,sha256=93Pl8A14Zq_f3XsxSH-yFnEJ6B7W5hp7doPnPoLlRB4,3714
|
|
369
|
+
nat/profiler/parameter_optimization/optimizer_runtime.py,sha256=rXmCOq81o7ZorQOUYociVjuO3NO9CIjFBbwql2u_4H4,2715
|
|
370
|
+
nat/profiler/parameter_optimization/parameter_optimizer.py,sha256=CxRFSnl0w0JQvijsY-gszUNxvSrihQ0Jl9ySYClsNFI,6544
|
|
371
|
+
nat/profiler/parameter_optimization/parameter_selection.py,sha256=pfnNQIx1evNICgChsOJXIFQHoL1R_kmh_vNDsVMC9kg,3982
|
|
372
|
+
nat/profiler/parameter_optimization/pareto_visualizer.py,sha256=IU-4Kw3cVKfDBmXyxtzDf5B325hizMmEYjB9_QJGwD0,15903
|
|
373
|
+
nat/profiler/parameter_optimization/prompt_optimizer.py,sha256=_AmdeB1jRamd93qR5UqRy5LweYR3bjnD7zoLxzXYE0k,17658
|
|
374
|
+
nat/profiler/parameter_optimization/update_helpers.py,sha256=NxWhrGVchbjws85pPd-jS-C14_l70QvVSvEfENndVcY,2339
|
|
324
375
|
nat/registry_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
325
376
|
nat/registry_handlers/metadata_factory.py,sha256=MTbXa7pifVPpmLJs86jVCS1wHk5drRykNPpJuv2A_0U,2769
|
|
326
|
-
nat/registry_handlers/package_utils.py,sha256=
|
|
327
|
-
nat/registry_handlers/register.py,sha256=
|
|
377
|
+
nat/registry_handlers/package_utils.py,sha256=2xX3IHr5aK-xx8asULFw0VDgZb3MT-o7F-pTWJYgtp4,22517
|
|
378
|
+
nat/registry_handlers/register.py,sha256=NLjAiSis08lMvHomUWkJnjS1bRGJVOoym8JU5eRtemM,795
|
|
328
379
|
nat/registry_handlers/registry_handler_base.py,sha256=pEE1nKG824BnWlUc6y0bwAzPlrLgHeJIgcXyncY2dVg,5767
|
|
329
380
|
nat/registry_handlers/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
|
-
nat/registry_handlers/local/local_handler.py,sha256=
|
|
381
|
+
nat/registry_handlers/local/local_handler.py,sha256=Dz-jRccF3NbSM9ddEzI7qckD-NgjRfyZz94hKlVyEr4,7567
|
|
331
382
|
nat/registry_handlers/local/register_local.py,sha256=EMcQ3tvDDic4YeViz3jNIQyrUiD0foriP11CuuEmrr0,1341
|
|
332
383
|
nat/registry_handlers/pypi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
333
|
-
nat/registry_handlers/pypi/pypi_handler.py,sha256=
|
|
384
|
+
nat/registry_handlers/pypi/pypi_handler.py,sha256=ec6oJjMO4msWTqahpP0L72O-iVckOFvrgcnpZuUlrw4,10070
|
|
334
385
|
nat/registry_handlers/pypi/register_pypi.py,sha256=iFoZeAQjO_dZfzCsgp-5SmqwFDQ9y8QReVHZ0iGFoow,1840
|
|
335
386
|
nat/registry_handlers/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
336
387
|
nat/registry_handlers/rest/register_rest.py,sha256=We_WtZ0KPSgCjsORRA1QNAgljEAGLeUi92mYRJ3nVQU,2529
|
|
337
|
-
nat/registry_handlers/rest/rest_handler.py,sha256=
|
|
388
|
+
nat/registry_handlers/rest/rest_handler.py,sha256=Ez-seJyUqVYrR_kLrDFrA1kuzWIKeiJYY0GTrV9-qnA,9371
|
|
338
389
|
nat/registry_handlers/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
339
390
|
nat/registry_handlers/schemas/headers.py,sha256=LnVfCMNc3vRr-lRdFB8Cuv9Db5Ct-ACTapjWLaRg2os,1549
|
|
340
391
|
nat/registry_handlers/schemas/package.py,sha256=dVBRh1Tps_lV0k-f60mT7FwJftlVmf8JgiXie0tZZhQ,2421
|
|
@@ -346,28 +397,29 @@ nat/registry_handlers/schemas/status.py,sha256=U4c5vWsu1SqewSRSgR9ch5xji8xPSUdza
|
|
|
346
397
|
nat/retriever/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
398
|
nat/retriever/interface.py,sha256=CRvx-UBFoa_bDcHrr_kkKhgUx2fthcaH_p50s59zE6Y,1413
|
|
348
399
|
nat/retriever/models.py,sha256=J75RLAFCPaxFUzJHSe25s6mqKcRPcw9wZjkQeuIaNGo,2432
|
|
349
|
-
nat/retriever/register.py,sha256=
|
|
400
|
+
nat/retriever/register.py,sha256=jzvq063XByWmFbCft2pv0_uHgIwnhN1d9WNDPgQTexQ,872
|
|
350
401
|
nat/retriever/milvus/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
351
402
|
nat/retriever/milvus/register.py,sha256=FaWvUFj4rU6qcui-G459Z-bQV-QAVR3PNONT1qu7jxs,4027
|
|
352
|
-
nat/retriever/milvus/retriever.py,sha256=
|
|
403
|
+
nat/retriever/milvus/retriever.py,sha256=wfWi-Ck17ZXbrCJE3MiEVD4DuVeeAkgifdAkoISqNa0,9485
|
|
353
404
|
nat/retriever/nemo_retriever/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
354
405
|
nat/retriever/nemo_retriever/register.py,sha256=3XdrvEJzX2Zc8wpdm__4YYlEWBW-FK3tl_BwOWtn-4w,2893
|
|
355
|
-
nat/retriever/nemo_retriever/retriever.py,sha256=
|
|
406
|
+
nat/retriever/nemo_retriever/retriever.py,sha256=gi3_qJFqE-iqRh3of_cmJg-SwzaQ3z24zA9LwY_MSLY,6930
|
|
356
407
|
nat/runtime/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
357
|
-
nat/runtime/loader.py,sha256=
|
|
358
|
-
nat/runtime/runner.py,sha256=
|
|
359
|
-
nat/runtime/session.py,sha256=
|
|
408
|
+
nat/runtime/loader.py,sha256=obUdAgZVYCPGC0R8u3wcoKFJzzSPQgJvrbU4OWygtog,7953
|
|
409
|
+
nat/runtime/runner.py,sha256=sUF-zJMgqcFq4xRx8y5bxct2EzgiKbmFkvWkYxlDsQg,11798
|
|
410
|
+
nat/runtime/session.py,sha256=yOlZg3myau4c06M8v23KEojQpmMwDsr5P6GnXiVMg94,9101
|
|
360
411
|
nat/runtime/user_metadata.py,sha256=ce37NRYJWnMOWk6A7VAQ1GQztjMmkhMOq-uYf2gNCwo,3692
|
|
361
412
|
nat/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
|
-
nat/settings/global_settings.py,sha256=
|
|
413
|
+
nat/settings/global_settings.py,sha256=dEw9nkyx7pEEufmLS1o3mWhcXy7-ZpES4BZx1OWfg5M,12467
|
|
363
414
|
nat/test/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
|
|
364
415
|
nat/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
|
-
nat/tool/chat_completion.py,sha256=
|
|
366
|
-
nat/tool/datetime_tools.py,sha256=
|
|
367
|
-
nat/tool/document_search.py,sha256=
|
|
368
|
-
nat/tool/
|
|
369
|
-
nat/tool/
|
|
370
|
-
nat/tool/
|
|
416
|
+
nat/tool/chat_completion.py,sha256=u9i39TuIPrCSWrNOw57QYD3i6pPbxV-7Gox8GRx9Vz0,3251
|
|
417
|
+
nat/tool/datetime_tools.py,sha256=JVYbzRVgv_4XrZwaujsiq_94dDUi6R3lAwlBjGZ3lw0,3237
|
|
418
|
+
nat/tool/document_search.py,sha256=pLXWNfrddwu45Qa7z3pxfCUQEpTgGekvE-2WzM-CTP4,6751
|
|
419
|
+
nat/tool/github_tools.py,sha256=Pn6p6ebLClNUy6MJIWf-Pl5NguMUT-IJ-bhmpJmvBrg,21900
|
|
420
|
+
nat/tool/nvidia_rag.py,sha256=cEHSc3CZwpd71YcOQngya-Ca_B6ZOb87Dmsoza0VhFY,4163
|
|
421
|
+
nat/tool/register.py,sha256=F1mQs9gI3Ee0EESFyBiTFZeqscY173ENQlfKcWZup0c,1208
|
|
422
|
+
nat/tool/retriever.py,sha256=FP5JL1vCQNrqaKz4F1up-osjxEPhxPFOyaScrgByc34,3877
|
|
371
423
|
nat/tool/server_tools.py,sha256=rQLipwRv8lAyU-gohky2JoVDxWQTUTSttNWjhu7lcHU,3194
|
|
372
424
|
nat/tool/code_execution/README.md,sha256=sl3YX4As95HX61XqTXOGnUcHBV1lla-OeuTnLI4qgng,4019
|
|
373
425
|
nat/tool/code_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -378,60 +430,50 @@ nat/tool/code_execution/utils.py,sha256=__W-T1kaphFKYSc2AydQW8lCdvD7zAccarvs7XVF
|
|
|
378
430
|
nat/tool/code_execution/local_sandbox/.gitignore,sha256=BrV-H5osDtwwIx0eieoexolpnaJvc2DQLV15j95Qtyg,19
|
|
379
431
|
nat/tool/code_execution/local_sandbox/Dockerfile.sandbox,sha256=CYqZ5jbBwk3ge8pg87aLjhzWERauScwya5naYq0vb5o,2316
|
|
380
432
|
nat/tool/code_execution/local_sandbox/__init__.py,sha256=k25Kqr_PrH4s0YCfzVzC9vaBAiu8yI428C4HX-qUcqA,615
|
|
381
|
-
nat/tool/code_execution/local_sandbox/local_sandbox_server.py,sha256=
|
|
433
|
+
nat/tool/code_execution/local_sandbox/local_sandbox_server.py,sha256=eOFQV8ZE9-n7YfV4EEr-BFxDXG15jQUhO9oX1P1mgm8,6926
|
|
382
434
|
nat/tool/code_execution/local_sandbox/sandbox.requirements.txt,sha256=R86yJ6mcUhfD9_ZU-rSMdaojR6MU41hcH4pE3vAGmcE,43
|
|
383
435
|
nat/tool/code_execution/local_sandbox/start_local_sandbox.sh,sha256=gnPuzbneKZ61YvzaGIYSUdcyKMLuchYPti3zGLaNCZY,2055
|
|
384
|
-
nat/tool/github_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
385
|
-
nat/tool/github_tools/create_github_commit.py,sha256=O4EmNk_QQlflOpY5gT6oWlnY4wbzA7BnTk49D-2FbT8,6604
|
|
386
|
-
nat/tool/github_tools/create_github_issue.py,sha256=9jAHtKgZFGCJV4OE0Pj8sZDKr25pf7cbJ8Czt5hTaj0,3428
|
|
387
|
-
nat/tool/github_tools/create_github_pr.py,sha256=9nuJq9bAbqVXOyLhjO_3tS70eI_72mhNE6KRtN7PSCQ,4945
|
|
388
|
-
nat/tool/github_tools/get_github_file.py,sha256=tGMzrE-v16rjDoG-IbOkaS5hXe4SCb-onkTZdA-6eSg,4486
|
|
389
|
-
nat/tool/github_tools/get_github_issue.py,sha256=fFJFYt3mWR6CK46r6k3-3eVbAKLNh1yHRMmZU0c-4jA,6532
|
|
390
|
-
nat/tool/github_tools/get_github_pr.py,sha256=p4Xu-YA6L1dQ8O0e5LDzphrn5DknjttDhLeudgk7Iys,9716
|
|
391
|
-
nat/tool/github_tools/update_github_issue.py,sha256=fj_OAp5bSmSyj-wPAUvzfCGRBuwPyoK1kJ95Fn8XDg8,4103
|
|
392
|
-
nat/tool/mcp/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
393
|
-
nat/tool/mcp/exceptions.py,sha256=EGVOnYlui8xufm8dhJyPL1SUqBLnCGOTvRoeyNcmcWE,5980
|
|
394
|
-
nat/tool/mcp/mcp_client.py,sha256=jdlJULJG1EGdj2CwT26x6hBatG6vz0cXsh14c_ttv20,8963
|
|
395
|
-
nat/tool/mcp/mcp_tool.py,sha256=DhnGEHQI2bIrTMzwW3EH08Wgm2QcvvEMeyjy0_xVRoE,4096
|
|
396
436
|
nat/tool/memory_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
397
437
|
nat/tool/memory_tools/add_memory_tool.py,sha256=DYaYkVlH2myRshJpzmULfzdF0wFoPCAkTBokFVmhfzU,3349
|
|
398
438
|
nat/tool/memory_tools/delete_memory_tool.py,sha256=EWJVgzIzLDqktY5domXph-N2U9FmybdWl4J7KM7uK4g,2532
|
|
399
|
-
nat/tool/memory_tools/get_memory_tool.py,sha256=
|
|
439
|
+
nat/tool/memory_tools/get_memory_tool.py,sha256=F0P7OkWQJZ1W6vCBWhAuYitBLnRXpAxnGyNmbkcTpAk,2749
|
|
400
440
|
nat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
|
+
nat/utils/callable_utils.py,sha256=EIao6NhHRFEoBqYRC7aWoFqhlr2LeFT0XK-ac0coF9E,2475
|
|
401
442
|
nat/utils/debugging_utils.py,sha256=6M4JhbHDNDnfmSRGmHvT5IgEeWSHBore3VngdE_PMqc,1332
|
|
443
|
+
nat/utils/decorators.py,sha256=AoMip9zmqrZm5wovZQytNvzFfIlS3PQxSYcgYeoLhxA,8240
|
|
402
444
|
nat/utils/dump_distro_mapping.py,sha256=ptRVwrzhZplEWZUwwHOzyeuLj-ykkxn96t4oxUmRG28,1147
|
|
445
|
+
nat/utils/log_levels.py,sha256=2hHWgOSuvuISdKN82BQgBh2yk9V5324jYMki8-1rAYs,888
|
|
403
446
|
nat/utils/log_utils.py,sha256=dZLHt7qFqLlpPqMMFO9UVtSkOpMjFwz9tkmbAfOiNlg,1355
|
|
404
447
|
nat/utils/metadata_utils.py,sha256=BSsiB6jIWd8oEuEynJi55qCG762UuTYFaiUH0OT9HdY,2897
|
|
405
448
|
nat/utils/optional_imports.py,sha256=jQSVBc2fBSRw-2d6r8cEwvh5-di2EUUPakuuo9QbbwA,4039
|
|
406
449
|
nat/utils/producer_consumer_queue.py,sha256=AcSYkAMBxLx06A5Xdy960PP3AJ7YaSPGJ7rbN_hJsjI,6599
|
|
407
450
|
nat/utils/string_utils.py,sha256=71HuIzGx7rF8ocTmeoUBpnCi1Qf1yynYlNLLIKP4BVs,1415
|
|
408
|
-
nat/utils/type_converter.py,sha256
|
|
409
|
-
nat/utils/type_utils.py,sha256=
|
|
451
|
+
nat/utils/type_converter.py,sha256=-2PwMsEm7tlmrniZzO7x2DnRxhOEeJGVAIJc3c5n2g4,10655
|
|
452
|
+
nat/utils/type_utils.py,sha256=SMo5hM4dKf2G3U_0J0wvdFX6-lzMVSh8vd-W34Oixow,14836
|
|
410
453
|
nat/utils/url_utils.py,sha256=UzDP_xaS6brWTu7vAws0B4jZyrITIK9Si3U6pZBZqDE,1028
|
|
411
454
|
nat/utils/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
412
|
-
nat/utils/data_models/schema_validator.py,sha256=
|
|
455
|
+
nat/utils/data_models/schema_validator.py,sha256=k-9nv7g0Xqp2zGaN-FNxFoRUuvH-HRrelOCQllHV3sA,1527
|
|
413
456
|
nat/utils/exception_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
|
-
nat/utils/exception_handlers/automatic_retries.py,sha256=
|
|
415
|
-
nat/utils/exception_handlers/
|
|
416
|
-
nat/utils/exception_handlers/schemas.py,sha256=VynNMWHYqpoTfDEpU8Nyw80k04k4Q-0Xr0gFr8wAxpQ,3835
|
|
457
|
+
nat/utils/exception_handlers/automatic_retries.py,sha256=PPTUK70aO_kpnYHfk_MSz9ehONA0rP6ocUbP2LnxSAA,14511
|
|
458
|
+
nat/utils/exception_handlers/schemas.py,sha256=EcNukc4-oASIX2mHAP-hH1up1roWnm99iY18P_v13D0,3800
|
|
417
459
|
nat/utils/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
418
460
|
nat/utils/io/model_processing.py,sha256=bEbH_tIgZQvPlEJKVV4kye_Y9UU96W4k2mKuckGErHA,936
|
|
419
|
-
nat/utils/io/yaml_tools.py,sha256=
|
|
461
|
+
nat/utils/io/yaml_tools.py,sha256=8zgBMedlJ-ixQ80bqbrBR4iODgETWaagm8uNpybelVc,3297
|
|
420
462
|
nat/utils/reactive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
421
|
-
nat/utils/reactive/observable.py,sha256=
|
|
422
|
-
nat/utils/reactive/observer.py,sha256=
|
|
463
|
+
nat/utils/reactive/observable.py,sha256=VPfkETHXnBNfxKho9luIm4hxCsI_Hx46GgnEO848AMc,2221
|
|
464
|
+
nat/utils/reactive/observer.py,sha256=y9aFhezP08TlV9Cx_S0mhShzdLzGQ9b_3PCcTsDxEOE,2508
|
|
423
465
|
nat/utils/reactive/subject.py,sha256=urgPyDOOedqb15_zzfffolH6LDuFxVYPOoM-aE6FCaw,4879
|
|
424
|
-
nat/utils/reactive/subscription.py,sha256=
|
|
466
|
+
nat/utils/reactive/subscription.py,sha256=4_cHWbf6EVnLkyyO_eHjOvqD5moWcOAoYRRa9vPdAvI,1669
|
|
425
467
|
nat/utils/reactive/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
426
|
-
nat/utils/reactive/base/observable_base.py,sha256=
|
|
427
|
-
nat/utils/reactive/base/observer_base.py,sha256=
|
|
468
|
+
nat/utils/reactive/base/observable_base.py,sha256=MQ5gd8uyJpK42oRSyFqwY-01KzS38RJa4MTaZkve8uE,2311
|
|
469
|
+
nat/utils/reactive/base/observer_base.py,sha256=6BiQfx26EMumotJ3KoVcdmFBYR_fnAssz0L3FfPjc6k,1843
|
|
428
470
|
nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
|
|
429
471
|
nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
430
|
-
nat/utils/settings/global_settings.py,sha256=
|
|
431
|
-
nvidia_nat-1.3.
|
|
432
|
-
nvidia_nat-1.3.
|
|
433
|
-
nvidia_nat-1.3.
|
|
434
|
-
nvidia_nat-1.3.
|
|
435
|
-
nvidia_nat-1.3.
|
|
436
|
-
nvidia_nat-1.3.
|
|
437
|
-
nvidia_nat-1.3.
|
|
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,,
|