nvidia-nat 1.4.0a20251112__py3-none-any.whl → 1.4.0a20260113__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (492) hide show
  1. aiq/__init__.py +1 -1
  2. nat/{front_ends/mcp → agent/auto_memory_wrapper}/__init__.py +1 -1
  3. nat/agent/auto_memory_wrapper/agent.py +278 -0
  4. nat/agent/auto_memory_wrapper/register.py +227 -0
  5. nat/agent/auto_memory_wrapper/state.py +30 -0
  6. nat/agent/base.py +1 -1
  7. nat/agent/dual_node.py +1 -1
  8. nat/agent/prompt_optimizer/prompt.py +1 -1
  9. nat/agent/prompt_optimizer/register.py +1 -1
  10. nat/agent/react_agent/agent.py +16 -9
  11. nat/agent/react_agent/output_parser.py +2 -2
  12. nat/agent/react_agent/prompt.py +3 -2
  13. nat/agent/react_agent/register.py +2 -2
  14. nat/agent/react_agent/register_per_user_agent.py +104 -0
  15. nat/agent/reasoning_agent/reasoning_agent.py +1 -1
  16. nat/agent/register.py +3 -1
  17. nat/agent/responses_api_agent/__init__.py +1 -1
  18. nat/agent/responses_api_agent/register.py +1 -1
  19. nat/agent/rewoo_agent/agent.py +9 -4
  20. nat/agent/rewoo_agent/prompt.py +1 -1
  21. nat/agent/rewoo_agent/register.py +1 -1
  22. nat/agent/tool_calling_agent/agent.py +5 -4
  23. nat/agent/tool_calling_agent/register.py +1 -1
  24. nat/authentication/__init__.py +1 -1
  25. nat/authentication/api_key/__init__.py +1 -1
  26. nat/authentication/api_key/api_key_auth_provider.py +1 -1
  27. nat/authentication/api_key/api_key_auth_provider_config.py +22 -7
  28. nat/authentication/api_key/register.py +1 -1
  29. nat/authentication/credential_validator/__init__.py +1 -1
  30. nat/authentication/credential_validator/bearer_token_validator.py +1 -1
  31. nat/authentication/exceptions/__init__.py +1 -1
  32. nat/authentication/exceptions/api_key_exceptions.py +1 -1
  33. nat/authentication/http_basic_auth/http_basic_auth_provider.py +1 -1
  34. nat/authentication/http_basic_auth/register.py +1 -1
  35. nat/authentication/interfaces.py +1 -1
  36. nat/authentication/oauth2/__init__.py +1 -1
  37. nat/authentication/oauth2/oauth2_auth_code_flow_provider.py +1 -1
  38. nat/authentication/oauth2/oauth2_auth_code_flow_provider_config.py +1 -1
  39. nat/authentication/oauth2/oauth2_resource_server_config.py +1 -1
  40. nat/authentication/oauth2/register.py +1 -1
  41. nat/authentication/register.py +1 -1
  42. nat/builder/builder.py +563 -1
  43. nat/builder/child_builder.py +385 -0
  44. nat/builder/component_utils.py +34 -4
  45. nat/builder/context.py +34 -1
  46. nat/builder/embedder.py +1 -1
  47. nat/builder/eval_builder.py +19 -7
  48. nat/builder/evaluator.py +1 -1
  49. nat/builder/framework_enum.py +3 -1
  50. nat/builder/front_end.py +1 -1
  51. nat/builder/function.py +113 -5
  52. nat/builder/function_base.py +1 -1
  53. nat/builder/function_info.py +1 -1
  54. nat/builder/intermediate_step_manager.py +1 -1
  55. nat/builder/llm.py +1 -1
  56. nat/builder/per_user_workflow_builder.py +843 -0
  57. nat/builder/retriever.py +1 -1
  58. nat/builder/sync_builder.py +571 -0
  59. nat/builder/user_interaction_manager.py +1 -1
  60. nat/builder/workflow.py +5 -3
  61. nat/builder/workflow_builder.py +619 -378
  62. nat/cli/__init__.py +1 -1
  63. nat/cli/cli_utils/config_override.py +1 -1
  64. nat/cli/cli_utils/validation.py +32 -1
  65. nat/cli/commands/configure/channel/add.py +1 -1
  66. nat/cli/commands/configure/channel/channel.py +1 -1
  67. nat/cli/commands/configure/channel/remove.py +1 -1
  68. nat/cli/commands/configure/channel/update.py +1 -1
  69. nat/cli/commands/configure/configure.py +1 -1
  70. nat/cli/commands/evaluate.py +87 -13
  71. nat/cli/commands/finetune.py +132 -0
  72. nat/cli/commands/info/__init__.py +1 -1
  73. nat/cli/commands/info/info.py +1 -1
  74. nat/cli/commands/info/list_channels.py +1 -1
  75. nat/cli/commands/info/list_components.py +1 -1
  76. nat/cli/commands/object_store/__init__.py +1 -1
  77. nat/cli/commands/object_store/object_store.py +1 -1
  78. nat/cli/commands/optimize.py +1 -1
  79. nat/cli/commands/{mcp → red_teaming}/__init__.py +1 -1
  80. nat/cli/commands/red_teaming/red_teaming.py +138 -0
  81. nat/cli/commands/red_teaming/red_teaming_utils.py +73 -0
  82. nat/cli/commands/registry/__init__.py +1 -1
  83. nat/cli/commands/registry/publish.py +1 -1
  84. nat/cli/commands/registry/pull.py +1 -1
  85. nat/cli/commands/registry/registry.py +1 -1
  86. nat/cli/commands/registry/remove.py +1 -1
  87. nat/cli/commands/registry/search.py +1 -1
  88. nat/cli/commands/sizing/__init__.py +1 -1
  89. nat/cli/commands/sizing/calc.py +1 -1
  90. nat/cli/commands/sizing/sizing.py +1 -1
  91. nat/cli/commands/start.py +1 -1
  92. nat/cli/commands/uninstall.py +1 -1
  93. nat/cli/commands/validate.py +1 -1
  94. nat/cli/commands/workflow/__init__.py +1 -1
  95. nat/cli/commands/workflow/workflow.py +1 -1
  96. nat/cli/commands/workflow/workflow_commands.py +3 -2
  97. nat/cli/entrypoint.py +15 -37
  98. nat/cli/main.py +2 -2
  99. nat/cli/plugin_loader.py +69 -0
  100. nat/cli/register_workflow.py +233 -5
  101. nat/cli/type_registry.py +237 -3
  102. nat/control_flow/register.py +1 -1
  103. nat/control_flow/router_agent/agent.py +1 -1
  104. nat/control_flow/router_agent/prompt.py +1 -1
  105. nat/control_flow/router_agent/register.py +1 -1
  106. nat/control_flow/sequential_executor.py +28 -7
  107. nat/data_models/__init__.py +1 -1
  108. nat/data_models/agent.py +1 -1
  109. nat/data_models/api_server.py +38 -3
  110. nat/data_models/authentication.py +1 -1
  111. nat/data_models/common.py +1 -1
  112. nat/data_models/component.py +9 -1
  113. nat/data_models/component_ref.py +45 -1
  114. nat/data_models/config.py +78 -1
  115. nat/data_models/dataset_handler.py +15 -2
  116. nat/data_models/discovery_metadata.py +1 -1
  117. nat/data_models/embedder.py +1 -1
  118. nat/data_models/evaluate.py +6 -1
  119. nat/data_models/evaluator.py +1 -1
  120. nat/data_models/finetuning.py +260 -0
  121. nat/data_models/front_end.py +1 -1
  122. nat/data_models/function.py +15 -2
  123. nat/data_models/function_dependencies.py +1 -1
  124. nat/data_models/gated_field_mixin.py +1 -1
  125. nat/data_models/interactive.py +1 -1
  126. nat/data_models/intermediate_step.py +29 -2
  127. nat/data_models/invocation_node.py +1 -1
  128. nat/data_models/llm.py +1 -1
  129. nat/data_models/logging.py +1 -1
  130. nat/data_models/memory.py +1 -1
  131. nat/data_models/middleware.py +37 -0
  132. nat/data_models/object_store.py +1 -1
  133. nat/data_models/openai_mcp.py +1 -1
  134. nat/data_models/optimizable.py +1 -1
  135. nat/data_models/optimizer.py +1 -1
  136. nat/data_models/profiler.py +1 -1
  137. nat/data_models/registry_handler.py +1 -1
  138. nat/data_models/retriever.py +1 -1
  139. nat/data_models/retry_mixin.py +1 -1
  140. nat/data_models/runtime_enum.py +26 -0
  141. nat/data_models/span.py +1 -1
  142. nat/data_models/step_adaptor.py +1 -1
  143. nat/data_models/streaming.py +1 -1
  144. nat/data_models/swe_bench_model.py +1 -1
  145. nat/data_models/telemetry_exporter.py +1 -1
  146. nat/data_models/thinking_mixin.py +1 -1
  147. nat/data_models/ttc_strategy.py +1 -1
  148. nat/embedder/azure_openai_embedder.py +1 -1
  149. nat/embedder/nim_embedder.py +1 -1
  150. nat/embedder/openai_embedder.py +1 -1
  151. nat/embedder/register.py +1 -1
  152. nat/eval/__init__.py +1 -1
  153. nat/eval/config.py +8 -1
  154. nat/eval/dataset_handler/dataset_downloader.py +1 -1
  155. nat/eval/dataset_handler/dataset_filter.py +1 -1
  156. nat/eval/dataset_handler/dataset_handler.py +4 -2
  157. nat/eval/evaluate.py +226 -81
  158. nat/eval/evaluator/__init__.py +1 -1
  159. nat/eval/evaluator/base_evaluator.py +2 -2
  160. nat/eval/evaluator/evaluator_model.py +3 -2
  161. nat/eval/intermediate_step_adapter.py +1 -1
  162. nat/eval/llm_validator.py +336 -0
  163. nat/eval/rag_evaluator/evaluate.py +17 -10
  164. nat/eval/rag_evaluator/register.py +1 -1
  165. nat/eval/red_teaming_evaluator/__init__.py +14 -0
  166. nat/eval/red_teaming_evaluator/data_models.py +66 -0
  167. nat/eval/red_teaming_evaluator/evaluate.py +327 -0
  168. nat/eval/red_teaming_evaluator/filter_conditions.py +75 -0
  169. nat/eval/red_teaming_evaluator/register.py +55 -0
  170. nat/eval/register.py +2 -1
  171. nat/eval/remote_workflow.py +1 -1
  172. nat/eval/runners/__init__.py +1 -1
  173. nat/eval/runners/config.py +1 -1
  174. nat/eval/runners/multi_eval_runner.py +1 -1
  175. nat/eval/runners/red_teaming_runner/__init__.py +24 -0
  176. nat/eval/runners/red_teaming_runner/config.py +282 -0
  177. nat/eval/runners/red_teaming_runner/report_utils.py +707 -0
  178. nat/eval/runners/red_teaming_runner/runner.py +867 -0
  179. nat/eval/runtime_evaluator/__init__.py +1 -1
  180. nat/eval/runtime_evaluator/evaluate.py +1 -1
  181. nat/eval/runtime_evaluator/register.py +1 -1
  182. nat/eval/runtime_event_subscriber.py +1 -1
  183. nat/eval/swe_bench_evaluator/evaluate.py +1 -1
  184. nat/eval/swe_bench_evaluator/register.py +1 -1
  185. nat/eval/trajectory_evaluator/evaluate.py +2 -2
  186. nat/eval/trajectory_evaluator/register.py +1 -1
  187. nat/eval/tunable_rag_evaluator/evaluate.py +5 -5
  188. nat/eval/tunable_rag_evaluator/register.py +1 -1
  189. nat/eval/usage_stats.py +1 -1
  190. nat/eval/utils/eval_trace_ctx.py +1 -1
  191. nat/eval/utils/output_uploader.py +1 -1
  192. nat/eval/utils/tqdm_position_registry.py +1 -1
  193. nat/eval/utils/weave_eval.py +1 -1
  194. nat/experimental/decorators/experimental_warning_decorator.py +1 -1
  195. nat/experimental/test_time_compute/editing/iterative_plan_refinement_editor.py +1 -1
  196. nat/experimental/test_time_compute/editing/llm_as_a_judge_editor.py +1 -1
  197. nat/experimental/test_time_compute/editing/motivation_aware_summarization.py +1 -1
  198. nat/experimental/test_time_compute/functions/execute_score_select_function.py +1 -1
  199. nat/experimental/test_time_compute/functions/multi_llm_judge_function.py +88 -0
  200. nat/experimental/test_time_compute/functions/plan_select_execute_function.py +1 -1
  201. nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py +1 -1
  202. nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py +1 -1
  203. nat/experimental/test_time_compute/models/editor_config.py +1 -1
  204. nat/experimental/test_time_compute/models/scoring_config.py +1 -1
  205. nat/experimental/test_time_compute/models/search_config.py +20 -2
  206. nat/experimental/test_time_compute/models/selection_config.py +33 -2
  207. nat/experimental/test_time_compute/models/stage_enums.py +1 -1
  208. nat/experimental/test_time_compute/models/strategy_base.py +1 -1
  209. nat/experimental/test_time_compute/models/tool_use_config.py +1 -1
  210. nat/experimental/test_time_compute/models/ttc_item.py +1 -1
  211. nat/experimental/test_time_compute/register.py +4 -1
  212. nat/experimental/test_time_compute/scoring/llm_based_agent_scorer.py +1 -1
  213. nat/experimental/test_time_compute/scoring/llm_based_plan_scorer.py +1 -1
  214. nat/experimental/test_time_compute/scoring/motivation_aware_scorer.py +1 -1
  215. nat/experimental/test_time_compute/search/multi_llm_generation.py +115 -0
  216. nat/experimental/test_time_compute/search/multi_llm_planner.py +1 -1
  217. nat/experimental/test_time_compute/search/multi_query_retrieval_search.py +1 -1
  218. nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py +1 -1
  219. nat/experimental/test_time_compute/selection/best_of_n_selector.py +1 -1
  220. nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py +1 -1
  221. nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py +1 -1
  222. nat/experimental/test_time_compute/selection/llm_based_plan_selector.py +1 -1
  223. nat/experimental/test_time_compute/selection/llm_judge_selection.py +127 -0
  224. nat/experimental/test_time_compute/selection/threshold_selector.py +1 -1
  225. nat/finetuning/__init__.py +24 -0
  226. nat/finetuning/finetuning_runtime.py +143 -0
  227. nat/finetuning/interfaces/__init__.py +24 -0
  228. nat/finetuning/interfaces/finetuning_runner.py +261 -0
  229. nat/finetuning/interfaces/trainer_adapter.py +103 -0
  230. nat/finetuning/interfaces/trajectory_builder.py +115 -0
  231. nat/finetuning/utils/__init__.py +15 -0
  232. nat/finetuning/utils/parsers/__init__.py +15 -0
  233. nat/finetuning/utils/parsers/adk_parser.py +141 -0
  234. nat/finetuning/utils/parsers/base_parser.py +238 -0
  235. nat/finetuning/utils/parsers/common.py +91 -0
  236. nat/finetuning/utils/parsers/langchain_parser.py +267 -0
  237. nat/finetuning/utils/parsers/llama_index_parser.py +218 -0
  238. nat/front_ends/__init__.py +1 -1
  239. nat/front_ends/console/__init__.py +1 -1
  240. nat/front_ends/console/authentication_flow_handler.py +1 -1
  241. nat/front_ends/console/console_front_end_config.py +4 -1
  242. nat/front_ends/console/console_front_end_plugin.py +5 -4
  243. nat/front_ends/console/register.py +1 -1
  244. nat/front_ends/cron/__init__.py +1 -1
  245. nat/front_ends/fastapi/__init__.py +1 -1
  246. nat/front_ends/fastapi/async_job.py +128 -0
  247. nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py +1 -1
  248. nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py +13 -9
  249. nat/front_ends/fastapi/dask_client_mixin.py +1 -1
  250. nat/front_ends/fastapi/fastapi_front_end_config.py +23 -1
  251. nat/front_ends/fastapi/fastapi_front_end_controller.py +1 -1
  252. nat/front_ends/fastapi/fastapi_front_end_plugin.py +25 -30
  253. nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py +318 -59
  254. nat/front_ends/fastapi/html_snippets/__init__.py +1 -1
  255. nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py +1 -1
  256. nat/front_ends/fastapi/intermediate_steps_subscriber.py +12 -1
  257. nat/front_ends/fastapi/job_store.py +23 -11
  258. nat/front_ends/fastapi/main.py +1 -1
  259. nat/front_ends/fastapi/message_handler.py +27 -4
  260. nat/front_ends/fastapi/message_validator.py +54 -2
  261. nat/front_ends/fastapi/register.py +1 -1
  262. nat/front_ends/fastapi/response_helpers.py +16 -15
  263. nat/front_ends/fastapi/step_adaptor.py +1 -1
  264. nat/front_ends/fastapi/utils.py +1 -1
  265. nat/front_ends/register.py +1 -2
  266. nat/front_ends/simple_base/__init__.py +1 -1
  267. nat/front_ends/simple_base/simple_front_end_plugin_base.py +6 -4
  268. nat/llm/aws_bedrock_llm.py +1 -1
  269. nat/llm/azure_openai_llm.py +10 -1
  270. nat/llm/dynamo_llm.py +363 -0
  271. nat/llm/huggingface_llm.py +177 -0
  272. nat/llm/litellm_llm.py +1 -1
  273. nat/llm/nim_llm.py +1 -1
  274. nat/llm/openai_llm.py +1 -1
  275. nat/llm/register.py +3 -1
  276. nat/llm/utils/__init__.py +1 -1
  277. nat/llm/utils/env_config_value.py +1 -1
  278. nat/llm/utils/error.py +1 -1
  279. nat/llm/utils/thinking.py +1 -1
  280. nat/memory/__init__.py +1 -1
  281. nat/memory/interfaces.py +1 -1
  282. nat/memory/models.py +1 -1
  283. nat/meta/pypi.md +1 -1
  284. nat/middleware/__init__.py +35 -0
  285. nat/middleware/cache/__init__.py +14 -0
  286. nat/middleware/cache/cache_middleware.py +253 -0
  287. nat/middleware/cache/cache_middleware_config.py +44 -0
  288. nat/middleware/cache/register.py +33 -0
  289. nat/middleware/defense/__init__.py +14 -0
  290. nat/middleware/defense/defense_middleware.py +362 -0
  291. nat/middleware/defense/defense_middleware_content_guard.py +455 -0
  292. nat/middleware/defense/defense_middleware_data_models.py +91 -0
  293. nat/middleware/defense/defense_middleware_output_verifier.py +440 -0
  294. nat/middleware/defense/defense_middleware_pii.py +356 -0
  295. nat/middleware/defense/register.py +82 -0
  296. nat/middleware/dynamic/__init__.py +14 -0
  297. nat/middleware/dynamic/dynamic_function_middleware.py +962 -0
  298. nat/middleware/dynamic/dynamic_middleware_config.py +132 -0
  299. nat/middleware/dynamic/register.py +34 -0
  300. nat/middleware/function_middleware.py +370 -0
  301. nat/middleware/logging/__init__.py +14 -0
  302. nat/middleware/logging/logging_middleware.py +67 -0
  303. nat/middleware/logging/logging_middleware_config.py +28 -0
  304. nat/middleware/logging/register.py +33 -0
  305. nat/middleware/middleware.py +298 -0
  306. nat/middleware/red_teaming/__init__.py +14 -0
  307. nat/middleware/red_teaming/red_teaming_middleware.py +344 -0
  308. nat/middleware/red_teaming/red_teaming_middleware_config.py +112 -0
  309. nat/middleware/red_teaming/register.py +47 -0
  310. nat/middleware/register.py +22 -0
  311. nat/middleware/utils/__init__.py +14 -0
  312. nat/middleware/utils/workflow_inventory.py +155 -0
  313. nat/object_store/__init__.py +1 -1
  314. nat/object_store/in_memory_object_store.py +1 -1
  315. nat/object_store/interfaces.py +1 -1
  316. nat/object_store/models.py +1 -1
  317. nat/object_store/register.py +1 -1
  318. nat/observability/__init__.py +1 -1
  319. nat/observability/exporter/__init__.py +1 -1
  320. nat/observability/exporter/base_exporter.py +1 -1
  321. nat/observability/exporter/exporter.py +1 -1
  322. nat/observability/exporter/file_exporter.py +1 -1
  323. nat/observability/exporter/processing_exporter.py +1 -1
  324. nat/observability/exporter/raw_exporter.py +1 -1
  325. nat/observability/exporter/span_exporter.py +7 -1
  326. nat/observability/exporter_manager.py +1 -1
  327. nat/observability/mixin/__init__.py +1 -1
  328. nat/observability/mixin/batch_config_mixin.py +1 -1
  329. nat/observability/mixin/collector_config_mixin.py +1 -1
  330. nat/observability/mixin/file_mixin.py +1 -1
  331. nat/observability/mixin/file_mode.py +1 -1
  332. nat/observability/mixin/redaction_config_mixin.py +1 -1
  333. nat/observability/mixin/resource_conflict_mixin.py +1 -1
  334. nat/observability/mixin/serialize_mixin.py +1 -1
  335. nat/observability/mixin/tagging_config_mixin.py +1 -1
  336. nat/observability/mixin/type_introspection_mixin.py +1 -1
  337. nat/observability/processor/__init__.py +1 -1
  338. nat/observability/processor/batching_processor.py +1 -1
  339. nat/observability/processor/callback_processor.py +1 -1
  340. nat/observability/processor/falsy_batch_filter_processor.py +1 -1
  341. nat/observability/processor/intermediate_step_serializer.py +1 -1
  342. nat/observability/processor/processor.py +1 -1
  343. nat/observability/processor/processor_factory.py +1 -1
  344. nat/observability/processor/redaction/__init__.py +1 -1
  345. nat/observability/processor/redaction/contextual_redaction_processor.py +1 -1
  346. nat/observability/processor/redaction/contextual_span_redaction_processor.py +1 -1
  347. nat/observability/processor/redaction/redaction_processor.py +1 -1
  348. nat/observability/processor/redaction/span_header_redaction_processor.py +1 -1
  349. nat/observability/processor/span_tagging_processor.py +1 -1
  350. nat/observability/register.py +1 -1
  351. nat/observability/utils/__init__.py +1 -1
  352. nat/observability/utils/dict_utils.py +1 -1
  353. nat/observability/utils/time_utils.py +1 -1
  354. nat/profiler/calc/__init__.py +1 -1
  355. nat/profiler/calc/calc_runner.py +3 -3
  356. nat/profiler/calc/calculations.py +1 -1
  357. nat/profiler/calc/data_models.py +1 -1
  358. nat/profiler/calc/plot.py +30 -3
  359. nat/profiler/callbacks/agno_callback_handler.py +1 -1
  360. nat/profiler/callbacks/base_callback_class.py +1 -1
  361. nat/profiler/callbacks/langchain_callback_handler.py +33 -3
  362. nat/profiler/callbacks/llama_index_callback_handler.py +13 -10
  363. nat/profiler/callbacks/semantic_kernel_callback_handler.py +1 -1
  364. nat/profiler/callbacks/token_usage_base_model.py +1 -1
  365. nat/profiler/data_frame_row.py +1 -1
  366. nat/profiler/data_models.py +1 -1
  367. nat/profiler/decorators/framework_wrapper.py +32 -1
  368. nat/profiler/decorators/function_tracking.py +1 -1
  369. nat/profiler/forecasting/config.py +1 -1
  370. nat/profiler/forecasting/model_trainer.py +1 -1
  371. nat/profiler/forecasting/models/__init__.py +1 -1
  372. nat/profiler/forecasting/models/forecasting_base_model.py +1 -1
  373. nat/profiler/forecasting/models/linear_model.py +1 -1
  374. nat/profiler/forecasting/models/random_forest_regressor.py +1 -1
  375. nat/profiler/inference_metrics_model.py +1 -1
  376. nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py +1 -1
  377. nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py +1 -1
  378. nat/profiler/inference_optimization/data_models.py +1 -1
  379. nat/profiler/inference_optimization/experimental/concurrency_spike_analysis.py +1 -1
  380. nat/profiler/inference_optimization/experimental/prefix_span_analysis.py +1 -1
  381. nat/profiler/inference_optimization/llm_metrics.py +1 -1
  382. nat/profiler/inference_optimization/prompt_caching.py +1 -1
  383. nat/profiler/inference_optimization/token_uniqueness.py +1 -1
  384. nat/profiler/inference_optimization/workflow_runtimes.py +1 -1
  385. nat/profiler/intermediate_property_adapter.py +1 -1
  386. nat/profiler/parameter_optimization/optimizable_utils.py +1 -1
  387. nat/profiler/parameter_optimization/optimizer_runtime.py +1 -1
  388. nat/profiler/parameter_optimization/parameter_optimizer.py +1 -1
  389. nat/profiler/parameter_optimization/parameter_selection.py +1 -1
  390. nat/profiler/parameter_optimization/pareto_visualizer.py +1 -1
  391. nat/profiler/parameter_optimization/prompt_optimizer.py +1 -1
  392. nat/profiler/parameter_optimization/update_helpers.py +1 -1
  393. nat/profiler/profile_runner.py +1 -1
  394. nat/profiler/utils.py +1 -1
  395. nat/registry_handlers/local/local_handler.py +1 -1
  396. nat/registry_handlers/local/register_local.py +1 -1
  397. nat/registry_handlers/metadata_factory.py +1 -1
  398. nat/registry_handlers/package_utils.py +1 -1
  399. nat/registry_handlers/pypi/pypi_handler.py +1 -1
  400. nat/registry_handlers/pypi/register_pypi.py +1 -1
  401. nat/registry_handlers/register.py +1 -1
  402. nat/registry_handlers/registry_handler_base.py +1 -1
  403. nat/registry_handlers/rest/register_rest.py +1 -1
  404. nat/registry_handlers/rest/rest_handler.py +1 -1
  405. nat/registry_handlers/schemas/headers.py +1 -1
  406. nat/registry_handlers/schemas/package.py +1 -1
  407. nat/registry_handlers/schemas/publish.py +1 -1
  408. nat/registry_handlers/schemas/pull.py +1 -1
  409. nat/registry_handlers/schemas/remove.py +1 -1
  410. nat/registry_handlers/schemas/search.py +1 -1
  411. nat/registry_handlers/schemas/status.py +1 -1
  412. nat/retriever/interface.py +1 -1
  413. nat/retriever/milvus/__init__.py +1 -1
  414. nat/retriever/milvus/register.py +12 -4
  415. nat/retriever/milvus/retriever.py +103 -41
  416. nat/retriever/models.py +1 -1
  417. nat/retriever/nemo_retriever/__init__.py +1 -1
  418. nat/retriever/nemo_retriever/register.py +1 -1
  419. nat/retriever/nemo_retriever/retriever.py +5 -5
  420. nat/retriever/register.py +1 -1
  421. nat/runtime/__init__.py +1 -1
  422. nat/runtime/loader.py +10 -3
  423. nat/runtime/metrics.py +180 -0
  424. nat/runtime/runner.py +13 -6
  425. nat/runtime/session.py +458 -32
  426. nat/runtime/user_metadata.py +1 -1
  427. nat/settings/global_settings.py +1 -1
  428. nat/tool/chat_completion.py +1 -1
  429. nat/tool/code_execution/README.md +1 -1
  430. nat/tool/code_execution/code_sandbox.py +2 -2
  431. nat/tool/code_execution/local_sandbox/Dockerfile.sandbox +1 -1
  432. nat/tool/code_execution/local_sandbox/__init__.py +1 -1
  433. nat/tool/code_execution/local_sandbox/local_sandbox_server.py +1 -1
  434. nat/tool/code_execution/local_sandbox/start_local_sandbox.sh +1 -1
  435. nat/tool/code_execution/register.py +1 -1
  436. nat/tool/code_execution/utils.py +1 -1
  437. nat/tool/datetime_tools.py +1 -1
  438. nat/tool/document_search.py +1 -1
  439. nat/tool/github_tools.py +1 -1
  440. nat/tool/memory_tools/add_memory_tool.py +1 -1
  441. nat/tool/memory_tools/delete_memory_tool.py +1 -1
  442. nat/tool/memory_tools/get_memory_tool.py +1 -1
  443. nat/tool/nvidia_rag.py +2 -2
  444. nat/tool/register.py +1 -1
  445. nat/tool/retriever.py +1 -1
  446. nat/tool/server_tools.py +1 -1
  447. nat/utils/__init__.py +8 -5
  448. nat/utils/callable_utils.py +1 -1
  449. nat/utils/data_models/schema_validator.py +1 -1
  450. nat/utils/debugging_utils.py +1 -1
  451. nat/utils/decorators.py +1 -1
  452. nat/utils/dump_distro_mapping.py +1 -1
  453. nat/utils/exception_handlers/automatic_retries.py +3 -3
  454. nat/utils/exception_handlers/schemas.py +1 -1
  455. nat/utils/io/model_processing.py +1 -1
  456. nat/utils/io/supress_logs.py +33 -0
  457. nat/utils/io/yaml_tools.py +1 -1
  458. nat/utils/log_levels.py +1 -1
  459. nat/utils/log_utils.py +13 -1
  460. nat/utils/metadata_utils.py +1 -1
  461. nat/utils/optional_imports.py +1 -1
  462. nat/utils/producer_consumer_queue.py +1 -1
  463. nat/utils/reactive/base/observable_base.py +1 -1
  464. nat/utils/reactive/base/observer_base.py +1 -1
  465. nat/utils/reactive/base/subject_base.py +1 -1
  466. nat/utils/reactive/observable.py +1 -1
  467. nat/utils/reactive/observer.py +1 -1
  468. nat/utils/reactive/subject.py +1 -1
  469. nat/utils/reactive/subscription.py +1 -1
  470. nat/utils/responses_api.py +1 -1
  471. nat/utils/settings/global_settings.py +1 -1
  472. nat/utils/string_utils.py +1 -1
  473. nat/utils/type_converter.py +18 -5
  474. nat/utils/type_utils.py +1 -1
  475. nat/utils/url_utils.py +1 -1
  476. {nvidia_nat-1.4.0a20251112.dist-info → nvidia_nat-1.4.0a20260113.dist-info}/METADATA +46 -15
  477. nvidia_nat-1.4.0a20260113.dist-info/RECORD +547 -0
  478. nvidia_nat-1.4.0a20260113.dist-info/entry_points.txt +38 -0
  479. nat/cli/commands/mcp/mcp.py +0 -986
  480. nat/front_ends/mcp/introspection_token_verifier.py +0 -73
  481. nat/front_ends/mcp/mcp_front_end_config.py +0 -109
  482. nat/front_ends/mcp/mcp_front_end_plugin.py +0 -151
  483. nat/front_ends/mcp/mcp_front_end_plugin_worker.py +0 -362
  484. nat/front_ends/mcp/memory_profiler.py +0 -320
  485. nat/front_ends/mcp/register.py +0 -27
  486. nat/front_ends/mcp/tool_converter.py +0 -321
  487. nvidia_nat-1.4.0a20251112.dist-info/RECORD +0 -481
  488. nvidia_nat-1.4.0a20251112.dist-info/entry_points.txt +0 -22
  489. {nvidia_nat-1.4.0a20251112.dist-info → nvidia_nat-1.4.0a20260113.dist-info}/WHEEL +0 -0
  490. {nvidia_nat-1.4.0a20251112.dist-info → nvidia_nat-1.4.0a20260113.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
  491. {nvidia_nat-1.4.0a20251112.dist-info → nvidia_nat-1.4.0a20260113.dist-info}/licenses/LICENSE.md +0 -0
  492. {nvidia_nat-1.4.0a20251112.dist-info → nvidia_nat-1.4.0a20260113.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,547 @@
1
+ aiq/__init__.py,sha256=lfrBqJDi3pDOZgnm7Ry4IwyI_9qdkNp5KqhXhRfeLbU,2346
2
+ nat/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ nat/agent/base.py,sha256=gWD_j9WzWICHaOgfuwZteVVVJijshO5IakxLa7VTHHE,10174
4
+ nat/agent/dual_node.py,sha256=D_eL4LcNT_vxb_CyKZIVuT6_08xFLXIep-9mBqNoUUA,2574
5
+ nat/agent/register.py,sha256=_-vYT1CBod3tTmkBgAIU7hTzEX6xnq6mJ_TDu2bTWyc,1240
6
+ nat/agent/auto_memory_wrapper/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
7
+ nat/agent/auto_memory_wrapper/agent.py,sha256=-N8QtHf9gfWtfKZd8mRjfVFs9y18lyBVm5RZeMhLRuw,11945
8
+ nat/agent/auto_memory_wrapper/register.py,sha256=K5POkXaqsJdwjM5yZTt5D_ETDEqYWJwUbCRM8usZc0Q,10089
9
+ nat/agent/auto_memory_wrapper/state.py,sha256=9naN8N625amuA4VtJSOn5YduxKGbey5jQZepUVVg_8g,1245
10
+ nat/agent/prompt_optimizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ nat/agent/prompt_optimizer/prompt.py,sha256=HuHml4pQ0kJKZcoBwlGTc2D7PjHTHq39USdjYg_47Lk,3042
12
+ nat/agent/prompt_optimizer/register.py,sha256=xfgArFmNtn-SlGXDCQ89FG5TL8IpJTKNEXPT8oNqtd8,6799
13
+ nat/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ nat/agent/react_agent/agent.py,sha256=C6kWbCpAgUWLvz6K4VuYURYf5LVK7394cdZaiEf0ohc,21559
15
+ nat/agent/react_agent/output_parser.py,sha256=ZktBvGCkiEC9ZCjnUczaL31htvymx4mJyyRaiCVl3_I,4232
16
+ nat/agent/react_agent/prompt.py,sha256=PKy-heVY2fgXgcvyJYysKdRLk6KVsq3SV2YD0VdcdqY,1765
17
+ nat/agent/react_agent/register.py,sha256=Ta1gxkCu59UmXeNwPpxpzBrHCZie52NnygB5GQmtIqk,9003
18
+ nat/agent/react_agent/register_per_user_agent.py,sha256=HQW3xYF9cPB0cvVol8ldDuY0stA9eqCEqq_ZxnoXnQg,5337
19
+ nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ nat/agent/reasoning_agent/reasoning_agent.py,sha256=GihzCZZ32GZ4_Q_vmugCXdIFTgjZ_4Z10cftKUxTsHQ,9608
21
+ nat/agent/responses_api_agent/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
22
+ nat/agent/responses_api_agent/register.py,sha256=FF1SlHaqJcz7c8QhITJzsvcJwK5FjJYTKvaM5_gKlJc,6157
23
+ nat/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ nat/agent/rewoo_agent/agent.py,sha256=fBILCh2uutxHqsjcdTDMYKA1Kt5Um0Rp80ejmPbqvSE,26611
25
+ nat/agent/rewoo_agent/prompt.py,sha256=oeoYRE4mERZmJJjJRbnnnnvQt8YvULcASvodW6Xwir8,3650
26
+ nat/agent/rewoo_agent/register.py,sha256=d8mx3NtekXr0v61lCPN7xA89strftQWIQpzWlbnV-wU,9288
27
+ nat/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
+ nat/agent/tool_calling_agent/agent.py,sha256=nl_YSX8RWIFrVuszp5UhJ-fSKhxiFl5lDJKHeNzLbaE,11100
29
+ nat/agent/tool_calling_agent/register.py,sha256=p-JSYByMFG48eqgSmsL3KGgdFeGFRQfC5kIMGObJdgA,7062
30
+ nat/authentication/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
31
+ nat/authentication/interfaces.py,sha256=kfpDJDDyLHWgP2tCEmwlZqc7s6mFNt6jW0XCv_3u3W8,3511
32
+ nat/authentication/register.py,sha256=nhIavVU_kO1DakFx1Irt_fSz711d5TinHkMtYDpeAGk,920
33
+ nat/authentication/api_key/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
34
+ nat/authentication/api_key/api_key_auth_provider.py,sha256=EIdJEcn6sprc2kjg5tts8PQ5r1HGGUd5PpOstJUG2XY,3849
35
+ nat/authentication/api_key/api_key_auth_provider_config.py,sha256=6RAjODZI_rt0wHda1Aj9-ksvl6NbEpy_xwrFSx_HSP0,6477
36
+ nat/authentication/api_key/register.py,sha256=PIXkZaRCXV-k-FlPKC0i7D7GxfX0rRwPXxkl3Q-Bnz4,1152
37
+ nat/authentication/credential_validator/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
38
+ nat/authentication/credential_validator/bearer_token_validator.py,sha256=52bzdd4ZxvynTXfs6c9ZNczZLMuPg_JpejoynCqgv-o,21255
39
+ nat/authentication/exceptions/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
40
+ nat/authentication/exceptions/api_key_exceptions.py,sha256=fmMl2Gr8L_JWTiwy-Gw2InaaNBgOgpxIbngwGACsHmE,1545
41
+ nat/authentication/http_basic_auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ nat/authentication/http_basic_auth/http_basic_auth_provider.py,sha256=EzzePCNYCHWXj_EW5_XwheQMDz_uhWduv4NMlwlBVO0,3457
43
+ nat/authentication/http_basic_auth/register.py,sha256=P2XySjf1CPddCLEoBwyDvvbpq6dtnPaxoEjXDd4wlJU,1240
44
+ nat/authentication/oauth2/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
45
+ nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=Psdw-4s9vUYd8sTMw3D9cIJ4Anc5tHqZKqJajmTNX6g,5809
46
+ nat/authentication/oauth2/oauth2_auth_code_flow_provider_config.py,sha256=W8r7HaDZm7ZacNwjAutwBN0YBtavd7X2VxUVTblwR6U,2279
47
+ nat/authentication/oauth2/oauth2_resource_server_config.py,sha256=DtnxFnPN_yS56ypbucvpZgtF5xNwzoA3UFJf4D749ew,5379
48
+ nat/authentication/oauth2/register.py,sha256=OJSer-lLnU1GlPwnefGy53PpKCtsocOHN3smXxz6Dfw,1233
49
+ nat/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ nat/builder/builder.py,sha256=uftAzFMCDba4tfdyCQK_WGL4pSFLNI3C0-IfgXF4e8o,28842
51
+ nat/builder/child_builder.py,sha256=m4cMd-k4RoUfeJjX5oR0YLKIj_kVh_2_riu1-UEKZgw,16709
52
+ nat/builder/component_utils.py,sha256=1NGWMCyak7HYkPWt2uEuv5ltWPefjnaIQiCDejYZ6PE,15247
53
+ nat/builder/context.py,sha256=HhNTEezjMYHdtJAqSZ_8DnbopNIN33FJNBqj5KSeUVo,14550
54
+ nat/builder/embedder.py,sha256=h5FUQtxE_Abhn2cmS4B64zZOR-LMSBoJVvc11-7IaIw,970
55
+ nat/builder/eval_builder.py,sha256=Iz36hLRVZfYGjVHGSWL_7H7eNu6TarK6Rzc7CI4Q5wc,7508
56
+ nat/builder/evaluator.py,sha256=o8CTnE_ZbwwcMVI36f6wWhsRYkv-S1jZaLKAUSkKI44,1167
57
+ nat/builder/framework_enum.py,sha256=DkFYpbGL3trsKDMzTXMA3qJCmz2l8fqWWLw8xTB86P4,949
58
+ nat/builder/front_end.py,sha256=ufbT1qVUPediKZD7kbeNjqaDkEBhf1ADgXeE2M0jj0o,2178
59
+ nat/builder/function.py,sha256=7QUjiF94c7nIQvUG38TO1_l3X0Iic0ob5R9-Qx5DohI,32664
60
+ nat/builder/function_base.py,sha256=SPJ3ylNJRcHFnVRsCZ_9VKEFCfH5bcFTNYIsnKVrke8,13121
61
+ nat/builder/function_info.py,sha256=pX597t06TpAGeFS_q6BHv64WzgemoNTX8yAcg3F_Qik,25166
62
+ nat/builder/intermediate_step_manager.py,sha256=AmPdQAgzwK-Kb7thEbcYZRPXw0fNm3t-ngjdnP8lxxk,9004
63
+ nat/builder/llm.py,sha256=xcR6Mw2SaNdg6aW3x6eTtVaTD_AGcGPiIamxZaJtdH0,951
64
+ nat/builder/per_user_workflow_builder.py,sha256=nnhCLdhTt8licw_9Yik79B78ac_LQ4x9OIylpw5uj8g,40950
65
+ nat/builder/retriever.py,sha256=XUNbYr1r4LJoyFpIyizHay0OXN7luFHFVJ-3ntYW_Dc,975
66
+ nat/builder/sync_builder.py,sha256=9B9ho5eMdM8nd4TbXVyY5U99jTlk7BckOqN6gw2fMGo,22319
67
+ nat/builder/user_interaction_manager.py,sha256=hB32rwCbcn3ax5rXWqkAXfKj0bupRAP3nHQPURVgdas,3086
68
+ nat/builder/workflow.py,sha256=f0ZwhVGLa9bJ9kCG00D5x7IT1SFhwgcYLGXvJoGHwrU,7080
69
+ nat/builder/workflow_builder.py,sha256=Nah4zZEauJxO3dd45nA3nklSv1IGjwzXLiHUkNUBmCo,70774
70
+ nat/cli/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
71
+ nat/cli/entrypoint.py,sha256=a04NFnV9XfXiPg1KUd6CeCHTGXhZyfiWJaB1Pa9AbUU,4161
72
+ nat/cli/main.py,sha256=7P8geglFY03SdIRovPiJarLvbEwj8zWFqLc56vy3-FE,2258
73
+ nat/cli/plugin_loader.py,sha256=lpRJmluW_gVrYaoJIttFzsqf6R_bq8sH8nQ9UGFZFNw,2827
74
+ nat/cli/register_workflow.py,sha256=LMtbpNMcaHUaHdbq45Ax452IXObqempiZxEAifG7CyI,33460
75
+ nat/cli/type_registry.py,sha256=jvqK9eMNK9DPpGufmK35yBS57g0MdjWlZDvEXY9TMSc,60546
76
+ nat/cli/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ nat/cli/cli_utils/config_override.py,sha256=d4yOBFESQhl-1dYKBBvjJfkSrm49qjqkeg6AM64GDq4,8899
78
+ nat/cli/cli_utils/validation.py,sha256=Abig3jW-xRE0Mhcy6SrUSvQwpwSv6_Xq7W1BSlCBKYo,2260
79
+ nat/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
+ nat/cli/commands/evaluate.py,sha256=-0MzGhu4eRjRVG6BBXdT37mAqyW4W7Al4ktQ-gZWGTw,7494
81
+ nat/cli/commands/finetune.py,sha256=jzmtOy2nLGmV2WENoNKLn1mn1prWgPp-hNesYNZ8uXA,4509
82
+ nat/cli/commands/optimize.py,sha256=sL9368DXf3NrZFJBszQTT7hhdBLB8sayILtC1Vw3AzE,2954
83
+ nat/cli/commands/start.py,sha256=W_KCHlrRtTOTFs6dUmUXZqvgD9E1BVtAsWuYuWm03aw,10431
84
+ nat/cli/commands/uninstall.py,sha256=Svmq9OutvAU-qc27u4a-YgjwGtcXHAk0FvITOlD9i5g,3185
85
+ nat/cli/commands/validate.py,sha256=WyYzwPqh87J2knNPn3Dl7-6TXbAMJFUJWWMVk9XLaCk,1669
86
+ nat/cli/commands/configure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ nat/cli/commands/configure/configure.py,sha256=BvyWaVtaXnD1EFord48BtOGnCHDQTEvZQAhy0ubACVk,1096
88
+ nat/cli/commands/configure/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
+ nat/cli/commands/configure/channel/add.py,sha256=BFfwSw_SDrfsq-1oUun9cqGxiqpL50Fbq-nISg7sIpU,1073
90
+ nat/cli/commands/configure/channel/channel.py,sha256=7CgqQjTkUVvv8U9_QXWiXXRopA_0sik9t7HU4ZpXlYA,1192
91
+ nat/cli/commands/configure/channel/remove.py,sha256=2l9SYvZKNGynFFK1mP9g4p17bh0VgFj3jWAoeASb1Ck,1101
92
+ nat/cli/commands/configure/channel/update.py,sha256=fnotDqULEKF0Zeh-yhNmjhL5rcwF9ml0bv5OTCyXwCE,1096
93
+ nat/cli/commands/info/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
94
+ nat/cli/commands/info/info.py,sha256=BKXqyztv-6pGO1Us9IJ34VtETeuBi8CyLgjoR0RsX0Y,1632
95
+ nat/cli/commands/info/list_channels.py,sha256=RlEdCUoV-3Q3RINmI2J8k40bNLxnrYRBZFynHKozHBo,1282
96
+ nat/cli/commands/info/list_components.py,sha256=msneMMX16SDIAou5dqRukwj1O5vsXH946WUeZ1P3JX4,4537
97
+ nat/cli/commands/object_store/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
98
+ nat/cli/commands/object_store/object_store.py,sha256=AtJ52fli-QA07lLGnK0kJ07Ng6oziPx0Fpxdf2MeVW8,8581
99
+ nat/cli/commands/red_teaming/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
100
+ nat/cli/commands/red_teaming/red_teaming.py,sha256=zISj_44RNYrCaEYWpIaD3TSgzj2GdLTRBvJHjBRooN8,4569
101
+ nat/cli/commands/red_teaming/red_teaming_utils.py,sha256=7ljb0f_rbjaqgpnmselN4jiIzdTG1yg8RXr3gmUMn_I,2744
102
+ nat/cli/commands/registry/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
103
+ nat/cli/commands/registry/publish.py,sha256=BYRY8QM1nqCZQLR3hwNzT6baDOWP5KbLobBjqQfYtfs,3177
104
+ nat/cli/commands/registry/pull.py,sha256=jnDCFBn-WaXDSY8ThO4IjvK35aYmgmPTGgLdkXuoaHU,4070
105
+ nat/cli/commands/registry/registry.py,sha256=voS69hg3DOdNKgf3aLgrYzzLWOFuIsSQ62EJmQFv0R8,1308
106
+ nat/cli/commands/registry/remove.py,sha256=nxvdhDdnn8hcDi0U5mQfCT-y1LZgx7u2LC8I45Sd-wA,3866
107
+ nat/cli/commands/registry/search.py,sha256=qFpaFxYIpSgsXZTbpH-7Yaafr7FUVn23c87RrNyluuk,5140
108
+ nat/cli/commands/sizing/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
109
+ nat/cli/commands/sizing/calc.py,sha256=fDt5uQYMJAJQJ7Iefo3NukDnc1oWmQArl82mB09lu9I,11155
110
+ nat/cli/commands/sizing/sizing.py,sha256=jxPwW-D_ywIjXnRky_qaL5lF-T_g8wXj4jD3BQFmTyY,907
111
+ nat/cli/commands/workflow/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
112
+ nat/cli/commands/workflow/workflow.py,sha256=-3ksDnsSHGN2RKroCKhofi-zWkvRbk9ini2VWNxg47M,1347
113
+ nat/cli/commands/workflow/workflow_commands.py,sha256=9urnKqZqKfLDlO4mcGhqRvMinhUnuMDHLlgJcE0Kl3E,14453
114
+ nat/cli/commands/workflow/templates/__init__.py.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ nat/cli/commands/workflow/templates/config.yml.j2,sha256=KORGAFt1TW524YxXD2jpm_uTESihUKV5fnSoXQrH1PI,368
116
+ nat/cli/commands/workflow/templates/pyproject.toml.j2,sha256=lDBC4exHYutXa_skuJj176yMEuZr-DsdzrqQHPZoKpk,1035
117
+ nat/cli/commands/workflow/templates/register.py.j2,sha256=OuS8T6ZZ2hb0jOIvT1RojS8CuiL93n223K6Drs_MrBo,152
118
+ nat/cli/commands/workflow/templates/workflow.py.j2,sha256=xN2n0HfVP6f4wRSXQ6y4v5-1eZt3cWLPEPKSVh8wDC8,1785
119
+ nat/control_flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
+ nat/control_flow/register.py,sha256=dTkwzEkclbM5JSORIQeTywrx9Vt3NW1uyOzd_Dm-TO4,845
121
+ nat/control_flow/sequential_executor.py,sha256=-o_vOUeDd-hYf7QcASDA3zDyovsuon14g6tfmmoQv60,9505
122
+ nat/control_flow/router_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
+ nat/control_flow/router_agent/agent.py,sha256=kIh0Oty-zPDieg3T9RNb97GNX522eNJs1eNnu2J1SlU,13700
124
+ nat/control_flow/router_agent/prompt.py,sha256=HIIc7Ow219xqrUivReEVx5hL77TEPiUNCXBFdrXP2LI,1725
125
+ nat/control_flow/router_agent/register.py,sha256=qOsnLyv8Lj2MtJEh43uS_nXYjvilEj5LavYs15BsQQI,4149
126
+ nat/data_models/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
127
+ nat/data_models/agent.py,sha256=IPGGLb87zyEC9dCqLXQxd3KfoUDphhubExHM6sOLU3A,1630
128
+ nat/data_models/api_server.py,sha256=NUVz1Y97myVZESuot3qyK6tBY4qPqWMW_IGkfemi0AM,32058
129
+ nat/data_models/authentication.py,sha256=jwS0voazaR4fbUglSUrc4gXTsyUTOGJTF5-GEDPWwgg,8457
130
+ nat/data_models/common.py,sha256=nc5ocrGVKMWJTeZcTXnLI4f0lW-EUPcooK7_ef1wIgc,7302
131
+ nat/data_models/component.py,sha256=tIdzWO0y1FtgXRRbd-3wD3xLYT3p05GzAZ61nxW4zvs,2185
132
+ nat/data_models/component_ref.py,sha256=CSkunEnvevxs1sVNGj5fS-QiB8xczYge13hT69QD07I,5649
133
+ nat/data_models/config.py,sha256=Rj3applUBcOmCFe0KkAjVDL7Ux8RlCEA045h9rLmhGg,23273
134
+ nat/data_models/dataset_handler.py,sha256=tR7gwP8kZ7T3N5NLvgJiOD_EVBwwyV49pl1FmB3F_Y0,5885
135
+ nat/data_models/discovery_metadata.py,sha256=eg5LIJTSAXNzlGmxVDt8mgjy3Dt1bxubtRzNlLlbmnI,13437
136
+ nat/data_models/embedder.py,sha256=-tdZl93-nRnz9X0hnPJ-8yn_T6Qt2KhLKChtjMiNr0M,1002
137
+ nat/data_models/evaluate.py,sha256=ATFOXrMER6xyIfLqheAPKKF65UETF4jpe1-TuicUjk8,5155
138
+ nat/data_models/evaluator.py,sha256=F0GTm-gEqFkxLwe07dQ2zFFknj1v0Q8KrZ1M6kAcifk,944
139
+ nat/data_models/finetuning.py,sha256=xm09dDnB6gnGnNymRw20pF3ttrZCClNYAd3YPMtdjAU,11678
140
+ nat/data_models/front_end.py,sha256=xkljUmMOAk1Kir_-MVUuE8Byof7Orowx2bc6i2iCcLk,932
141
+ nat/data_models/function.py,sha256=96NzgImwSU7niZ4_HLhtWtBdJas0h8uLK4WuES_i9uw,2837
142
+ nat/data_models/function_dependencies.py,sha256=p2vBvVIK35p27PDU80R-2_4KJbKhxa2oUppXQ88fWkQ,2906
143
+ nat/data_models/gated_field_mixin.py,sha256=iFxw23po-vauMPgidlYNSZqVRMxr7NMFy9hBebUZedU,9822
144
+ nat/data_models/interactive.py,sha256=xbKsqrbVgPUEoTscuqDUMR0osaRCXnAM5kn_EiG8_Z4,8799
145
+ nat/data_models/intermediate_step.py,sha256=qdxyotilcqerAwV0HYOfwiHZjb0WbUwlOXClK31180w,12792
146
+ nat/data_models/invocation_node.py,sha256=OJHEsxiMMWOpjs1_aKAhvJQqwt7w7lOz5LxGCj-YS_I,1623
147
+ nat/data_models/llm.py,sha256=4g_gcA5Xxz1sVtAng4GUuvnGqiiBSgnDAXlsu0V8ubk,1526
148
+ nat/data_models/logging.py,sha256=wn2_dKzQiO6PXJsVCnmXfbHJl2QlLcpd2qMAq29ZR5s,940
149
+ nat/data_models/memory.py,sha256=2NyxL3ffbrluYxznmmmG9JHIvYr_owyF_uDYeKTyXMg,1052
150
+ nat/data_models/middleware.py,sha256=lmaL22pYE-MdOZnBptRp-vqLmsUOq8fPUOaMxJjIvgo,1312
151
+ nat/data_models/object_store.py,sha256=_YUM4A7Yh6qb_R86DamiSwvaJJqvjhsajwn3170UdzQ,1515
152
+ nat/data_models/openai_mcp.py,sha256=u8Nb2576lnaKcOuG5sn7UEQUAQWvjb4ixNQPF1ZEN_o,1916
153
+ nat/data_models/optimizable.py,sha256=8mYJLu2bLDMYptgqJdotjKDJ0D-Cp85Dx52citQTZzg,8986
154
+ nat/data_models/optimizer.py,sha256=GUBLzyLmyLif69wdGbpWgBcHar8Snkbn3sAfOgs-YkU,5750
155
+ nat/data_models/profiler.py,sha256=hjEucP5DQGdXncp3fflOpo4N8sUKNFTYKgYGslcfshQ,1786
156
+ nat/data_models/registry_handler.py,sha256=GNZjoZpAQ3FYkOoVUhxrYpq30LxcTMNvkuSVXU4rFZA,968
157
+ nat/data_models/retriever.py,sha256=fI8jxwjuXzLD0ykfPsID-192dVwEaDnXn90ioSWeTjc,1207
158
+ nat/data_models/retry_mixin.py,sha256=-fHS6tWoq6NkaSxIuDFYvHLLHUtyehGiD9SuvAjeiZU,1863
159
+ nat/data_models/runtime_enum.py,sha256=ZG1vZvUIMdpfSUpC4oOO7R2k0Ds7vGL9bR345oJP3dg,883
160
+ nat/data_models/span.py,sha256=2_HayCy_5TrZT8-u1C3w60IZzMda2JLBSIUxNNRkUFI,8056
161
+ nat/data_models/step_adaptor.py,sha256=TUzTzhjfqk8wJIvjAXeJNLvyj9fK8VmSOHRY9WojxAg,2620
162
+ nat/data_models/streaming.py,sha256=fAn7xlJ6BcrI5WkgxKdoep4lc2BkNt9hkzA71Tww4B4,1159
163
+ nat/data_models/swe_bench_model.py,sha256=tz88Y1aS54Q6cqNK0aftlfMHOaoHMH8ULL7HC_oSvFc,1723
164
+ nat/data_models/telemetry_exporter.py,sha256=dodA8X0DilJ56D4lSZlGxcyDpTfYp_kPHNZXhroX1Mo,998
165
+ nat/data_models/thinking_mixin.py,sha256=D1Nghz7BQrZfDS4TWrKuZWxfH3Bf5szBz-WH2JoW8YI,3340
166
+ nat/data_models/ttc_strategy.py,sha256=D1OdX5pukG7vcm6E4bz8It1KNmYR2DCAx6H8yhGksKo,1114
167
+ nat/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
+ nat/embedder/azure_openai_embedder.py,sha256=VVHI8q_DjsuevVaHrHy8oEvHObNvbjVaib4q1gNPmls,2446
169
+ nat/embedder/nim_embedder.py,sha256=xpEj0rG0bpCzXXCcvqotT1M1AjA21iSCqtshCu5xszA,2592
170
+ nat/embedder/openai_embedder.py,sha256=ifAiIt0bLGNw1ekGDPFpZzfC7umiy2WwocXjNWCq7tw,2002
171
+ nat/embedder/register.py,sha256=eG_7K3c2CZNzu-A45W0DkIF-HkNMXxzU0WSQLPPvvbY,883
172
+ nat/eval/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
173
+ nat/eval/config.py,sha256=WcLOc3DAjBG6UOJmB4-Bnqbv5h6y1TRn51AQD_7rTYo,2686
174
+ nat/eval/evaluate.py,sha256=vZccfkGRbM8WKqo9Bso4A46or8uLF8DqVLWvKBm7I6E,34963
175
+ nat/eval/intermediate_step_adapter.py,sha256=rZbvAfn2BaOAA32YtgtnR3wMdapUZmfFD7n-3NNejDE,4488
176
+ nat/eval/llm_validator.py,sha256=-AvH-Hle4z1wjMK9sgPVn_Vt5mVIPmXUJSNb-9QWE-k,14447
177
+ nat/eval/register.py,sha256=fFRA6NfIurbb_wC50SFQydndcudzcwn5HWpb04-WGS0,1438
178
+ nat/eval/remote_workflow.py,sha256=NiTyixLN3qoT2JwAmOp3V4JUv68nLJZ_0Z_suu7IGvY,6029
179
+ nat/eval/runtime_event_subscriber.py,sha256=7xyeZ_tYSWRzIO071LnmW6tZndZrAyNb6cuoUGLz4vg,1905
180
+ nat/eval/usage_stats.py,sha256=Dy2dO2LbKBVeylSDr62kbn4_-jqCan5zenk6Llj_u4g,1381
181
+ nat/eval/dataset_handler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
+ nat/eval/dataset_handler/dataset_downloader.py,sha256=KFNbN3Gc0MGHcQXa9VmCqxnJjzVflEJyCUuMNC6Gf1o,4646
183
+ nat/eval/dataset_handler/dataset_filter.py,sha256=h5OTd5c7qMa-kibw-sMDxW-j8gsEtz4v_fRv0MmqTf0,3402
184
+ nat/eval/dataset_handler/dataset_handler.py,sha256=A_NAJeAvdJAU36rsRxStTa5iD2HWKWuNvNrDgaJmxUo,18230
185
+ nat/eval/evaluator/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
186
+ nat/eval/evaluator/base_evaluator.py,sha256=GXNOu3-Q9lGINR3Hj934yS3z0DVFcRzSOD65bU053Gw,3239
187
+ nat/eval/evaluator/evaluator_model.py,sha256=HaoJ92wHMfo6Hly2qVsKtqSwcQh6j6buLghBpeV-2fg,1935
188
+ nat/eval/rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
+ nat/eval/rag_evaluator/evaluate.py,sha256=3fYLDsuDe8_nwD4l9GCnLyx6Q_7fHU3vUzxNLlpaFiI,8993
190
+ nat/eval/rag_evaluator/register.py,sha256=NDXWLZavK_jsEZtguFHr1GZHlbLIL_YnRxzJs54EmsY,5840
191
+ nat/eval/red_teaming_evaluator/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
192
+ nat/eval/red_teaming_evaluator/data_models.py,sha256=kbLgoQ5wUZwh-TYEI6pGojoLVixtpf_uC6-kcm7MLt8,2777
193
+ nat/eval/red_teaming_evaluator/evaluate.py,sha256=bhPQIsFaYeGfiwFAW3wh3ZI3ZZ2_TIMoi9gz5toLLEU,15343
194
+ nat/eval/red_teaming_evaluator/filter_conditions.py,sha256=R_EyHiZD1-GKt8a87l__iZAk5jPSOQA7ltqPhuIUtiA,3129
195
+ nat/eval/red_teaming_evaluator/register.py,sha256=JEBbZOJg-fTSgqMPkFA8LyVexrC6fb6QemNniS_RDlE,2966
196
+ nat/eval/runners/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
197
+ nat/eval/runners/config.py,sha256=Ua_0dTBWmzlGrUsN_GZ9Kks4Jvc7aXG2QxkCsF2M-hM,1408
198
+ nat/eval/runners/multi_eval_runner.py,sha256=GZVQ4DqED9R-Bmp2EW3ag9KuRldQN0mdtwxQvkhkpWA,1991
199
+ nat/eval/runners/red_teaming_runner/__init__.py,sha256=b7JxxuaycQ4Cn6SfotYDXCs7WDLFi1qvWHl2KrYQoQA,1005
200
+ nat/eval/runners/red_teaming_runner/config.py,sha256=J7tlhNgPyUphtQJ7sZU8VVf0XYA4qTGN73l5zkZNx-U,12041
201
+ nat/eval/runners/red_teaming_runner/report_utils.py,sha256=U5e54DThPONNQXmrcEGUsvceeBPvsura03e0D0_WfG0,23708
202
+ nat/eval/runners/red_teaming_runner/runner.py,sha256=ZsRt4auylEuCzzy4nV_P743EH_hpg9U69sFzv93J47M,38768
203
+ nat/eval/runtime_evaluator/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
204
+ nat/eval/runtime_evaluator/evaluate.py,sha256=f79fU0T7Clw8UM5wOB3_sa3lGAvSOsEq1iLdMvc--OU,5384
205
+ nat/eval/runtime_evaluator/register.py,sha256=-24fI1wxwP87bMz6A9c3jrrSqp62Jyeh16nfLPJucH8,4514
206
+ nat/eval/swe_bench_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
+ nat/eval/swe_bench_evaluator/evaluate.py,sha256=B13slwbPU4Yo7OIdgBWwI0WKbWygV2Wx8LIcqeOZcaw,9832
208
+ nat/eval/swe_bench_evaluator/register.py,sha256=RJX9XhLufbp1mGSncYRQ5QoEJo9rddxhSl7BgBkq8zs,1542
209
+ nat/eval/trajectory_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
+ nat/eval/trajectory_evaluator/evaluate.py,sha256=T_q3_mPsQecnAMv3uVRILz8_yA4iiQfeELXMiQf-kEM,3250
211
+ nat/eval/trajectory_evaluator/register.py,sha256=8a65BbyCJJgzDTh4SkU5TL9ZLO40XjMSAXwAnygwMeE,1720
212
+ nat/eval/tunable_rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
213
+ nat/eval/tunable_rag_evaluator/evaluate.py,sha256=x9gg9Haflq_DgD9XAO15nxPf9_jKDZjGemJTMkjzOBI,13056
214
+ nat/eval/tunable_rag_evaluator/register.py,sha256=sRdnX8j5a-k9OkiWvA__RPCDNpA8pqJjWZVOaoCamPQ,2563
215
+ nat/eval/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
+ nat/eval/utils/eval_trace_ctx.py,sha256=_X5rngQGbNMpPDna2ECxO00EYEpPL6FX7GBxDGUx4pU,3269
217
+ nat/eval/utils/output_uploader.py,sha256=2kECn664R7szb-tDjiQD3C4Dy5uULlVIxwWeSVRlq1U,5672
218
+ nat/eval/utils/tqdm_position_registry.py,sha256=kFPi7AMYNZAJthVCiVOYqNGDyIVSRLQbsvMxDNykL0k,1291
219
+ nat/eval/utils/weave_eval.py,sha256=fJuMC5OESZ3cJGEXJLWNzWlrMA_h4VAJ7LoKdkTR0L4,8243
220
+ nat/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
+ nat/experimental/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
+ nat/experimental/decorators/experimental_warning_decorator.py,sha256=Y3MiHXzD4eR9KTL6h8G-wQdPkZHgh6EZvgJ6vAuv6No,5762
223
+ nat/experimental/test_time_compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
+ nat/experimental/test_time_compute/register.py,sha256=D2LbXXp-lqvmQEVxWyKhGroF2YXPQxP8jakxgC5g6_8,1705
225
+ nat/experimental/test_time_compute/editing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
+ nat/experimental/test_time_compute/editing/iterative_plan_refinement_editor.py,sha256=d5xnWnJGqRNlFOnTjp3NBNvyOFYHNsTJOXiAs9M5aZo,6142
227
+ nat/experimental/test_time_compute/editing/llm_as_a_judge_editor.py,sha256=kSK9cibz0lzkw8Ni2ygUv_NXmcQvDJGNdi7EeT0zfNI,8544
228
+ nat/experimental/test_time_compute/editing/motivation_aware_summarization.py,sha256=A4PXtR7ZRQgFlwFTHhmWum9mXp_idoFFPZZhDP5FxCE,4508
229
+ nat/experimental/test_time_compute/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
230
+ nat/experimental/test_time_compute/functions/execute_score_select_function.py,sha256=nBQFgbkoGOj5p0zfo0ZGLeX3sBRI7IGrmNAEj4Ie5-8,4561
231
+ nat/experimental/test_time_compute/functions/multi_llm_judge_function.py,sha256=aUvQGYAs4l420Kcs6J4kbOaggDtZbTar1yKYU4nGQ9Y,3968
232
+ nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=TP-dUun8_kXqWRI-UKl9YMmBt3iw4sDmdzkn1FeoZ-c,10072
233
+ nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py,sha256=_uwFxIC7kqyMn-yzv7vjKlYTPS0HYPLN7FEsLYc8u-g,8451
234
+ nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py,sha256=u1h2IHN7gr3zBcT5-Mt7th4KGxf2T9NF0RFG4YR1XZw,6943
235
+ nat/experimental/test_time_compute/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
+ nat/experimental/test_time_compute/models/editor_config.py,sha256=yBx392Lw628JDi5xnSvcc5zrNyc0qi66MVUGj3cmAYw,7158
237
+ nat/experimental/test_time_compute/models/scoring_config.py,sha256=ymnevnsp7S4Q7LM8q14tyVyagZBsUsy0-Jv5UrhW2wk,5505
238
+ nat/experimental/test_time_compute/models/search_config.py,sha256=fPHei-AyWu_RFQvZnlnKh6ZXJe6u6A9kkHzgs_sNnw0,7441
239
+ nat/experimental/test_time_compute/models/selection_config.py,sha256=u863A7UvXlNAIyCKm1kFdNOikPInpZk3kzo2XyCuCrg,9619
240
+ nat/experimental/test_time_compute/models/stage_enums.py,sha256=shtU78uIZkTsVKaeNCw-_v7PCBKVOs02nf1sw3CsnqM,1289
241
+ nat/experimental/test_time_compute/models/strategy_base.py,sha256=0IhxanaXGA6ptww5IgsLjXL0-cfrP7M3zAR0Dw-Yfwc,2601
242
+ nat/experimental/test_time_compute/models/tool_use_config.py,sha256=BmN9uU-HqwDCPbGDOPlJ6fV4Jf5qGbSqO9smZIDg5yU,1622
243
+ nat/experimental/test_time_compute/models/ttc_item.py,sha256=LD_cwQfAv_c0PxZG--ZN8jyMk1umLwLRY-L_87Me1J0,2392
244
+ nat/experimental/test_time_compute/scoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
245
+ nat/experimental/test_time_compute/scoring/llm_based_agent_scorer.py,sha256=1OzrQiqdgIIJy9r_ZH9_TCN5vu_41-Zl7m2SWrcUXNE,6613
246
+ nat/experimental/test_time_compute/scoring/llm_based_plan_scorer.py,sha256=dwzF4V_afty-24DHD7YP2FKG8J408K05Etj8Nhpc_3A,6506
247
+ nat/experimental/test_time_compute/scoring/motivation_aware_scorer.py,sha256=mP-Nn0fr7ASSAKJVQ6UCwQg_gUOhELvx3n1cxbBIb0Q,4593
248
+ nat/experimental/test_time_compute/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
+ nat/experimental/test_time_compute/search/multi_llm_generation.py,sha256=y-ehQ2Sr3rZ7tqG6AnyXEtFGi37nu38GEoHNyEgVmdE,4952
250
+ nat/experimental/test_time_compute/search/multi_llm_planner.py,sha256=NYfAGhvOCJr93iyR20FxfDeItkgaPo2xCxWEmgkbZOk,5776
251
+ nat/experimental/test_time_compute/search/multi_query_retrieval_search.py,sha256=uTh07lUdnVYcYDGNaQVEB2K1NeSgrzxKsN5TOalLOOQ,5286
252
+ nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py,sha256=McrAI4wtomsqromS5KZY7M69_A5NWavyAIRsvImYeZg,5696
253
+ nat/experimental/test_time_compute/selection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
+ nat/experimental/test_time_compute/selection/best_of_n_selector.py,sha256=b7CFVOII_VZwql6d212-EClq4QyUw0gZSlgplcMwxnE,2494
255
+ nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py,sha256=3lfP2PiYX75lN8ybVf9XU0yjiROe1ZKkydUgAt3zU30,5803
256
+ nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py,sha256=UvQaMs4Qy9s9uYM4oNDZNgAJ7A2JcGVnRNx8SJLboqA,6714
257
+ nat/experimental/test_time_compute/selection/llm_based_plan_selector.py,sha256=jzC6IOIcrE97rIje4eIu_3fF-r5cXq232iV5130wq30,5616
258
+ nat/experimental/test_time_compute/selection/llm_judge_selection.py,sha256=3HSGQxKEQnS5-xufm8hfAaiMjiXHOcFO3p-lR28zBBU,5528
259
+ nat/experimental/test_time_compute/selection/threshold_selector.py,sha256=1eLtujQmv3kJnXaYh19iaOpx6VafZO5vns4d8quncTA,2420
260
+ nat/finetuning/__init__.py,sha256=_QEoZb81fNwNKZOj35xYJjZaxkX0uVrwdaeFurfFlFU,971
261
+ nat/finetuning/finetuning_runtime.py,sha256=CNcdr7F8qBClfS55b0J89H6SUsIbX0yfIpfGZ6pBkEc,5713
262
+ nat/finetuning/interfaces/__init__.py,sha256=_QEoZb81fNwNKZOj35xYJjZaxkX0uVrwdaeFurfFlFU,971
263
+ nat/finetuning/interfaces/finetuning_runner.py,sha256=eeZQ_Kzr6seu9I2FOmU7iTFzeAktA2WeiCmrqRT0t6M,10175
264
+ nat/finetuning/interfaces/trainer_adapter.py,sha256=vyEb2c0APNwaVeDRScd8ro7o4Yk4D_HJNboyvHMFFfs,3513
265
+ nat/finetuning/interfaces/trajectory_builder.py,sha256=Z8gap8XSQ9AE79VHaxpweKB6KakUjPgWpIrRyKHsjEI,4547
266
+ nat/finetuning/utils/__init__.py,sha256=TOVR8j3lgfRCxyYM-2QRa1rR9fDKePK5PoRuC1UXg98,687
267
+ nat/finetuning/utils/parsers/__init__.py,sha256=TOVR8j3lgfRCxyYM-2QRa1rR9fDKePK5PoRuC1UXg98,687
268
+ nat/finetuning/utils/parsers/adk_parser.py,sha256=jyvTMKLuWGGHF2S8WhUKAtjl7PKbGg5sV7PNsnldqzE,5182
269
+ nat/finetuning/utils/parsers/base_parser.py,sha256=Ww39x5aLgg9BV2R0rFttAQFPlP5fXkOQVpg0mKdAemw,9956
270
+ nat/finetuning/utils/parsers/common.py,sha256=7284R9QwLV5Q_4qHff_HlUkpQifETjrBFdGstJoXbwI,3144
271
+ nat/finetuning/utils/parsers/langchain_parser.py,sha256=xT1Btl1fJL6XzJ2eG_ZRoIi54wF8aIYdX5pGZc8h8nY,9744
272
+ nat/finetuning/utils/parsers/llama_index_parser.py,sha256=lra-zCZs2wDByGIOIdBArKtzqBNh_sd4Mp8D3BL1GIM,8141
273
+ nat/front_ends/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
274
+ nat/front_ends/register.py,sha256=Vhcmb7UzW_8VM12BbHVqMjR3F5fM867Zm0HM1jIe0lQ,820
275
+ nat/front_ends/console/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
276
+ nat/front_ends/console/authentication_flow_handler.py,sha256=trgoVPIZbmdRE3RKnMA6sWk2fcb7HfOmCdrerQfx4RM,12166
277
+ nat/front_ends/console/console_front_end_config.py,sha256=8O5NEOWvq9P33RNC1nbax6pQDyfJmygbbt1wsQT4ixU,1545
278
+ nat/front_ends/console/console_front_end_plugin.py,sha256=npFQpcd5n1AdxFThzI-QG_8Foi0mGfgb70RblrAFMeQ,4830
279
+ nat/front_ends/console/register.py,sha256=LMakjs4lwuxcwHYz8lrIMYNx1NT-CraFwTsPTegwm30,1158
280
+ nat/front_ends/cron/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
281
+ nat/front_ends/fastapi/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
282
+ nat/front_ends/fastapi/async_job.py,sha256=KxMKY9ruckJQCRdg2z5adnVuBsrmvM2ZPdVqBNelUTM,4977
283
+ nat/front_ends/fastapi/dask_client_mixin.py,sha256=QK2sef5emnIq93_pLGDPRfyNIrpU0xZYLjQKprOwVCg,2077
284
+ nat/front_ends/fastapi/fastapi_front_end_config.py,sha256=_wiQvdqdjugr_Sxre0PdQSWm0VT67BHXV-2-3asWhzc,13608
285
+ nat/front_ends/fastapi/fastapi_front_end_controller.py,sha256=JsUnXjW_uhfxBuPnsA4sV_XGiy_6HWSFkQJBulWgF9M,2553
286
+ nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=ZinJxPAK4L8MrJbj0Ff22N18Xg7mylCM0_T1lQwL2AM,11701
287
+ nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=1ne2B2DysNroTSsKRBcClce7EDlImnG_Lw1QdWybyHw,74017
288
+ nat/front_ends/fastapi/intermediate_steps_subscriber.py,sha256=5mvMJiW-FG3S-LR4-1qcREemY-2DuFB4mKa6pw48IPE,3614
289
+ nat/front_ends/fastapi/job_store.py,sha256=I9iQnjAaiMnOVA8W_cL-4peXz7ji6LctuA41W8KP2WU,23215
290
+ nat/front_ends/fastapi/main.py,sha256=-y2sna-Doh1iDCH6LLHTHoI91pS2m01foDo17Thj42Q,2445
291
+ nat/front_ends/fastapi/message_handler.py,sha256=yBqxXfNqYLz70GyKKSy9M-uWhPFG7KKaBuMVqA8TX4M,17960
292
+ nat/front_ends/fastapi/message_validator.py,sha256=Hjz4kzoF8iApRgyrbLVYjG_Lg0qDav6cWv-bEGfyeIc,20141
293
+ nat/front_ends/fastapi/register.py,sha256=nIA8Ogh3UgQaw5dAkp_bVIlbzpDU8LhQJKfwqH8ZErw,1158
294
+ nat/front_ends/fastapi/response_helpers.py,sha256=xiobLTc2QjhpW7vDhiNbmySJtI5LOAONFSTD1VgvhAY,8870
295
+ nat/front_ends/fastapi/step_adaptor.py,sha256=gMhZdRcQMX9ShDsKm1lwgFRsHqvUBd1w4TzIYgaTGko,12417
296
+ nat/front_ends/fastapi/utils.py,sha256=LXSlsJc3fihFzudVhrzbo2dgCEGRDOYJisdBzyAn7Zs,2003
297
+ nat/front_ends/fastapi/auth_flow_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
+ nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py,sha256=6IomFmQtzwNNRLyfK_NZ-D3ezPmwNA7GNo-ouWznTUc,1280
299
+ nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=ltGzmw1wxHvUtdRp6QaupBTQGMYLkvmFJnhU46_ISGs,6815
300
+ nat/front_ends/fastapi/html_snippets/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
301
+ nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py,sha256=6JpEzH8fEUw1142NYegmGlZsaTCxt_rXR8cwaebyXNc,1136
302
+ nat/front_ends/simple_base/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
303
+ nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=dJB76epgW3R5WVO-y4bzSpoe-1BdZH9hfIAjxN2B2gs,1904
304
+ nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
+ nat/llm/aws_bedrock_llm.py,sha256=K36o3oczJXlLQThnegnwAWf4iTLNjNtlnjDZWj0zkzs,3508
306
+ nat/llm/azure_openai_llm.py,sha256=TBtK7IjYePLNFnWm9QJ2QgPL4MtCSX1Rn7RZU7kgG-I,3516
307
+ nat/llm/dynamo_llm.py,sha256=WPSJCRIgWlhkuMA9xgtO_fU718wlrP_wPAKItCb85Ro,13665
308
+ nat/llm/huggingface_llm.py,sha256=0KW3zpmpVUSFQewloWJh9OQ83ySL19H_1KvvSbmTP40,6558
309
+ nat/llm/litellm_llm.py,sha256=5fUAODwbXHbDjis5GWs4u5vLgxE62x_kdVttINE1cs0,3468
310
+ nat/llm/nim_llm.py,sha256=3elz36WvMkzLebZlsNcWRJYkl9yNwy5evcvUTxdslJ0,3087
311
+ nat/llm/openai_llm.py,sha256=GrMfA7PxkgEH8bbZesdZYyK5RxV1_L-1x_uIKLu5GTM,2969
312
+ nat/llm/register.py,sha256=gWkmwS6J-c-hzAn1m7U8tTA1Ier2p0CapEJ7iYVb0UU,1145
313
+ nat/llm/utils/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
314
+ nat/llm/utils/env_config_value.py,sha256=ONho_hHl9E7D5pSTl79a53Zcf9hHXPhXCb81Qp0vfpk,3548
315
+ nat/llm/utils/error.py,sha256=4bo4iIoEjMWr2THykHRQLxvvhQAQ9gn4lw4aOJY8BTw,820
316
+ nat/llm/utils/thinking.py,sha256=a9Q56T6hLd3Khs2DteXu8SrU47KopCn9FePbAjrNW8o,7607
317
+ nat/memory/__init__.py,sha256=vKK9jY6_o-s2SuDU-OY-tXZamxAtTe7qjf0Q0SjRbK4,828
318
+ nat/memory/interfaces.py,sha256=O7ezMIj0CM43atea63cksqO-AkkaFhzD9J4_4zSocWU,5531
319
+ nat/memory/models.py,sha256=gnsXlwE32Pb9ZLHdP1XSlUMlUkB7ifSbnoBewYr7-3U,4319
320
+ nat/meta/pypi.md,sha256=40p87Cct6EJ-h_eYqxqCeSafVwt3abpAlY1w18_iyVY,4502
321
+ nat/middleware/__init__.py,sha256=PSl6xf7iZDQhC5A0wxK-Z5_NNQfN_dZfNhGCYv3YIHs,1459
322
+ nat/middleware/function_middleware.py,sha256=DQmbai4_qhy1Go4mfj2XI-x3p5WxCLHLZQLOgvZNuDk,14057
323
+ nat/middleware/middleware.py,sha256=HjmjRqeUHGkbpLyApClZ-XnhpqMXDJbAkRl8vaZJTYA,11690
324
+ nat/middleware/register.py,sha256=IR6SZh6p6GcLwk8J8NLnkIpjDWCnaNt7_yHxFgFQM9Q,1026
325
+ nat/middleware/cache/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
326
+ nat/middleware/cache/cache_middleware.py,sha256=_9DUEXY9s4fPmlr2WR82hB2iRYGuJe7CXBNkIYmjUwM,10461
327
+ nat/middleware/cache/cache_middleware_config.py,sha256=CPj0elwCAofIUQKWnmXDUqpiU3TFQwU8b4qdcpFsac4,1913
328
+ nat/middleware/cache/register.py,sha256=5N6Q-MQJa82VmIOvwKmfxdC__bzhlPff8Ge1oH02hcc,1437
329
+ nat/middleware/defense/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
330
+ nat/middleware/defense/defense_middleware.py,sha256=J30RprM15_N8Az1RR_6SdKbgjzBIeaMxhTy9TZDGjUI,15324
331
+ nat/middleware/defense/defense_middleware_content_guard.py,sha256=wtAUlIsCXpablKFigp7pqxO5O2Vp0M6CGzHkwnnAhQY,19568
332
+ nat/middleware/defense/defense_middleware_data_models.py,sha256=EjXKnclNDS_3esXT0K4VUOTaXSxJiGqRg9VGC4-7h7U,3296
333
+ nat/middleware/defense/defense_middleware_output_verifier.py,sha256=muZY5e-oJ74FhL9yGRBLHCYqgtJFb6TSZaCenALAbgg,19195
334
+ nat/middleware/defense/defense_middleware_pii.py,sha256=pD6zlDPUZWDZIPPcqYOmCbez10sKV9kGApdy4zZ_fHQ,15211
335
+ nat/middleware/defense/register.py,sha256=UAnEmzXOzZ_OcXj97-r-8onW8hIqkG_EffhR87ROpmI,3365
336
+ nat/middleware/dynamic/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
337
+ nat/middleware/dynamic/dynamic_function_middleware.py,sha256=yMOL_d5UgCuBnDfGHe6TbjLrRNbYKQRRpjXLZTWTHw8,41958
338
+ nat/middleware/dynamic/dynamic_middleware_config.py,sha256=LPAZL471KxuPkDMpw6bGQH0dm554G-yCR1TN3m-mgSA,6313
339
+ nat/middleware/dynamic/register.py,sha256=PwHItJwp3S4Su8nmDREev66i17pEqh95vQWiB92SVMc,1436
340
+ nat/middleware/logging/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
341
+ nat/middleware/logging/logging_middleware.py,sha256=R3qQlM3TVtzXa70AcHptsvwWv95vQ4sYzKZkwLEJiRw,2850
342
+ nat/middleware/logging/logging_middleware_config.py,sha256=ISFtYEtOlbqHxcmwE3CeLIoQYaIpYTD7BzkAYAuxgkE,1203
343
+ nat/middleware/logging/register.py,sha256=UdfrXIrF1Ve0YCT70hCshTPPRk234mCiqiW_LQJ2V4I,1368
344
+ nat/middleware/red_teaming/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
345
+ nat/middleware/red_teaming/red_teaming_middleware.py,sha256=_QP-FzBbkLPMlO7qSb15OiJLX8dVLsJ0AkGmp5Iu-p8,15165
346
+ nat/middleware/red_teaming/red_teaming_middleware_config.py,sha256=bKfjPS6crGIPaTfl03w7Eqd1OE92V1PaOdd9FEiS8_g,4744
347
+ nat/middleware/red_teaming/register.py,sha256=OwbtvB1Eq_zmQa3olt0hpnC5UVG-1PUD0Z8fqxWiUb8,2121
348
+ nat/middleware/utils/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
349
+ nat/middleware/utils/workflow_inventory.py,sha256=f33PpIHmJlF4B3UD6KyJ6HTU1VaTMk5WLWnRJMru5jI,5642
350
+ nat/object_store/__init__.py,sha256=55_ApxsOM4oDXR70ebu5hcKOftWwhDKkVv6OeJ_Gi5k,831
351
+ nat/object_store/in_memory_object_store.py,sha256=IUKuQGmoOYS8hq26NHbpyCMy9vof2WB1qA88z37MnZA,2644
352
+ nat/object_store/interfaces.py,sha256=uYD4zNKX66Dy6Sf13O3QNUHrBrCjIwR7y5QNkSZFMKQ,2519
353
+ nat/object_store/models.py,sha256=CxPQkFRQOqb2txAadZXLDyVHl24EB9zWZZe11j-RzwU,1537
354
+ nat/object_store/register.py,sha256=vm4mVCkVd--s15yu3VCBUL8M7DhBg2I4_0-7PZkIEKw,756
355
+ nat/observability/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
356
+ nat/observability/exporter_manager.py,sha256=_A5MCoqrf6T8EzXzvVklm7FfOrV1Igh8r2JuaoWmAX0,13836
357
+ nat/observability/register.py,sha256=-iNTtyyKrv4fyLxfGdhzHDiS6mymRnLUxHKwRE13IHA,4728
358
+ nat/observability/exporter/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
359
+ nat/observability/exporter/base_exporter.py,sha256=nQ_4zDJjBhLK_En4JXnKYIs_w8K6Z3eAVTIFYXNwr2M,16609
360
+ nat/observability/exporter/exporter.py,sha256=YCXwPzTuKFQzCDtE6vbR5qqeGFhswItqlIGui3PMXU8,2396
361
+ nat/observability/exporter/file_exporter.py,sha256=0x_bALzDdpyoz2ePEUHZ27_RH_RsN6VM8DwRp6ou6d0,1470
362
+ nat/observability/exporter/processing_exporter.py,sha256=wQWTvOgQj5bELoNThYf5OEO_k1ZgqcDQaomY6kPK2ao,25049
363
+ nat/observability/exporter/raw_exporter.py,sha256=oRbe9ThoOvEqDrHA4OXSEsI30hF0cBXSEq_35MFCG9c,1864
364
+ nat/observability/exporter/span_exporter.py,sha256=3eoNLXO8t38zKWRmuQanQR2Vdfd9FW8hU4j7qNdt_u8,14832
365
+ nat/observability/mixin/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
366
+ nat/observability/mixin/batch_config_mixin.py,sha256=qdkdIIVWGeGV0vAbCFZU2kGSbaP-yWpHNE3S9AMu38M,1399
367
+ nat/observability/mixin/collector_config_mixin.py,sha256=zRmGLR4mGLHwZ2njv-MUic-RBmQbJjZRsb2i63FiEDo,1087
368
+ nat/observability/mixin/file_mixin.py,sha256=QXBwExwugJ4LN3wVE9dANNwieM-0FoATpNA5pd9YLqY,12306
369
+ nat/observability/mixin/file_mode.py,sha256=h7bncy1QqnBv2LNyKHAugUMK7q9_8L4nQxOnvLVn9rQ,837
370
+ nat/observability/mixin/redaction_config_mixin.py,sha256=TAJk02Sba1-r8cAxz-Gt84Av_K1XocVWmJZVrAeF4WU,2146
371
+ nat/observability/mixin/resource_conflict_mixin.py,sha256=6O73JK7bzuD_yyyxwLK6cOFXfDIsyYg1iNZQKC94A3g,5248
372
+ nat/observability/mixin/serialize_mixin.py,sha256=yYfott7ePrvMzmK_e73vVtYBD8LsrWUDJqsdu4eZUwo,2483
373
+ nat/observability/mixin/tagging_config_mixin.py,sha256=cGESu-SbELv0vnxqxBQ0FQtabigqyw6SS1nxNJonOao,1782
374
+ nat/observability/mixin/type_introspection_mixin.py,sha256=jZ_7nCIPmn_pPTvPedZUVxq8ZJpZtQG84Cct49eItPM,20332
375
+ nat/observability/processor/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
376
+ nat/observability/processor/batching_processor.py,sha256=W8rXZqGq_zA9aWDmNGaHexViftv4CKjcVHK4HjYt66k,13759
377
+ nat/observability/processor/callback_processor.py,sha256=IqtWYwKOM_8Rj77NdR15rTaLcMAshp_4nJDhQzvrbRU,1552
378
+ nat/observability/processor/falsy_batch_filter_processor.py,sha256=hBX8UPsmxVzY88IKqjB5urYpTiUWhaTD2vhN2cP1nG8,1783
379
+ nat/observability/processor/intermediate_step_serializer.py,sha256=KkbP75FYlJNgixHcq3UMrecVRc2jg9Q5t6QgIWjdBDs,1249
380
+ nat/observability/processor/processor.py,sha256=MUEAdRhrKZpPviaLjdUkAkUOA2uaP0TGMDmTC86nCxs,2700
381
+ nat/observability/processor/processor_factory.py,sha256=ADWNs3M969eNfZ3aSDinS-D7-M9PEpKTr86UlqkwbDY,2413
382
+ nat/observability/processor/span_tagging_processor.py,sha256=OU9JCvO7plZvyweg5IFmxwHveUnd-LqURT7KnwVm6Os,2558
383
+ nat/observability/processor/redaction/__init__.py,sha256=l_ZRaYmkR1BQQdsbjlxe5kwo7xgostHEOG9UNnDnnrs,969
384
+ nat/observability/processor/redaction/contextual_redaction_processor.py,sha256=ReDWoOKwcOWDA4s2CcBfIuJEuDSiaUOc3996RQl9oeE,4958
385
+ nat/observability/processor/redaction/contextual_span_redaction_processor.py,sha256=q0h1XZIIAw6HmG_rZoFlWanZaJ4d8r0_rr1yulFWhNc,2580
386
+ nat/observability/processor/redaction/redaction_processor.py,sha256=m_OdLoYIWhpLfAY4pc0YIb6jfzYJjpeiVkS8xUnvVao,6169
387
+ nat/observability/processor/redaction/span_header_redaction_processor.py,sha256=2Cra_FSQoWOQAZFbREZBXarsazukb4YY8YvaiNbDpkk,3769
388
+ nat/observability/utils/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
389
+ nat/observability/utils/dict_utils.py,sha256=PoT4etmPGUn6pmwv7fUbGfw2SmJxHO_E0RaHKLRF3ok,7371
390
+ nat/observability/utils/time_utils.py,sha256=DiBucQWdeRQSKJCzIkowh0V-KEL4aiHIB4RJjTCZn2Y,1071
391
+ nat/plugins/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
392
+ nat/profiler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
393
+ nat/profiler/data_frame_row.py,sha256=kHHB5BbkQnbAQxjdcXL2dozJ8dKKXO_nFJKm2hfhhfM,1724
394
+ nat/profiler/data_models.py,sha256=AhXB8dG5jv1yi4YL46v1ZtuVU9VpD_q9U5uGtXOYxHo,1031
395
+ nat/profiler/inference_metrics_model.py,sha256=aiHfGG4BKQutpxz-O2WRFgqxj4HaivQiVbwkSO32exo,1486
396
+ nat/profiler/intermediate_property_adapter.py,sha256=IYUJ1s3KNObneU0E6teSi9Wn_FbZrkjo7BsbCFl0K5k,3542
397
+ nat/profiler/profile_runner.py,sha256=nkhE2eL3_2V3RO0VmBV5Z9h2N2dfDLwt9vyZHlPThsk,22546
398
+ nat/profiler/utils.py,sha256=Dnr-dSrofQWujWS7ia7_MPBctEWCag2DwTDAP6NJsQc,8271
399
+ nat/profiler/calc/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
400
+ nat/profiler/calc/calc_runner.py,sha256=aFOdW825BjT3MpONpo8CH5JbLe1r5i2FeJWsoCLYjHM,30631
401
+ nat/profiler/calc/calculations.py,sha256=dM4zCv3AHH-hWvhUIXQN-Kk4O9yA_ZNsHFyd4fbnSAY,12332
402
+ nat/profiler/calc/data_models.py,sha256=wcau4VeWuX6KAPRvP554vOhkO87taAc5g5NWeckfXDk,6177
403
+ nat/profiler/calc/plot.py,sha256=hZyQlnSwClXUCnDJMoP1TcQ_8zStiMm0AyxXsnkuApQ,13267
404
+ nat/profiler/callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
+ nat/profiler/callbacks/agno_callback_handler.py,sha256=p4faKBElbb7Ee8peIxRB6g0ZAWI__tP2Pi2j-WtfA_4,14909
406
+ nat/profiler/callbacks/base_callback_class.py,sha256=k9jO9zaHEwXliToYQ5D6yEdWMTI7k3vp6HJdpumRnq4,750
407
+ nat/profiler/callbacks/langchain_callback_handler.py,sha256=R4LbOrWcjb5OIMwiBBJrJectuMtSooF2JLk08JzyoWU,15310
408
+ nat/profiler/callbacks/llama_index_callback_handler.py,sha256=vtba7vs8UtSpr5b9FXvPpO0_iG_1itUWBCABnFm0sPU,11723
409
+ nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=Ns54Vxid5B7H_cpWUgbiCviVE-o886Q2777wbebr2Pc,11092
410
+ nat/profiler/callbacks/token_usage_base_model.py,sha256=s9Q4rjRgIVkyD2HgQhA96U-YREZkWiCtLqjxVQiH9aI,1297
411
+ nat/profiler/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
412
+ nat/profiler/decorators/framework_wrapper.py,sha256=pbZJaLF7eE9pegNx-HdGFoBGEnGrA-_PnEQl-SCOBGw,9223
413
+ nat/profiler/decorators/function_tracking.py,sha256=U71x2comvbmCa9iA-zS15gyo_m_gW-22zBDpVGxWOCg,16776
414
+ nat/profiler/forecasting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
+ nat/profiler/forecasting/config.py,sha256=5Owtr0t9Gi4MQy4ENdK7eOyO_LpFNkD8xLYw_n7QJus,796
416
+ nat/profiler/forecasting/model_trainer.py,sha256=KMwjN3DWNSHyMna2vJbyHOIg5QqKAV4BcFNwoLJEJPI,2461
417
+ nat/profiler/forecasting/models/__init__.py,sha256=kS_nTzVu7e-12Tjh2VXmhzpINwMX-H0vBGzD42DmBqk,942
418
+ nat/profiler/forecasting/models/forecasting_base_model.py,sha256=eM4tR4n8DMCLmiYlc0sOpHVtU2JKw3_OdViK2P2U1Gc,1240
419
+ nat/profiler/forecasting/models/linear_model.py,sha256=UmFgo7dgETStE1x60xsFskOk056z8000T1zdAR36s84,7015
420
+ nat/profiler/forecasting/models/random_forest_regressor.py,sha256=XGdp4G_ALyCb_QCKkO8ntwCvp6D8tGPS4LQWYTlGvuE,9555
421
+ nat/profiler/inference_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
422
+ nat/profiler/inference_optimization/data_models.py,sha256=VXZaALY_c4LWV0XeIacNalULJvlUZxZmaTzSjKNYgfM,11784
423
+ nat/profiler/inference_optimization/llm_metrics.py,sha256=RwtTtv_QeAAkplrqLscalxI47sbNyO1o8i9vhKzRJGw,9487
424
+ nat/profiler/inference_optimization/prompt_caching.py,sha256=AGK13EvN5Nvdc3vR66nQIY4pv4POR7z0T5MkT8io_Do,6510
425
+ nat/profiler/inference_optimization/token_uniqueness.py,sha256=wnNIeWJqR7Hy_86jW53PmhGtSRfABL6TaKBRUZWbFWg,4541
426
+ nat/profiler/inference_optimization/workflow_runtimes.py,sha256=K0HI81l9pofdCB76v1wHZcB_4TequCkeq0ohKwRR0Ns,2669
427
+ nat/profiler/inference_optimization/bottleneck_analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
428
+ nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py,sha256=YSdmyiyfbzee4wDm-ce28u3YNqbKg4nXE5xtFAX7CZQ,16746
429
+ nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py,sha256=6BzXKBlRYaTpWqqWGqGFOyZIgs6gs-Tos7x7VM_7_Bo,11101
430
+ nat/profiler/inference_optimization/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
431
+ nat/profiler/inference_optimization/experimental/concurrency_spike_analysis.py,sha256=Q1LmAaLlE8nweZz-6xsJIm2PuF1tWuPQ8QJx4KNcctk,16958
432
+ nat/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=be0KeApDc8aw2FGZKxm_QyFxZJe57zZB_-ShJ46vuv8,16669
433
+ nat/profiler/parameter_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
434
+ nat/profiler/parameter_optimization/optimizable_utils.py,sha256=5qbk6t5b7QSFJohjHXZV7sDMnb4HjggOhhFUDn2yjNo,3719
435
+ nat/profiler/parameter_optimization/optimizer_runtime.py,sha256=5SnBwDK0tVSFIPxRHhFPkjIvgKzdy4Gbb6Pjt6GiBb0,2720
436
+ nat/profiler/parameter_optimization/parameter_optimizer.py,sha256=6F-_m8lIXZrYUAbW6Gz4-7Hee0252Q2Z5Dl528b-aog,8261
437
+ nat/profiler/parameter_optimization/parameter_selection.py,sha256=wtjxhkxDXB2OUB8Fa96XSVtuLJih1JwrhkNRTns1RA4,3987
438
+ nat/profiler/parameter_optimization/pareto_visualizer.py,sha256=quB6IvXc_5CBM6qqxSFHAOlK1GVnDvEILT6bMz1CozE,20542
439
+ nat/profiler/parameter_optimization/prompt_optimizer.py,sha256=IxdZArA9cLnMIEBBSVDzRjAhJiOXG98UH9Di2iLElvg,17663
440
+ nat/profiler/parameter_optimization/update_helpers.py,sha256=6l7bj-2GOVwKaLon_eD9T_sKrqsnm2DEeLRQcpsDq8A,2344
441
+ nat/registry_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
442
+ nat/registry_handlers/metadata_factory.py,sha256=wM4uBOvlghH7PaXsE8S1x_O1AGxYCycWxRew54Z8Zhk,2774
443
+ nat/registry_handlers/package_utils.py,sha256=t1c1cyX3aYXbKxpReVcpPMYeuZ6H4QbMGXnVEREH1zA,22522
444
+ nat/registry_handlers/register.py,sha256=rW5BrPaRLX6PJ6ODxYmuMB8JcqwaKISrEEy5SNYBYNw,800
445
+ nat/registry_handlers/registry_handler_base.py,sha256=-p5KDCkEoIdZ0OyXxmeqmVwc2tEUAUk3ie1vOKBOpPg,5772
446
+ nat/registry_handlers/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
447
+ nat/registry_handlers/local/local_handler.py,sha256=xLm1pQjMwtuhrzOC5a9CkJ1NVV0CU9_3JUJP2HH6sRo,7572
448
+ nat/registry_handlers/local/register_local.py,sha256=g1J4kCsG2cro-k75o5rDC49q2gshwdi78Saym1fptLI,1346
449
+ nat/registry_handlers/pypi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
450
+ nat/registry_handlers/pypi/pypi_handler.py,sha256=K9aRjmR_fl77m0KzSkUmJqHaymRAuC_nlRMOL9kG-4U,10075
451
+ nat/registry_handlers/pypi/register_pypi.py,sha256=N9AzkixYVDEPMY_mUzBpe_Cvv9GuoVUTp2tKaNwnSpQ,1982
452
+ nat/registry_handlers/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
453
+ nat/registry_handlers/rest/register_rest.py,sha256=qdWc8NM8DoRkidVGSgIjnanrV0b9JSu2w3aA3ppMeu4,2671
454
+ nat/registry_handlers/rest/rest_handler.py,sha256=TnI0McfSV37Rtr19Nv5mwhd152CYt25Xc8F0UUKD23Y,9376
455
+ nat/registry_handlers/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
456
+ nat/registry_handlers/schemas/headers.py,sha256=sPVslKdbYWLgUMot6V0W5qDoeazDTHFPqQ7Ex4N9zf0,1554
457
+ nat/registry_handlers/schemas/package.py,sha256=kncNVv5CM06P4IAu_CzEAbsn46qXM0GLfWIya5eJHeE,2426
458
+ nat/registry_handlers/schemas/publish.py,sha256=7n1U6B5XXKZgByyPcQDPJKoM1TuCTNTnb_zBAHbS8m4,2253
459
+ nat/registry_handlers/schemas/pull.py,sha256=UPKci4Ofqz3CvKF4dKsC1WLSv3Dp27mNJLCCuLFH0zs,2634
460
+ nat/registry_handlers/schemas/remove.py,sha256=0cwI8Vl5R-wVkcp4idJ3NWzqDERpromth1etEopZDkE,1395
461
+ nat/registry_handlers/schemas/search.py,sha256=0B4Zord4uyZ4Qo1MDBE5jmpvCaTmcEx5rBk-7sY_dvw,3162
462
+ nat/registry_handlers/schemas/status.py,sha256=DHMX_UeTjOuOBHeeq4nX7O6XWNuqNpNk7annvjpfYuM,1478
463
+ nat/retriever/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
464
+ nat/retriever/interface.py,sha256=YNB1jFE3QhVWC8RHRyaCsTa5lgZQAzhK8bYfiYn7shs,1418
465
+ nat/retriever/models.py,sha256=oLswLpl8Vv7-FU1szzFOaC_2Eg-x6d6A0dfM_Jy0MNU,2437
466
+ nat/retriever/register.py,sha256=CSqkYWSKxSN-3ZOpwuLqUZNs8CNDMxUbFiT2J8fyqek,872
467
+ nat/retriever/milvus/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
468
+ nat/retriever/milvus/register.py,sha256=1rg22LUD0YwKlrTwRECuG444pMX5ZU0ZhjkgXE_D4jU,4392
469
+ nat/retriever/milvus/retriever.py,sha256=50PXvqzlc2zSAzWM8NhL1x8hO_RCV6RRWlJBaV1Kmcc,12185
470
+ nat/retriever/nemo_retriever/__init__.py,sha256=hiEJ2ajB5zhZuZOUHAyHfTA9w9UNhygij7hp4yfA6QE,685
471
+ nat/retriever/nemo_retriever/register.py,sha256=YttyAYREv5wRiN6SOsraF9FPhvouxP1Oca3KOHpcZdQ,2958
472
+ nat/retriever/nemo_retriever/retriever.py,sha256=Q9txdzIMNVJdQQU5UGrnnBLSadAT_EDzTdxT_g_NAyE,6930
473
+ nat/runtime/__init__.py,sha256=ka7tX8fmCO8N0FX-vw64_Y5z3X9-g_-7GPpi5VbBALA,685
474
+ nat/runtime/loader.py,sha256=hOVhHkFL4Wsd5FQo5ld-Ru03QyCdH3elkfWnP4lOs5E,8210
475
+ nat/runtime/metrics.py,sha256=W_MPsAWZdrpCyzpGdrJBL_ZgdKzFKdZ1_r5Nc99TvAs,7346
476
+ nat/runtime/runner.py,sha256=f1dynPwdwlEcA7ImsG4XLxAV1S6kz4FJOv0lO-bjkxk,12680
477
+ nat/runtime/session.py,sha256=0oB7QGexUrOAgy8ioHDKo6m1bCO44LnlQGdYyf2UQss,28499
478
+ nat/runtime/user_metadata.py,sha256=zOLLwChAOU86afCqAh_e9boe7lmib9ZTknq1qKy9QO0,3692
479
+ nat/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
480
+ nat/settings/global_settings.py,sha256=2oE1Vmq029cyHfejB5H4YCd4x6liBtd6y-AaSSw4zdk,12467
481
+ nat/test/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
482
+ nat/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
483
+ nat/tool/chat_completion.py,sha256=i2Rowy3M3_-kUM8uVFUzQqF_N6kurq9XOBATDIPxntc,3251
484
+ nat/tool/datetime_tools.py,sha256=KGFBNIXmx166Fr8GmtzkOwD_zadBeErzJ8KTNwXlEQA,3237
485
+ nat/tool/document_search.py,sha256=bhHlaJ1EWvXqROs2MZ1YRrGp_wpQGhp12EsS5f5tf3w,6751
486
+ nat/tool/github_tools.py,sha256=QvX4r-ayy6jjlihLRSFP-iiOXnsG_0rLTVl0OifAxpM,21905
487
+ nat/tool/nvidia_rag.py,sha256=ISzMUAYxhzBFCjy80NfGNU92evtcXBa0i_M0_76KgXY,4168
488
+ nat/tool/register.py,sha256=epVkz4qpjqvqIvNQrZRalTEq3nWh5U4ZWKyk_SDKwnA,1208
489
+ nat/tool/retriever.py,sha256=ObHj6gUfordAuFy5CO3K0F9MpUuOhW2cT_s0rhywk0A,3882
490
+ nat/tool/server_tools.py,sha256=z99yR2ZrLHRip5i0Yf-8Gz8KcaXIunuN2AiBmweLmI0,3679
491
+ nat/tool/code_execution/README.md,sha256=l2apMa9quUHG6pKMbfiQCDgv9Y6GPF44TKW5dI5qROM,4024
492
+ nat/tool/code_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
493
+ nat/tool/code_execution/code_sandbox.py,sha256=c13fZa4NrBmYw7xxKICSwTkSRdwj9FdbrXFeWbIaqFg,10123
494
+ nat/tool/code_execution/register.py,sha256=_EUGL5_mZKtCsM0eav44zN5yyfxvxbyvDayTwe65XJc,3327
495
+ nat/tool/code_execution/utils.py,sha256=Si2NVqkcaZBQ3veeVTpxhd3zYs5j9Mrqv20iOpkJob4,4194
496
+ nat/tool/code_execution/local_sandbox/.gitignore,sha256=BrV-H5osDtwwIx0eieoexolpnaJvc2DQLV15j95Qtyg,19
497
+ nat/tool/code_execution/local_sandbox/Dockerfile.sandbox,sha256=rzmHDqpSOofZ6AJVWnzoFs7QT_YbhWojnStXMHHggMc,1557
498
+ nat/tool/code_execution/local_sandbox/__init__.py,sha256=IjHHl5CZ9Fs95oB_ktlHLqXMZ2CTEgLaKFJTKS-wFCU,615
499
+ nat/tool/code_execution/local_sandbox/local_sandbox_server.py,sha256=5YcftXeYIVqwRXwz07kTeiIvhZ_5G9DmNhEdd1zlMA8,7040
500
+ nat/tool/code_execution/local_sandbox/sandbox.requirements.txt,sha256=DL4dVNC8G-PMvr_x2C5AhwmeOpSKynpy4FNHWtWWtG4,69
501
+ nat/tool/code_execution/local_sandbox/start_local_sandbox.sh,sha256=6pawUX3bRaP5UHefF3kUidkIkg9yI_ohb2B3y9YD7Tw,2260
502
+ nat/tool/memory_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
503
+ nat/tool/memory_tools/add_memory_tool.py,sha256=V2tH8VnfRl86Np__6fLhu1fV9KkCmCd6Nhpd4qr4VF4,3368
504
+ nat/tool/memory_tools/delete_memory_tool.py,sha256=LY1FZBySxwzco-uixAJpfil6NmyevAj5Usm4kcllVkg,2461
505
+ nat/tool/memory_tools/get_memory_tool.py,sha256=AxkZ1iCFDXjPxo4TppntXKM6waMZIGW2b_nKzi_jMgA,2768
506
+ nat/utils/__init__.py,sha256=CBkO9iH1csUozgXyAh6x-hGeJd5d6fMaE_GOVe6DNOM,2980
507
+ nat/utils/callable_utils.py,sha256=liUwOrYLwIxyOmCJ-NzIDSXX4wfeodd0oV8eQpfu8vg,2480
508
+ nat/utils/debugging_utils.py,sha256=m0G5Lx6bwogOOdxhd_Crov1W2A29xdQuJznpn7bQ5uw,1337
509
+ nat/utils/decorators.py,sha256=Ccev7Q7nyKWoSt4SBfXQM-r2Sds1fYZiKRNvDLv2bKg,8245
510
+ nat/utils/dump_distro_mapping.py,sha256=WuZ866wXNkShEY2WCFw5bRYB054ATR2rs3KCvmUOPRE,1152
511
+ nat/utils/log_levels.py,sha256=Yjh2YPR9WUSneREfcHPTnuIooDCRKmG9dXDbKDwIbtU,893
512
+ nat/utils/log_utils.py,sha256=i9wYhsy6DvUPVhrepx4YBwiPPmgy6-DImz3O_AYXPpE,1686
513
+ nat/utils/metadata_utils.py,sha256=q6MvQuY7m-wFjBr7dKZD2DgE72ljP4qoEWILT9jh8r8,2902
514
+ nat/utils/optional_imports.py,sha256=XZ4dd8sJllqwjZD0dUWyy0V1zWiOTiaprwwk69Esu1I,4039
515
+ nat/utils/producer_consumer_queue.py,sha256=aZjg_Ek9LaaRjDAyIj88-7O8EcPKn74IKaa3EgGmO70,6604
516
+ nat/utils/responses_api.py,sha256=83uoHhPfS0Zt7QxTZ8MTf7FiKZRXQ75qTR9mzqQXbuc,1207
517
+ nat/utils/string_utils.py,sha256=t50jVreSne3hQAVeBfmKdkBACgNybC4IpU_3bd_r4E4,1902
518
+ nat/utils/type_converter.py,sha256=150GZ23OrzApZWD1uwCP6TmnMC-DpccjB_aJZz8f3j4,11831
519
+ nat/utils/type_utils.py,sha256=dZ9SUSxNvwXkQus4j_m-Rwf-blVgW3yW2gqml-CUc98,14836
520
+ nat/utils/url_utils.py,sha256=qIUDDCSGo8Ub2euREpYqI37n0vBz75MATpDhXJiD54Q,1028
521
+ nat/utils/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
522
+ nat/utils/data_models/schema_validator.py,sha256=yiu2s8qdaPmvaYucIEsn3IULLza2atIBgI1tik_ZfBE,1527
523
+ nat/utils/exception_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
524
+ nat/utils/exception_handlers/automatic_retries.py,sha256=Ruz-4sVektpNTjqUN6xw3hl2v-OO20xfuHefH-Dh1TA,18843
525
+ nat/utils/exception_handlers/schemas.py,sha256=Qe6FTqRqgFwruhet82j3a7SxsGRHrxk65sBTWxp65PA,3800
526
+ nat/utils/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
527
+ nat/utils/io/model_processing.py,sha256=z_saO0vBLH0Ax3dq8iLdBeupquGSpEt82ZZtFzIAcUg,941
528
+ nat/utils/io/supress_logs.py,sha256=EgIlGzHVH5TmQBr7CfK1qdgJ_GwxjG36i6MkFuQGYcU,1269
529
+ nat/utils/io/yaml_tools.py,sha256=0BayHEjcmXVsiz9aUw8a2pvy51s8jsfBfMit9XwTL4s,5987
530
+ nat/utils/reactive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
531
+ nat/utils/reactive/observable.py,sha256=ppvYr3wEWEK4kCqG4stzzXvp5eBx3J--WYFG9FiA1ls,2226
532
+ nat/utils/reactive/observer.py,sha256=-oyy7kamagvX3MIWxQxe_Ll24biQ4b4bfs4AzOpFq0g,2513
533
+ nat/utils/reactive/subject.py,sha256=jEQ0jScvekn7Dkp2UVWz_8XbL9NZiBIVZAYHWH2paiQ,4884
534
+ nat/utils/reactive/subscription.py,sha256=efFKggZkCYgISSF5s8HDAR59oJuJyK0psfUL6BEfJIQ,1674
535
+ nat/utils/reactive/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
536
+ nat/utils/reactive/base/observable_base.py,sha256=2MY9lNTtMc0_CDfbeuhyw2zeVReaaBjRJkEew4ZFZJo,2316
537
+ nat/utils/reactive/base/observer_base.py,sha256=hJaJsy5wjHaZdEGRc4DGA5zpDiWZruTgen1vgD9sz58,1848
538
+ nat/utils/reactive/base/subject_base.py,sha256=WRj5jZHW3dhuqpwFLiy98rxq9zsWmx1Zc1gcHv9ujj8,2526
539
+ nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
540
+ nat/utils/settings/global_settings.py,sha256=ffZ0gmjhiN9Lf1CSKowVgJwsECjJyFUJZw5lpQLDpN0,7299
541
+ nvidia_nat-1.4.0a20260113.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
542
+ nvidia_nat-1.4.0a20260113.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
543
+ nvidia_nat-1.4.0a20260113.dist-info/METADATA,sha256=8_mvlIwIFrSk182NjgZW6xoNlHE_olGnvmJvtPkT75o,11828
544
+ nvidia_nat-1.4.0a20260113.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
545
+ nvidia_nat-1.4.0a20260113.dist-info/entry_points.txt,sha256=D-1JwCDnHCMUg0wyxTAXjl5nhHbvAv9KlP-Mi2uJkd4,1496
546
+ nvidia_nat-1.4.0a20260113.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
547
+ nvidia_nat-1.4.0a20260113.dist-info/RECORD,,
@@ -0,0 +1,38 @@
1
+ [console_scripts]
2
+ aiq = nat.cli.main:run_cli_aiq_compat
3
+ nat = nat.cli.main:run_cli
4
+
5
+ [nat.cli]
6
+ configure = nat.cli.commands.configure.configure:configure_command
7
+ eval = nat.cli.commands.evaluate:eval_command
8
+ finetune = nat.cli.commands.finetune:finetune_command
9
+ info = nat.cli.commands.info.info:info_command
10
+ object-store = nat.cli.commands.object_store.object_store:object_store_command
11
+ optimize = nat.cli.commands.optimize:optimizer_command
12
+ red-team = nat.cli.commands.red_teaming.red_teaming:red_team_command
13
+ registry = nat.cli.commands.registry.registry:registry_command
14
+ sizing = nat.cli.commands.sizing.sizing:sizing
15
+ start = nat.cli.commands.start:start_command
16
+ uninstall = nat.cli.commands.uninstall:uninstall_command
17
+ validate = nat.cli.commands.validate:validate_command
18
+ workflow = nat.cli.commands.workflow.workflow:workflow_command
19
+
20
+ [nat.components]
21
+ nat_agents = nat.agent.register
22
+ nat_authentication = nat.authentication.register
23
+ nat_control_flow = nat.control_flow.register
24
+ nat_embedders = nat.embedder.register
25
+ nat_evaluators = nat.eval.register
26
+ nat_llms = nat.llm.register
27
+ nat_middleware = nat.middleware.register
28
+ nat_object_stores = nat.object_store.register
29
+ nat_observability = nat.observability.register
30
+ nat_retrievers = nat.retriever.register
31
+ nat_test_time_compute = nat.experimental.test_time_compute.register
32
+ nat_tools = nat.tool.register
33
+
34
+ [nat.front_ends]
35
+ nat_front_ends = nat.front_ends.register
36
+
37
+ [nat.registry_handlers]
38
+ nat_registry_handlers = nat.registry_handlers.register