nvidia-nat 1.2.0a20250813__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 (436) hide show
  1. nat/agent/__init__.py +0 -0
  2. nat/agent/base.py +239 -0
  3. nat/agent/dual_node.py +67 -0
  4. nat/agent/react_agent/__init__.py +0 -0
  5. nat/agent/react_agent/agent.py +355 -0
  6. nat/agent/react_agent/output_parser.py +104 -0
  7. nat/agent/react_agent/prompt.py +41 -0
  8. nat/agent/react_agent/register.py +149 -0
  9. nat/agent/reasoning_agent/__init__.py +0 -0
  10. nat/agent/reasoning_agent/reasoning_agent.py +225 -0
  11. nat/agent/register.py +23 -0
  12. nat/agent/rewoo_agent/__init__.py +0 -0
  13. nat/agent/rewoo_agent/agent.py +411 -0
  14. nat/agent/rewoo_agent/prompt.py +108 -0
  15. nat/agent/rewoo_agent/register.py +158 -0
  16. nat/agent/tool_calling_agent/__init__.py +0 -0
  17. nat/agent/tool_calling_agent/agent.py +119 -0
  18. nat/agent/tool_calling_agent/register.py +106 -0
  19. nat/authentication/__init__.py +14 -0
  20. nat/authentication/api_key/__init__.py +14 -0
  21. nat/authentication/api_key/api_key_auth_provider.py +96 -0
  22. nat/authentication/api_key/api_key_auth_provider_config.py +124 -0
  23. nat/authentication/api_key/register.py +26 -0
  24. nat/authentication/exceptions/__init__.py +14 -0
  25. nat/authentication/exceptions/api_key_exceptions.py +38 -0
  26. nat/authentication/http_basic_auth/__init__.py +0 -0
  27. nat/authentication/http_basic_auth/http_basic_auth_provider.py +81 -0
  28. nat/authentication/http_basic_auth/register.py +30 -0
  29. nat/authentication/interfaces.py +93 -0
  30. nat/authentication/oauth2/__init__.py +14 -0
  31. nat/authentication/oauth2/oauth2_auth_code_flow_provider.py +107 -0
  32. nat/authentication/oauth2/oauth2_auth_code_flow_provider_config.py +39 -0
  33. nat/authentication/oauth2/register.py +25 -0
  34. nat/authentication/register.py +21 -0
  35. nat/builder/__init__.py +0 -0
  36. nat/builder/builder.py +285 -0
  37. nat/builder/component_utils.py +316 -0
  38. nat/builder/context.py +270 -0
  39. nat/builder/embedder.py +24 -0
  40. nat/builder/eval_builder.py +161 -0
  41. nat/builder/evaluator.py +29 -0
  42. nat/builder/framework_enum.py +24 -0
  43. nat/builder/front_end.py +73 -0
  44. nat/builder/function.py +344 -0
  45. nat/builder/function_base.py +380 -0
  46. nat/builder/function_info.py +627 -0
  47. nat/builder/intermediate_step_manager.py +174 -0
  48. nat/builder/llm.py +25 -0
  49. nat/builder/retriever.py +25 -0
  50. nat/builder/user_interaction_manager.py +78 -0
  51. nat/builder/workflow.py +148 -0
  52. nat/builder/workflow_builder.py +1117 -0
  53. nat/cli/__init__.py +14 -0
  54. nat/cli/cli_utils/__init__.py +0 -0
  55. nat/cli/cli_utils/config_override.py +231 -0
  56. nat/cli/cli_utils/validation.py +37 -0
  57. nat/cli/commands/__init__.py +0 -0
  58. nat/cli/commands/configure/__init__.py +0 -0
  59. nat/cli/commands/configure/channel/__init__.py +0 -0
  60. nat/cli/commands/configure/channel/add.py +28 -0
  61. nat/cli/commands/configure/channel/channel.py +36 -0
  62. nat/cli/commands/configure/channel/remove.py +30 -0
  63. nat/cli/commands/configure/channel/update.py +30 -0
  64. nat/cli/commands/configure/configure.py +33 -0
  65. nat/cli/commands/evaluate.py +139 -0
  66. nat/cli/commands/info/__init__.py +14 -0
  67. nat/cli/commands/info/info.py +39 -0
  68. nat/cli/commands/info/list_channels.py +32 -0
  69. nat/cli/commands/info/list_components.py +129 -0
  70. nat/cli/commands/info/list_mcp.py +304 -0
  71. nat/cli/commands/registry/__init__.py +14 -0
  72. nat/cli/commands/registry/publish.py +88 -0
  73. nat/cli/commands/registry/pull.py +118 -0
  74. nat/cli/commands/registry/registry.py +38 -0
  75. nat/cli/commands/registry/remove.py +108 -0
  76. nat/cli/commands/registry/search.py +155 -0
  77. nat/cli/commands/sizing/__init__.py +14 -0
  78. nat/cli/commands/sizing/calc.py +297 -0
  79. nat/cli/commands/sizing/sizing.py +27 -0
  80. nat/cli/commands/start.py +246 -0
  81. nat/cli/commands/uninstall.py +81 -0
  82. nat/cli/commands/validate.py +47 -0
  83. nat/cli/commands/workflow/__init__.py +14 -0
  84. nat/cli/commands/workflow/templates/__init__.py.j2 +0 -0
  85. nat/cli/commands/workflow/templates/config.yml.j2 +16 -0
  86. nat/cli/commands/workflow/templates/pyproject.toml.j2 +22 -0
  87. nat/cli/commands/workflow/templates/register.py.j2 +5 -0
  88. nat/cli/commands/workflow/templates/workflow.py.j2 +36 -0
  89. nat/cli/commands/workflow/workflow.py +37 -0
  90. nat/cli/commands/workflow/workflow_commands.py +317 -0
  91. nat/cli/entrypoint.py +135 -0
  92. nat/cli/main.py +57 -0
  93. nat/cli/register_workflow.py +488 -0
  94. nat/cli/type_registry.py +1000 -0
  95. nat/data_models/__init__.py +14 -0
  96. nat/data_models/api_server.py +709 -0
  97. nat/data_models/authentication.py +231 -0
  98. nat/data_models/common.py +171 -0
  99. nat/data_models/component.py +58 -0
  100. nat/data_models/component_ref.py +168 -0
  101. nat/data_models/config.py +410 -0
  102. nat/data_models/dataset_handler.py +123 -0
  103. nat/data_models/discovery_metadata.py +334 -0
  104. nat/data_models/embedder.py +27 -0
  105. nat/data_models/evaluate.py +127 -0
  106. nat/data_models/evaluator.py +26 -0
  107. nat/data_models/front_end.py +26 -0
  108. nat/data_models/function.py +30 -0
  109. nat/data_models/function_dependencies.py +72 -0
  110. nat/data_models/interactive.py +246 -0
  111. nat/data_models/intermediate_step.py +302 -0
  112. nat/data_models/invocation_node.py +38 -0
  113. nat/data_models/llm.py +27 -0
  114. nat/data_models/logging.py +26 -0
  115. nat/data_models/memory.py +27 -0
  116. nat/data_models/object_store.py +44 -0
  117. nat/data_models/profiler.py +54 -0
  118. nat/data_models/registry_handler.py +26 -0
  119. nat/data_models/retriever.py +30 -0
  120. nat/data_models/retry_mixin.py +35 -0
  121. nat/data_models/span.py +190 -0
  122. nat/data_models/step_adaptor.py +64 -0
  123. nat/data_models/streaming.py +33 -0
  124. nat/data_models/swe_bench_model.py +54 -0
  125. nat/data_models/telemetry_exporter.py +26 -0
  126. nat/data_models/ttc_strategy.py +30 -0
  127. nat/embedder/__init__.py +0 -0
  128. nat/embedder/langchain_client.py +41 -0
  129. nat/embedder/nim_embedder.py +59 -0
  130. nat/embedder/openai_embedder.py +43 -0
  131. nat/embedder/register.py +24 -0
  132. nat/eval/__init__.py +14 -0
  133. nat/eval/config.py +60 -0
  134. nat/eval/dataset_handler/__init__.py +0 -0
  135. nat/eval/dataset_handler/dataset_downloader.py +106 -0
  136. nat/eval/dataset_handler/dataset_filter.py +52 -0
  137. nat/eval/dataset_handler/dataset_handler.py +254 -0
  138. nat/eval/evaluate.py +510 -0
  139. nat/eval/evaluator/__init__.py +14 -0
  140. nat/eval/evaluator/base_evaluator.py +77 -0
  141. nat/eval/evaluator/evaluator_model.py +45 -0
  142. nat/eval/intermediate_step_adapter.py +99 -0
  143. nat/eval/rag_evaluator/__init__.py +0 -0
  144. nat/eval/rag_evaluator/evaluate.py +178 -0
  145. nat/eval/rag_evaluator/register.py +143 -0
  146. nat/eval/register.py +23 -0
  147. nat/eval/remote_workflow.py +133 -0
  148. nat/eval/runners/__init__.py +14 -0
  149. nat/eval/runners/config.py +39 -0
  150. nat/eval/runners/multi_eval_runner.py +54 -0
  151. nat/eval/runtime_event_subscriber.py +52 -0
  152. nat/eval/swe_bench_evaluator/__init__.py +0 -0
  153. nat/eval/swe_bench_evaluator/evaluate.py +215 -0
  154. nat/eval/swe_bench_evaluator/register.py +36 -0
  155. nat/eval/trajectory_evaluator/__init__.py +0 -0
  156. nat/eval/trajectory_evaluator/evaluate.py +75 -0
  157. nat/eval/trajectory_evaluator/register.py +40 -0
  158. nat/eval/tunable_rag_evaluator/__init__.py +0 -0
  159. nat/eval/tunable_rag_evaluator/evaluate.py +245 -0
  160. nat/eval/tunable_rag_evaluator/register.py +52 -0
  161. nat/eval/usage_stats.py +41 -0
  162. nat/eval/utils/__init__.py +0 -0
  163. nat/eval/utils/output_uploader.py +140 -0
  164. nat/eval/utils/tqdm_position_registry.py +40 -0
  165. nat/eval/utils/weave_eval.py +184 -0
  166. nat/experimental/__init__.py +0 -0
  167. nat/experimental/decorators/__init__.py +0 -0
  168. nat/experimental/decorators/experimental_warning_decorator.py +134 -0
  169. nat/experimental/test_time_compute/__init__.py +0 -0
  170. nat/experimental/test_time_compute/editing/__init__.py +0 -0
  171. nat/experimental/test_time_compute/editing/iterative_plan_refinement_editor.py +147 -0
  172. nat/experimental/test_time_compute/editing/llm_as_a_judge_editor.py +204 -0
  173. nat/experimental/test_time_compute/editing/motivation_aware_summarization.py +107 -0
  174. nat/experimental/test_time_compute/functions/__init__.py +0 -0
  175. nat/experimental/test_time_compute/functions/execute_score_select_function.py +105 -0
  176. nat/experimental/test_time_compute/functions/plan_select_execute_function.py +224 -0
  177. nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py +205 -0
  178. nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py +146 -0
  179. nat/experimental/test_time_compute/models/__init__.py +0 -0
  180. nat/experimental/test_time_compute/models/editor_config.py +132 -0
  181. nat/experimental/test_time_compute/models/scoring_config.py +112 -0
  182. nat/experimental/test_time_compute/models/search_config.py +120 -0
  183. nat/experimental/test_time_compute/models/selection_config.py +154 -0
  184. nat/experimental/test_time_compute/models/stage_enums.py +43 -0
  185. nat/experimental/test_time_compute/models/strategy_base.py +66 -0
  186. nat/experimental/test_time_compute/models/tool_use_config.py +41 -0
  187. nat/experimental/test_time_compute/models/ttc_item.py +48 -0
  188. nat/experimental/test_time_compute/register.py +36 -0
  189. nat/experimental/test_time_compute/scoring/__init__.py +0 -0
  190. nat/experimental/test_time_compute/scoring/llm_based_agent_scorer.py +168 -0
  191. nat/experimental/test_time_compute/scoring/llm_based_plan_scorer.py +168 -0
  192. nat/experimental/test_time_compute/scoring/motivation_aware_scorer.py +111 -0
  193. nat/experimental/test_time_compute/search/__init__.py +0 -0
  194. nat/experimental/test_time_compute/search/multi_llm_planner.py +128 -0
  195. nat/experimental/test_time_compute/search/multi_query_retrieval_search.py +122 -0
  196. nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py +128 -0
  197. nat/experimental/test_time_compute/selection/__init__.py +0 -0
  198. nat/experimental/test_time_compute/selection/best_of_n_selector.py +63 -0
  199. nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py +131 -0
  200. nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py +159 -0
  201. nat/experimental/test_time_compute/selection/llm_based_plan_selector.py +128 -0
  202. nat/experimental/test_time_compute/selection/threshold_selector.py +58 -0
  203. nat/front_ends/__init__.py +14 -0
  204. nat/front_ends/console/__init__.py +14 -0
  205. nat/front_ends/console/authentication_flow_handler.py +233 -0
  206. nat/front_ends/console/console_front_end_config.py +32 -0
  207. nat/front_ends/console/console_front_end_plugin.py +96 -0
  208. nat/front_ends/console/register.py +25 -0
  209. nat/front_ends/cron/__init__.py +14 -0
  210. nat/front_ends/fastapi/__init__.py +14 -0
  211. nat/front_ends/fastapi/auth_flow_handlers/__init__.py +0 -0
  212. nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py +27 -0
  213. nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py +107 -0
  214. nat/front_ends/fastapi/fastapi_front_end_config.py +242 -0
  215. nat/front_ends/fastapi/fastapi_front_end_controller.py +68 -0
  216. nat/front_ends/fastapi/fastapi_front_end_plugin.py +116 -0
  217. nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py +1087 -0
  218. nat/front_ends/fastapi/html_snippets/__init__.py +14 -0
  219. nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py +35 -0
  220. nat/front_ends/fastapi/intermediate_steps_subscriber.py +80 -0
  221. nat/front_ends/fastapi/job_store.py +183 -0
  222. nat/front_ends/fastapi/main.py +72 -0
  223. nat/front_ends/fastapi/message_handler.py +309 -0
  224. nat/front_ends/fastapi/message_validator.py +354 -0
  225. nat/front_ends/fastapi/register.py +25 -0
  226. nat/front_ends/fastapi/response_helpers.py +195 -0
  227. nat/front_ends/fastapi/step_adaptor.py +319 -0
  228. nat/front_ends/mcp/__init__.py +14 -0
  229. nat/front_ends/mcp/mcp_front_end_config.py +35 -0
  230. nat/front_ends/mcp/mcp_front_end_plugin.py +81 -0
  231. nat/front_ends/mcp/mcp_front_end_plugin_worker.py +143 -0
  232. nat/front_ends/mcp/register.py +27 -0
  233. nat/front_ends/mcp/tool_converter.py +242 -0
  234. nat/front_ends/register.py +22 -0
  235. nat/front_ends/simple_base/__init__.py +14 -0
  236. nat/front_ends/simple_base/simple_front_end_plugin_base.py +54 -0
  237. nat/llm/__init__.py +0 -0
  238. nat/llm/aws_bedrock_llm.py +57 -0
  239. nat/llm/nim_llm.py +46 -0
  240. nat/llm/openai_llm.py +46 -0
  241. nat/llm/register.py +23 -0
  242. nat/llm/utils/__init__.py +14 -0
  243. nat/llm/utils/env_config_value.py +94 -0
  244. nat/llm/utils/error.py +17 -0
  245. nat/memory/__init__.py +20 -0
  246. nat/memory/interfaces.py +183 -0
  247. nat/memory/models.py +112 -0
  248. nat/meta/module_to_distro.json +4 -0
  249. nat/meta/pypi.md +58 -0
  250. nat/object_store/__init__.py +20 -0
  251. nat/object_store/in_memory_object_store.py +76 -0
  252. nat/object_store/interfaces.py +84 -0
  253. nat/object_store/models.py +36 -0
  254. nat/object_store/register.py +20 -0
  255. nat/observability/__init__.py +14 -0
  256. nat/observability/exporter/__init__.py +14 -0
  257. nat/observability/exporter/base_exporter.py +449 -0
  258. nat/observability/exporter/exporter.py +78 -0
  259. nat/observability/exporter/file_exporter.py +33 -0
  260. nat/observability/exporter/processing_exporter.py +322 -0
  261. nat/observability/exporter/raw_exporter.py +52 -0
  262. nat/observability/exporter/span_exporter.py +288 -0
  263. nat/observability/exporter_manager.py +335 -0
  264. nat/observability/mixin/__init__.py +14 -0
  265. nat/observability/mixin/batch_config_mixin.py +26 -0
  266. nat/observability/mixin/collector_config_mixin.py +23 -0
  267. nat/observability/mixin/file_mixin.py +288 -0
  268. nat/observability/mixin/file_mode.py +23 -0
  269. nat/observability/mixin/resource_conflict_mixin.py +134 -0
  270. nat/observability/mixin/serialize_mixin.py +61 -0
  271. nat/observability/mixin/type_introspection_mixin.py +183 -0
  272. nat/observability/processor/__init__.py +14 -0
  273. nat/observability/processor/batching_processor.py +310 -0
  274. nat/observability/processor/callback_processor.py +42 -0
  275. nat/observability/processor/intermediate_step_serializer.py +28 -0
  276. nat/observability/processor/processor.py +71 -0
  277. nat/observability/register.py +96 -0
  278. nat/observability/utils/__init__.py +14 -0
  279. nat/observability/utils/dict_utils.py +236 -0
  280. nat/observability/utils/time_utils.py +31 -0
  281. nat/plugins/.namespace +1 -0
  282. nat/profiler/__init__.py +0 -0
  283. nat/profiler/calc/__init__.py +14 -0
  284. nat/profiler/calc/calc_runner.py +627 -0
  285. nat/profiler/calc/calculations.py +288 -0
  286. nat/profiler/calc/data_models.py +188 -0
  287. nat/profiler/calc/plot.py +345 -0
  288. nat/profiler/callbacks/__init__.py +0 -0
  289. nat/profiler/callbacks/agno_callback_handler.py +295 -0
  290. nat/profiler/callbacks/base_callback_class.py +20 -0
  291. nat/profiler/callbacks/langchain_callback_handler.py +290 -0
  292. nat/profiler/callbacks/llama_index_callback_handler.py +205 -0
  293. nat/profiler/callbacks/semantic_kernel_callback_handler.py +238 -0
  294. nat/profiler/callbacks/token_usage_base_model.py +27 -0
  295. nat/profiler/data_frame_row.py +51 -0
  296. nat/profiler/data_models.py +24 -0
  297. nat/profiler/decorators/__init__.py +0 -0
  298. nat/profiler/decorators/framework_wrapper.py +131 -0
  299. nat/profiler/decorators/function_tracking.py +254 -0
  300. nat/profiler/forecasting/__init__.py +0 -0
  301. nat/profiler/forecasting/config.py +18 -0
  302. nat/profiler/forecasting/model_trainer.py +75 -0
  303. nat/profiler/forecasting/models/__init__.py +22 -0
  304. nat/profiler/forecasting/models/forecasting_base_model.py +40 -0
  305. nat/profiler/forecasting/models/linear_model.py +196 -0
  306. nat/profiler/forecasting/models/random_forest_regressor.py +268 -0
  307. nat/profiler/inference_metrics_model.py +28 -0
  308. nat/profiler/inference_optimization/__init__.py +0 -0
  309. nat/profiler/inference_optimization/bottleneck_analysis/__init__.py +0 -0
  310. nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py +460 -0
  311. nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py +258 -0
  312. nat/profiler/inference_optimization/data_models.py +386 -0
  313. nat/profiler/inference_optimization/experimental/__init__.py +0 -0
  314. nat/profiler/inference_optimization/experimental/concurrency_spike_analysis.py +468 -0
  315. nat/profiler/inference_optimization/experimental/prefix_span_analysis.py +405 -0
  316. nat/profiler/inference_optimization/llm_metrics.py +212 -0
  317. nat/profiler/inference_optimization/prompt_caching.py +163 -0
  318. nat/profiler/inference_optimization/token_uniqueness.py +107 -0
  319. nat/profiler/inference_optimization/workflow_runtimes.py +72 -0
  320. nat/profiler/intermediate_property_adapter.py +102 -0
  321. nat/profiler/profile_runner.py +473 -0
  322. nat/profiler/utils.py +184 -0
  323. nat/registry_handlers/__init__.py +0 -0
  324. nat/registry_handlers/local/__init__.py +0 -0
  325. nat/registry_handlers/local/local_handler.py +176 -0
  326. nat/registry_handlers/local/register_local.py +37 -0
  327. nat/registry_handlers/metadata_factory.py +60 -0
  328. nat/registry_handlers/package_utils.py +571 -0
  329. nat/registry_handlers/pypi/__init__.py +0 -0
  330. nat/registry_handlers/pypi/pypi_handler.py +251 -0
  331. nat/registry_handlers/pypi/register_pypi.py +40 -0
  332. nat/registry_handlers/register.py +21 -0
  333. nat/registry_handlers/registry_handler_base.py +157 -0
  334. nat/registry_handlers/rest/__init__.py +0 -0
  335. nat/registry_handlers/rest/register_rest.py +56 -0
  336. nat/registry_handlers/rest/rest_handler.py +237 -0
  337. nat/registry_handlers/schemas/__init__.py +0 -0
  338. nat/registry_handlers/schemas/headers.py +42 -0
  339. nat/registry_handlers/schemas/package.py +68 -0
  340. nat/registry_handlers/schemas/publish.py +68 -0
  341. nat/registry_handlers/schemas/pull.py +82 -0
  342. nat/registry_handlers/schemas/remove.py +36 -0
  343. nat/registry_handlers/schemas/search.py +91 -0
  344. nat/registry_handlers/schemas/status.py +47 -0
  345. nat/retriever/__init__.py +0 -0
  346. nat/retriever/interface.py +41 -0
  347. nat/retriever/milvus/__init__.py +14 -0
  348. nat/retriever/milvus/register.py +81 -0
  349. nat/retriever/milvus/retriever.py +228 -0
  350. nat/retriever/models.py +77 -0
  351. nat/retriever/nemo_retriever/__init__.py +14 -0
  352. nat/retriever/nemo_retriever/register.py +60 -0
  353. nat/retriever/nemo_retriever/retriever.py +190 -0
  354. nat/retriever/register.py +22 -0
  355. nat/runtime/__init__.py +14 -0
  356. nat/runtime/loader.py +219 -0
  357. nat/runtime/runner.py +195 -0
  358. nat/runtime/session.py +162 -0
  359. nat/runtime/user_metadata.py +130 -0
  360. nat/settings/__init__.py +0 -0
  361. nat/settings/global_settings.py +318 -0
  362. nat/test/.namespace +1 -0
  363. nat/tool/__init__.py +0 -0
  364. nat/tool/chat_completion.py +74 -0
  365. nat/tool/code_execution/README.md +151 -0
  366. nat/tool/code_execution/__init__.py +0 -0
  367. nat/tool/code_execution/code_sandbox.py +267 -0
  368. nat/tool/code_execution/local_sandbox/.gitignore +1 -0
  369. nat/tool/code_execution/local_sandbox/Dockerfile.sandbox +60 -0
  370. nat/tool/code_execution/local_sandbox/__init__.py +13 -0
  371. nat/tool/code_execution/local_sandbox/local_sandbox_server.py +198 -0
  372. nat/tool/code_execution/local_sandbox/sandbox.requirements.txt +6 -0
  373. nat/tool/code_execution/local_sandbox/start_local_sandbox.sh +50 -0
  374. nat/tool/code_execution/register.py +74 -0
  375. nat/tool/code_execution/test_code_execution_sandbox.py +414 -0
  376. nat/tool/code_execution/utils.py +100 -0
  377. nat/tool/datetime_tools.py +42 -0
  378. nat/tool/document_search.py +141 -0
  379. nat/tool/github_tools/__init__.py +0 -0
  380. nat/tool/github_tools/create_github_commit.py +133 -0
  381. nat/tool/github_tools/create_github_issue.py +87 -0
  382. nat/tool/github_tools/create_github_pr.py +106 -0
  383. nat/tool/github_tools/get_github_file.py +106 -0
  384. nat/tool/github_tools/get_github_issue.py +166 -0
  385. nat/tool/github_tools/get_github_pr.py +256 -0
  386. nat/tool/github_tools/update_github_issue.py +100 -0
  387. nat/tool/mcp/__init__.py +14 -0
  388. nat/tool/mcp/exceptions.py +142 -0
  389. nat/tool/mcp/mcp_client.py +255 -0
  390. nat/tool/mcp/mcp_tool.py +96 -0
  391. nat/tool/memory_tools/__init__.py +0 -0
  392. nat/tool/memory_tools/add_memory_tool.py +79 -0
  393. nat/tool/memory_tools/delete_memory_tool.py +67 -0
  394. nat/tool/memory_tools/get_memory_tool.py +72 -0
  395. nat/tool/nvidia_rag.py +95 -0
  396. nat/tool/register.py +38 -0
  397. nat/tool/retriever.py +94 -0
  398. nat/tool/server_tools.py +66 -0
  399. nat/utils/__init__.py +0 -0
  400. nat/utils/data_models/__init__.py +0 -0
  401. nat/utils/data_models/schema_validator.py +58 -0
  402. nat/utils/debugging_utils.py +43 -0
  403. nat/utils/dump_distro_mapping.py +32 -0
  404. nat/utils/exception_handlers/__init__.py +0 -0
  405. nat/utils/exception_handlers/automatic_retries.py +289 -0
  406. nat/utils/exception_handlers/mcp.py +211 -0
  407. nat/utils/exception_handlers/schemas.py +114 -0
  408. nat/utils/io/__init__.py +0 -0
  409. nat/utils/io/model_processing.py +28 -0
  410. nat/utils/io/yaml_tools.py +119 -0
  411. nat/utils/log_utils.py +37 -0
  412. nat/utils/metadata_utils.py +74 -0
  413. nat/utils/optional_imports.py +142 -0
  414. nat/utils/producer_consumer_queue.py +178 -0
  415. nat/utils/reactive/__init__.py +0 -0
  416. nat/utils/reactive/base/__init__.py +0 -0
  417. nat/utils/reactive/base/observable_base.py +65 -0
  418. nat/utils/reactive/base/observer_base.py +55 -0
  419. nat/utils/reactive/base/subject_base.py +79 -0
  420. nat/utils/reactive/observable.py +59 -0
  421. nat/utils/reactive/observer.py +76 -0
  422. nat/utils/reactive/subject.py +131 -0
  423. nat/utils/reactive/subscription.py +49 -0
  424. nat/utils/settings/__init__.py +0 -0
  425. nat/utils/settings/global_settings.py +197 -0
  426. nat/utils/string_utils.py +38 -0
  427. nat/utils/type_converter.py +290 -0
  428. nat/utils/type_utils.py +484 -0
  429. nat/utils/url_utils.py +27 -0
  430. nvidia_nat-1.2.0a20250813.dist-info/METADATA +363 -0
  431. nvidia_nat-1.2.0a20250813.dist-info/RECORD +436 -0
  432. nvidia_nat-1.2.0a20250813.dist-info/WHEEL +5 -0
  433. nvidia_nat-1.2.0a20250813.dist-info/entry_points.txt +21 -0
  434. nvidia_nat-1.2.0a20250813.dist-info/licenses/LICENSE-3rd-party.txt +3686 -0
  435. nvidia_nat-1.2.0a20250813.dist-info/licenses/LICENSE.md +201 -0
  436. nvidia_nat-1.2.0a20250813.dist-info/top_level.txt +1 -0
@@ -0,0 +1,436 @@
1
+ nat/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ nat/agent/base.py,sha256=vKD3q6RiRdXYlmsZOsB9DB0cVfSMNByhjn7uwp8TxGw,9094
3
+ nat/agent/dual_node.py,sha256=EOYpYzhaY-m1t2W3eiQrBjSfNjYMDttAwtzEEEcYP4s,2353
4
+ nat/agent/register.py,sha256=EATlFFl7ov5HNGySLcPv1T7jzV-Jy-jPVkUzSXDT-7s,1005
5
+ nat/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ nat/agent/react_agent/agent.py,sha256=UJBhVVpPwNB0fcHtHeJk2U0TKQtVnWe9R-_BNXVZlw4,19424
7
+ nat/agent/react_agent/output_parser.py,sha256=m7K6wRwtckBBpAHqOf3BZ9mqZLwrP13Kxz5fvNxbyZE,4219
8
+ nat/agent/react_agent/prompt.py,sha256=iGPBU6kh1xbp4QsU1p3o4A0JDov23J1EVM3HSAX6S0A,1713
9
+ nat/agent/react_agent/register.py,sha256=Hy6HlwzD7hTXnmditsUzEuXbCYIw8ZnfC15FL8I34Zk,8108
10
+ nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ nat/agent/reasoning_agent/reasoning_agent.py,sha256=RsJaugBnR51AKnpQwWZ5FL19c52QixI0dShf1MfL8qY,9449
12
+ nat/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ nat/agent/rewoo_agent/agent.py,sha256=BE4w8Tk1XvxN3qH-lbrT03RQlGP7WAEFfqXjAly8JCM,19009
14
+ nat/agent/rewoo_agent/prompt.py,sha256=2XsuI-db_qmH02ypx_IDvi6jTak15cqt_4pZkUv9TFk,3929
15
+ nat/agent/rewoo_agent/register.py,sha256=do31lNMfmBzgRcXDEkxewGpHFE03m5_7cCGZIzSwqUs,8104
16
+ nat/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ nat/agent/tool_calling_agent/agent.py,sha256=tKcVIV1EI0D9qlSDUJ7mJOhWCAotFBka2Ii0f4mukoU,5718
18
+ nat/agent/tool_calling_agent/register.py,sha256=iUZ53Ki-KfNwJ-R17r7a3JqmKdKbZCNZReUK0uPJfbU,5413
19
+ nat/authentication/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
20
+ nat/authentication/interfaces.py,sha256=i5eH2hzFwe-y_G5nAC4At995T8AB9d5xYdCqyXCZh5Y,3317
21
+ nat/authentication/register.py,sha256=4-HP_f6wzTloTth7SEyJMRjnoYqTL22W7AQUoNVIKKU,947
22
+ nat/authentication/api_key/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
23
+ nat/authentication/api_key/api_key_auth_provider.py,sha256=d6b1nN2BvFvPhMD_6OjLLjpOmO4JT1ZW7CHqaKfeoDM,4057
24
+ nat/authentication/api_key/api_key_auth_provider_config.py,sha256=zfkxH3yvUSKKldRf1K4PPm0rJLXGH0GDH8xj7anPYGQ,5472
25
+ nat/authentication/api_key/register.py,sha256=Mhv3WyZ9H7C2JN8VuPvwlsJEZrwXJCLXCIokkN9RrP0,1147
26
+ nat/authentication/exceptions/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
27
+ nat/authentication/exceptions/api_key_exceptions.py,sha256=6wnz951BI77rFYuHxoHOthz-y5oE08uxsuM6G5EvOyM,1545
28
+ nat/authentication/http_basic_auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ nat/authentication/http_basic_auth/http_basic_auth_provider.py,sha256=w0XjW9LCFAyZgFwl8BGh94ardr7g1I6OrJBR3SQma40,3449
30
+ nat/authentication/http_basic_auth/register.py,sha256=N2VD0vw7cYABsLxsGXl5yw0htc8adkrB0Y_EMxKwFfk,1235
31
+ nat/authentication/oauth2/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
32
+ nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=GmaxDuk6Fx5eqGZD1Z-RPpY1aME0X4IPUsbMaqYWUUA,4548
33
+ nat/authentication/oauth2/oauth2_auth_code_flow_provider_config.py,sha256=e165ysd2pX2WTbV3_FQKEjEaa4TAXkJ7B98WUGbqnGE,2204
34
+ nat/authentication/oauth2/register.py,sha256=7rXhf-ilgSS_bUJsd9pOOCotL1FM8dKUt3ke1TllKkQ,1228
35
+ nat/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ nat/builder/builder.py,sha256=df_KvzFKowwXopadDW__d-o46ta7imR5YhOzgwq0ejY,10059
37
+ nat/builder/component_utils.py,sha256=_UcckyzifjTXz6jL1nolBVZT1tUMsIigfkZVlXl9_Ew,13628
38
+ nat/builder/context.py,sha256=IfCpBLjtN1VRr1BY4UZPdmsDXpsO8v4oy1wmKPAkBIE,11043
39
+ nat/builder/embedder.py,sha256=NPkOEcxt_-wc53QRijCQQDLretRUYHRYaKoYmarmrBk,965
40
+ nat/builder/eval_builder.py,sha256=nwDDgI1tjNqqkwYREkiaA6uYzf-WXos1-RO8jI-Qy9w,6605
41
+ nat/builder/evaluator.py,sha256=xWHMND2vcAUkdFP7FU3jnVki1rUHeTa0-9saFh2hWKs,1162
42
+ nat/builder/framework_enum.py,sha256=eYwHQifZ86dx-OTubVA3qhCLRqhB4ElMBYBGA0gYtic,885
43
+ nat/builder/front_end.py,sha256=spq8kmTL-u9vPDMqnrJKMhAcIIejT21vj4CWzs31IKQ,2213
44
+ nat/builder/function.py,sha256=XTktk98Gl2Z0Nt0Zp60gbIQBNXR9AoEr8HPwyF8LE5c,13173
45
+ nat/builder/function_base.py,sha256=I7V4RpSvXl4HyGO2uV2Ip99BpNF2Ymj3Joeu-qgUsGY,13280
46
+ nat/builder/function_info.py,sha256=0jt-MEsg_2DxeBIM98MYyB1uMtZYgK5z_1m2B83PV0Y,25266
47
+ nat/builder/intermediate_step_manager.py,sha256=Sy5uohOeOaXyFbhw_WkSgvO24BA1cARUp4eLZn-lSO0,7608
48
+ nat/builder/llm.py,sha256=DW-2q64A06VChsXNEL5PfBjH3DcsnTKVoCEWDuP7MF4,951
49
+ nat/builder/retriever.py,sha256=ZyEqc7pFK31t_yr6Jaxa34c-tRas2edKqJZCNiVh9-0,970
50
+ nat/builder/user_interaction_manager.py,sha256=1YaGsYtwZyyW5TVfGAr-Lb2zxc5akFd2gCbAZtabYc8,3060
51
+ nat/builder/workflow.py,sha256=xYthDJRU_8PeF38DHVuqOROjSGxvoKCw-rY32b1e0k8,6361
52
+ nat/builder/workflow_builder.py,sha256=rks0ClXKwJB-MuJ4KXjkUmXnz1MGwdy50B77ygoQCHA,46231
53
+ nat/cli/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
54
+ nat/cli/entrypoint.py,sha256=Nip28QDI84h4vlsVsBBvD7CAdchSdVRLz4UkT2CerqY,4831
55
+ nat/cli/main.py,sha256=KzUSDB1TGzHRP_Fnq5XJRopx-i9S2oycgQrXrf2vDkE,2164
56
+ nat/cli/register_workflow.py,sha256=AUTPSNo5xXRIOR8u91HEMHJZ_W0pQKak9KR7mvi1Brc,21804
57
+ nat/cli/type_registry.py,sha256=fC2S7VMxasFGBgSwsleyeog2iuPtvD9iwypMZlXm8IQ,45884
58
+ nat/cli/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ nat/cli/cli_utils/config_override.py,sha256=37GcZm9NnSCyw_OuOv55CXC9EI4pqD_unVOHX3_DQSM,8919
60
+ nat/cli/cli_utils/validation.py,sha256=RzGJXPSYYj-QBEnrP3nabMsGYoCSo9cOUCKjVGJQxVA,1296
61
+ nat/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ nat/cli/commands/evaluate.py,sha256=vs1W0rXigCNEeF0WpJIP1olGZcd8sH451ziQ0Un7_AU,4783
63
+ nat/cli/commands/start.py,sha256=thc9wv9mwO_9PX5ggpMzkScdtJtVazUf8x8zXrd7xfI,9832
64
+ nat/cli/commands/uninstall.py,sha256=TZFRb4I8QosJaIsu8N7SL0T488cRsIpXTFKH3OUCz9A,3195
65
+ nat/cli/commands/validate.py,sha256=mseAUfwRP8RL2Jc_a7MA9_0j9CRQFojEFPTPSuLiFGI,1669
66
+ nat/cli/commands/configure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
+ nat/cli/commands/configure/configure.py,sha256=WxkJC5kuZpg9Cb077DxL0R-0DWuZ_boXF2UtIulN6Y0,1107
68
+ nat/cli/commands/configure/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
+ nat/cli/commands/configure/channel/add.py,sha256=WaWQqw-GWyD1WI8nKRNTvzfFF1CqsCiPo5_9-UcIhFk,1077
70
+ nat/cli/commands/configure/channel/channel.py,sha256=GCP_IbBfvXP1Vt6mgvPW70s8a2Xa5Ja33DyQIXRykLc,1221
71
+ nat/cli/commands/configure/channel/remove.py,sha256=F07OVXp1d0cNsk889g8IbIj8rlJhBwEu31nCHN9UdVU,1104
72
+ nat/cli/commands/configure/channel/update.py,sha256=kF4Um3-iuMuNhbbz7_21s9dGB4Aqum3W_t2DadLS5ls,1100
73
+ nat/cli/commands/info/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
74
+ nat/cli/commands/info/info.py,sha256=gl_YYrWvLKg5mVO_pU3pPtbmE7--m0Al945W8rgwJTE,1359
75
+ nat/cli/commands/info/list_channels.py,sha256=clDoGke747suDS5HAF0-6_TW3h8jDkUU57ELc0bjRBI,1292
76
+ nat/cli/commands/info/list_components.py,sha256=zw2v1QRsAl53lNbRy77Gu_MVpSSH3UfoHw58qk29bSI,4468
77
+ nat/cli/commands/info/list_mcp.py,sha256=N2jhT6E8u691HOgS9mGYwWt6qIrauFrDDCAgre9iC2k,12643
78
+ nat/cli/commands/registry/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
79
+ nat/cli/commands/registry/publish.py,sha256=Y1jn0qErfOtjmrwAn0CLRqjSd3M4R1ChnLl9dNBhGlQ,3226
80
+ nat/cli/commands/registry/pull.py,sha256=4QGG1jxQxvi_Bw-Nnld2d_fYjAEAWOkuREiKOJTOL44,4119
81
+ nat/cli/commands/registry/registry.py,sha256=MwrXVb6B7l5-XaekbB-SsvnGNoZkxCy6wGMpeRX3-E4,1337
82
+ nat/cli/commands/registry/remove.py,sha256=J-vdRC554Uqv5ERuXkU-weY5DyRd27YduOK89MXJDBs,3915
83
+ nat/cli/commands/registry/search.py,sha256=UqNZ34XVwm0j_3u-dXJ4BxHFn_vOg9A4E9_r1LkEjr8,5110
84
+ nat/cli/commands/sizing/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
85
+ nat/cli/commands/sizing/calc.py,sha256=3cJHKCbzvV7EwYfLcpfk3_Ki7soAjOaiBcLK-Q6hPVA,11150
86
+ nat/cli/commands/sizing/sizing.py,sha256=-Hr9mz_ScEMtBbn6ijvmmWVk0WybLeX0Ryi4qhDiYQU,902
87
+ nat/cli/commands/workflow/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
88
+ nat/cli/commands/workflow/workflow.py,sha256=40nIOehOX-4xI-qJqJraBX3XVz3l2VtFsZkMQYd897w,1342
89
+ nat/cli/commands/workflow/workflow_commands.py,sha256=NEopfBNlZ0bQCMWFKK3S1Ww3ZmJ8sfGMkY0Z9XeJHF8,11924
90
+ nat/cli/commands/workflow/templates/__init__.py.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
+ nat/cli/commands/workflow/templates/config.yml.j2,sha256=KkZl1fOMVQVFBW-BD_d0Lu8kQgNBtjNpfojhSCPu4uA,222
92
+ nat/cli/commands/workflow/templates/pyproject.toml.j2,sha256=tDV7-vbt8Of82OEdSOijtWS5YJdW1xw2S-r3a8lCbdo,733
93
+ nat/cli/commands/workflow/templates/register.py.j2,sha256=SlOFmIZakPDu_E6DbIhUZ3yP8KhTrAQCFGBuhy9Fyg4,170
94
+ nat/cli/commands/workflow/templates/workflow.py.j2,sha256=Z4uZPG9rtf1nxF74dF4DqDtrF3uYmYUmWowDFbQBjao,1241
95
+ nat/data_models/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
96
+ nat/data_models/api_server.py,sha256=FdTnN_1ZHVYIGPfLG9HB9MJ_CWewxXOvLCiLPF-jSpg,25602
97
+ nat/data_models/authentication.py,sha256=kF-eTOiKuEsvHFAPy-WQxumeSIhtjny59Wci1uh84qo,7349
98
+ nat/data_models/common.py,sha256=y_8AiWmTEaMjCMayVaFYddhv2AAou8Pr84isHgGxeUg,5874
99
+ nat/data_models/component.py,sha256=YURCaCPnaa6ZPVzSMHHm3iFkqnxGhUHvxUWY8bRKlnI,1816
100
+ nat/data_models/component_ref.py,sha256=CB8W6Si6inPbQlGVn6tixtM7MajbhhcDxrIH8K67fpk,4598
101
+ nat/data_models/config.py,sha256=1ymUL8COKLKVLXw-ZXcqREjJdAyAcjjrY-Z27Bsb3DM,17189
102
+ nat/data_models/dataset_handler.py,sha256=MV7zmN6hnvrUIkyxtgnwDc8qs4TG0CQzvI2MQ4MYbKA,4027
103
+ nat/data_models/discovery_metadata.py,sha256=gdLBiVQihrUAv5q5SaNra1QTE7TK1XnDnnkgir0fSw4,14680
104
+ nat/data_models/embedder.py,sha256=nPhthEQDtzAMGd8gFRB1ZfJpN5M9DJvv0h28ohHnTmI,1002
105
+ nat/data_models/evaluate.py,sha256=CaBVxZjHEpO8ZJ4L3GufbDevSkf_Ju-t-a2a-nApl1g,4704
106
+ nat/data_models/evaluator.py,sha256=bd2njsyQB2t6ClJ66gJiCjYHsQpWZwPD7rsU0J109TI,939
107
+ nat/data_models/front_end.py,sha256=z8k6lSWjt1vMOYFbjWQxodpwAqPeuGS0hRBjsriDW2s,932
108
+ nat/data_models/function.py,sha256=M_duXVXL5MvYe0WVLvqEgEzXs0UAYNSMfy9ZTpxuKPA,1013
109
+ nat/data_models/function_dependencies.py,sha256=NOPUF7W-OxiJ76nI8MwgVs6kky-rQjgRkLeTJh-7pvg,2732
110
+ nat/data_models/interactive.py,sha256=qOkxyYPQYEBIBMDAA1rjfYcdvf6-iCM4qPV8Awc4VGw,8794
111
+ nat/data_models/intermediate_step.py,sha256=wIhv-ZSgxD_NSZ5604NifPjezs6jZfhFrXOm_-FrQHE,11734
112
+ nat/data_models/invocation_node.py,sha256=nDRylgzBfJduGA-lme9xN4P6BdOYj0L6ytLHnTuetMI,1618
113
+ nat/data_models/llm.py,sha256=PCTeCPg2YnYk5tvSu7XOEVr2Cg_wSkjAdVsoiTg8Joo,968
114
+ nat/data_models/logging.py,sha256=1QtVjIQ99PgMYUuzw4h1FAoPRteZY7uf3oFTqV3ONgA,940
115
+ nat/data_models/memory.py,sha256=IKwe7CflCto30j4yI5yQtq8DXfMilAJ17S5NcsSDrOQ,1052
116
+ nat/data_models/object_store.py,sha256=S8YY6i8ALgRPuggUI1FCG-xbvwPWuaCg1lJnZOx5scM,1515
117
+ nat/data_models/profiler.py,sha256=z3IlEhj-veB4Yz85271bTkScSUkVwK50tR3dwlDRgcE,1781
118
+ nat/data_models/registry_handler.py,sha256=g1rFaz4uSydMJn7qpdX-DNHJd_rNf8tXYN49dLDYHPo,968
119
+ nat/data_models/retriever.py,sha256=IJAIaeEXM8zj_towrvZ30Uoxt8e4WvOXrQwqGloS1qI,1202
120
+ nat/data_models/retry_mixin.py,sha256=s7UAhAHhlwTJ3uz6POVaSD8Y5DwKnU8mmo7OkRzeaW8,1863
121
+ nat/data_models/span.py,sha256=xZFqj3F8U3Lw06nb-WT8QC9Hd60u2kFViNn3Q_c0rpQ,6664
122
+ nat/data_models/step_adaptor.py,sha256=1qn56wB_nIYBM5IjN4ftsltCAkqaJd3Sqe5v0TRR4K8,2615
123
+ nat/data_models/streaming.py,sha256=sSqJqLqb70qyw69_4R9QC2RMbRw7UjTLPdo3FYBUGxE,1159
124
+ nat/data_models/swe_bench_model.py,sha256=dmgU1M-lL7bUO3gD7wkeDkffPf65cxF1ijgELkR3i64,1754
125
+ nat/data_models/telemetry_exporter.py,sha256=P7kqxIQnFVuvo_UFpH9QSB8fACy_0U2Uzkw_IfWXagE,998
126
+ nat/data_models/ttc_strategy.py,sha256=tAkKWcyEBmBOOYtHMtQTgeCbHxFTk5SEkmFunNVnfyE,1114
127
+ nat/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ nat/embedder/langchain_client.py,sha256=QXzL7xY7UvaGW6yUZzOc9038hxU6oTeOOZYNW-_dfvY,1751
129
+ nat/embedder/nim_embedder.py,sha256=cB2ttl2FwKW_OcIzIHswu8twcBYlc9tM9D0wAWjKc1A,2517
130
+ nat/embedder/openai_embedder.py,sha256=8dkYVup-JGxhnMlYkcXmMoegKAhOL1yFFFcUhj_9PrI,2008
131
+ nat/embedder/register.py,sha256=3MTZrfNQKp6AZTbfaA-PpTnyXiMyu-8HH9JnDCC0v9o,978
132
+ nat/eval/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
133
+ nat/eval/config.py,sha256=c_lSMgmIjKO7l-5JBbMVdnBfnWhAzM7IRQFDjCoFEo0,2271
134
+ nat/eval/evaluate.py,sha256=BwHHdotE6D0e04r6VItiSxfBkXfQyMhaWf8KIW4Wro8,23657
135
+ nat/eval/intermediate_step_adapter.py,sha256=E1AqH0hO_NNUT7nRGkIllitYJAszjjubul0IUwq-cyc,4498
136
+ nat/eval/register.py,sha256=QOHJqA2CQixeWMC9InyKbzXo1jByvrntD_m9-2Mvg9k,1076
137
+ nat/eval/remote_workflow.py,sha256=IUsWHbAShBY5GgTsG9qTwK-SqRwrSNZM9CUfzBhlWo8,6012
138
+ nat/eval/runtime_event_subscriber.py,sha256=9MVgZLKvpnThHINaPbszPYDWnJ61sntS09YZtDhIRE4,1900
139
+ nat/eval/usage_stats.py,sha256=_d_ErIvSKDN8wuvOyPn01kqM7zlFpwVxqOonaCV5XtY,1319
140
+ nat/eval/dataset_handler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
+ nat/eval/dataset_handler/dataset_downloader.py,sha256=w5Kjj7Dn2gQ14ekgt3rtGT8EPGJtXXXlckbtby9rJ2k,4553
142
+ nat/eval/dataset_handler/dataset_filter.py,sha256=HrK0m3SQnPX6zOcKwJwYMrD9O-f6aOw8Vo3j9RKszqE,2115
143
+ nat/eval/dataset_handler/dataset_handler.py,sha256=0OUTrqOcLDB-eBxh_6FrMG1eBqdpNC8-Jlmjgt3fwAs,11161
144
+ nat/eval/evaluator/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
145
+ nat/eval/evaluator/base_evaluator.py,sha256=pubxUm2DXkruSiYPkzezPj3-gzFEDAFGTYYTw7iXglU,3233
146
+ nat/eval/evaluator/evaluator_model.py,sha256=fEjXZqdUGuCIFVNsi4ssyAJjy0Y7Bk3fJKGtjXg-ssg,1440
147
+ nat/eval/rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
+ nat/eval/rag_evaluator/evaluate.py,sha256=tyGnx5Fnx2o5Jd0fM93QMNS3FhGbN109wUAsgdeBWaE,8399
149
+ nat/eval/rag_evaluator/register.py,sha256=TOSTuWxZLj2CYvs5n5RXh3j_9O_P2GYhYvcZHKUT1qU,5889
150
+ nat/eval/runners/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
151
+ nat/eval/runners/config.py,sha256=bRPai_th02OJrFepbbY6w-t7A18TBXozQUnnnH9iWIU,1403
152
+ nat/eval/runners/multi_eval_runner.py,sha256=3YSHOHjGFSlMxVEkuphUsCW5H5w73k3xD-W2rFNRWqE,1986
153
+ nat/eval/swe_bench_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
+ nat/eval/swe_bench_evaluator/evaluate.py,sha256=IekZyH0d4INj6ICsW5mbxEKf8w6uR2s36HQD-saoL9I,9858
155
+ nat/eval/swe_bench_evaluator/register.py,sha256=5mzvBTUBdqahBZNU4KjB1go81cObo9F4iA3y_eOJ86g,1537
156
+ nat/eval/trajectory_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
+ nat/eval/trajectory_evaluator/evaluate.py,sha256=GXLT0cfbaCWhN25bBS8uYOh7m90O6NVBL4o1xhlXWCE,3257
158
+ nat/eval/trajectory_evaluator/register.py,sha256=Zv6XOJP8oHt6EVur2XfiH2HoNSa5CWdM159lizcEoHM,1709
159
+ nat/eval/tunable_rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
+ nat/eval/tunable_rag_evaluator/evaluate.py,sha256=veBrFTwebIwZGV7W0U5sNXJmXbovxfzSwZvncKbNb_E,13069
161
+ nat/eval/tunable_rag_evaluator/register.py,sha256=jYhPz8Xwsxyb7E0xpkAcQFT20xjSoYd_4qOJ7ltvUzU,2558
162
+ nat/eval/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
+ nat/eval/utils/output_uploader.py,sha256=27-aKIejV-6DGNErR6iTioNE5rN_lEeiNoBTS1qIVVM,5579
164
+ nat/eval/utils/tqdm_position_registry.py,sha256=9CtpCk1wtYCSyieHPaSp8nlZu6EcNUOaUz2RTqfekrA,1286
165
+ nat/eval/utils/weave_eval.py,sha256=voOzcl4yHmMvOT0PQsr6LXckA_VMYYWyPX2oPP3Gpjk,7287
166
+ nat/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
+ nat/experimental/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
+ nat/experimental/decorators/experimental_warning_decorator.py,sha256=ji9fITsDF5N5ps5Y9jwb1sqc1e_3TvkUUUBBiJC76CE,5020
169
+ nat/experimental/test_time_compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
+ nat/experimental/test_time_compute/register.py,sha256=MWDEfLLB8agI2_2_8of5_C0q3Wt5Ecv6efSopD7_gZM,1600
171
+ nat/experimental/test_time_compute/editing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
+ nat/experimental/test_time_compute/editing/iterative_plan_refinement_editor.py,sha256=uh0vJFDUucSSd_boU9pwPm5JD674Hhhe5CQxvFWfHlg,6137
173
+ nat/experimental/test_time_compute/editing/llm_as_a_judge_editor.py,sha256=QAu46omTvXJOqWzN_Xeeuhf25R0WxHqMjAdXcB9IxqQ,8539
174
+ nat/experimental/test_time_compute/editing/motivation_aware_summarization.py,sha256=FQsbDIqLICr5B0buTDgpxTYCPUzsPOvwqR2m_C_QuVw,4503
175
+ nat/experimental/test_time_compute/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
+ nat/experimental/test_time_compute/functions/execute_score_select_function.py,sha256=OHiQ01a6g3OEd-K1WZynuQspmrvBpgKKxxqO-UbM4z0,4550
177
+ nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=VAcqHko3utA8RMa7YJmk8AU_zcOJRKu0r5QETfS-yN4,9846
178
+ nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py,sha256=ujooFqyiS8r33VIWhKlLyftlGAGmDHx5XfpUi_bt6BM,8421
179
+ nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py,sha256=WCPNxXstb-8UK1hW_NvjBOpYuXJu9bUwZPHjSA82Msg,6907
180
+ nat/experimental/test_time_compute/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
+ nat/experimental/test_time_compute/models/editor_config.py,sha256=wFHcd4GjWy4fxuXrYnC0gJ0ZszsAjziohK8vS7cc8EA,7153
182
+ nat/experimental/test_time_compute/models/scoring_config.py,sha256=zi93HQrtY1FiRuZgDOdlDZql6T-1W6SteybSUMXjr8U,5500
183
+ nat/experimental/test_time_compute/models/search_config.py,sha256=yqkwMuMs4LlEFhc8c2vZwCSmQlG4F-O4usxy-zomcZg,6487
184
+ nat/experimental/test_time_compute/models/selection_config.py,sha256=vcPvtE7Ya7IvvKIEBMmPYnfJgBnl5WOu1v7r95WHQK4,7867
185
+ nat/experimental/test_time_compute/models/stage_enums.py,sha256=UNQwUqRFoRe5pgasUbBRkRil7zs_NAsJlgFbWhcAU_Y,1284
186
+ nat/experimental/test_time_compute/models/strategy_base.py,sha256=QeJpJqkDEfXjlk2NBM9swzTm1MtwrndDPpQHHrVrExo,2523
187
+ nat/experimental/test_time_compute/models/tool_use_config.py,sha256=WX6Z2ODGElDA7Io8wBxtDkk3jUQGtHLukS6a-ivSZnE,1617
188
+ nat/experimental/test_time_compute/models/ttc_item.py,sha256=E7WEYBmLKo5fth8oljnGF32lojkz31LZIZWNVnk_B3U,2387
189
+ nat/experimental/test_time_compute/scoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
+ nat/experimental/test_time_compute/scoring/llm_based_agent_scorer.py,sha256=LI0dvHTa9tFsftq4MFXyNkPFIDKKmxTosYycSMevGQQ,6608
191
+ nat/experimental/test_time_compute/scoring/llm_based_plan_scorer.py,sha256=s4F3gdqXDh6USVHUG9BpAxcmjg4g4F4g0SHExafHi9k,6501
192
+ nat/experimental/test_time_compute/scoring/motivation_aware_scorer.py,sha256=YxDBBPKn5LelVEV4j5q_ibEhl0erYhNQ3fDQ9y42S3w,4588
193
+ nat/experimental/test_time_compute/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
+ nat/experimental/test_time_compute/search/multi_llm_planner.py,sha256=b5jIDbXfz6Q0MzdZ5pM3EwK4oKv65nLmhJ01PqWlodk,5771
195
+ nat/experimental/test_time_compute/search/multi_query_retrieval_search.py,sha256=UOAWKRioUG_xveADd13EY05IkCoUucGS-bbE1LXKzO8,5281
196
+ nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py,sha256=WJ0PY-eh75PAxdlXcQYqKFCbbvxd4eIjGj7wrShsLBw,5691
197
+ nat/experimental/test_time_compute/selection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
198
+ nat/experimental/test_time_compute/selection/best_of_n_selector.py,sha256=0cFHOTfNsHSguP6Xw5f3MMgJZR-pbkaa4xQCACEOqqg,2489
199
+ nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py,sha256=6vlivKdQq7307JrL-plqx5l_GSYF7vfiGHrUAWiLNew,5798
200
+ nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py,sha256=bGe4Y6HKHwRrSfYyICO4mEvfW6F0p5fz2gSEGaGT90Y,6756
201
+ nat/experimental/test_time_compute/selection/llm_based_plan_selector.py,sha256=3VveJaydB0ZQQs4XKmHsTEBaWVmVrzlLZ_JB8pEDUKg,5611
202
+ nat/experimental/test_time_compute/selection/threshold_selector.py,sha256=9E__TMt5sOhm-KLTWdGKUrxQ6cKYqFjO-CoF_kNILPk,2415
203
+ nat/front_ends/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
204
+ nat/front_ends/register.py,sha256=OKv1xi-g8WHtUMuIPhwjG6wOYqaGDD-Q9vDtKtT9d1Y,889
205
+ nat/front_ends/console/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
206
+ nat/front_ends/console/authentication_flow_handler.py,sha256=Q1A7dv-pUlzsGZ8NXu8r-aGCqRiFqadPPBOw2TmyUNk,9566
207
+ nat/front_ends/console/console_front_end_config.py,sha256=XatMtXoCXa9D5LluhL1KejxfDT9gv54ohP1oGrOAZoA,1327
208
+ nat/front_ends/console/console_front_end_plugin.py,sha256=BJ1o2IflZeFKC2gGfL_gI24pg0t2inT33H0Z14wCwY4,3931
209
+ nat/front_ends/console/register.py,sha256=2Kf6Mthx6jzWzU8YdhYIR1iABmZDvs1UXM_20npXWXs,1153
210
+ nat/front_ends/cron/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
211
+ nat/front_ends/fastapi/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
212
+ nat/front_ends/fastapi/fastapi_front_end_config.py,sha256=iWhZxiXqLzLlR6xPnSMNsvplLLBytJYTFgTQ1f3Gl74,10886
213
+ nat/front_ends/fastapi/fastapi_front_end_controller.py,sha256=vs-VIWHd-YW1w2t-ifYqJ0jy5_SoD-11VyeojW_up5Y,2596
214
+ nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=E6tN2h4KdaeYs1p78JWTEJJCuJujAaEu4dqJbBVdmCA,4428
215
+ nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=IHxeN3M50-smNN6LfDAyKH5JFo3aKY3_jH6dl4jyfek,52083
216
+ nat/front_ends/fastapi/intermediate_steps_subscriber.py,sha256=OmRS-URbBtP9Cxn-uLnzocfIeukCveg6ku488n15p-I,3107
217
+ nat/front_ends/fastapi/job_store.py,sha256=AZC0a8miKqSI9YbW19-AA_GPITVY9bYHXn9H8saNrfQ,6389
218
+ nat/front_ends/fastapi/main.py,sha256=7blvOI-QNhZRCFD9rt98jH4O3FwIvI5RwVQynRhhhYw,2917
219
+ nat/front_ends/fastapi/message_handler.py,sha256=5oIVjWkIERUwdh7zfgrsZhdEaCfz-Uy0Twf_emAZs2U,14441
220
+ nat/front_ends/fastapi/message_validator.py,sha256=20BnhLyl8REpgl-AZcOADznZDnX_CWXrDe6T0pVdDr0,18035
221
+ nat/front_ends/fastapi/register.py,sha256=rA12NPFgV9ZNHOEIgB7_SB6NytjRxgBTLo7fJ-73_HM,1153
222
+ nat/front_ends/fastapi/response_helpers.py,sha256=OtMFbMnoy8_Rj1nH_uCxju8UVmmJWH0eSCAcFCtnSXU,9051
223
+ nat/front_ends/fastapi/step_adaptor.py,sha256=THpcJptGJyDN9E08Y6hAr2ChKhBrJt4RTa5m7GDorTc,12448
224
+ nat/front_ends/fastapi/auth_flow_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
+ nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py,sha256=69ye-nJ81jAoD1cVYv86-AUYu2-Uk8ZqU_m8AVO9vT8,1280
226
+ nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=5HX6mpKPmErkhwIAwFIGONYj_CkPrhCG7L56-79o7Yw,4862
227
+ nat/front_ends/fastapi/html_snippets/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
228
+ nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py,sha256=BNpWwzmA58UM0GK4kZXG4PHJy_5K9ihaVHu8SgCs5JA,1131
229
+ nat/front_ends/mcp/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
230
+ nat/front_ends/mcp/mcp_front_end_config.py,sha256=Qhdei1Mq74jv5u_3M0VQbwvDPnS2GaU2JGIyuEA53Cg,1759
231
+ nat/front_ends/mcp/mcp_front_end_plugin.py,sha256=kHR7jhenSuibrsKoXVHAeLoAiDcZxalStYEFR-38gDo,3243
232
+ nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=DNGSbDFE0vNZRkV8CNtIZIC8yRZCU_sczZDPfDCBXPA,5255
233
+ nat/front_ends/mcp/register.py,sha256=3aJtgG5VaiqujoeU1-Eq7Hl5pWslIlIwGFU2ASLTXgM,1173
234
+ nat/front_ends/mcp/tool_converter.py,sha256=pW2ltiMSRFZsz7Fr3nmSksjbsPZfDd76Pcw_5_goEw4,9834
235
+ nat/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
236
+ nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=3kevZVhvzj_Wvu8HYhRz-CRrO2OldW6wcmtcsIQCELk,1765
237
+ nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
+ nat/llm/aws_bedrock_llm.py,sha256=W46l-8a2ls-BuQR7nP_1iB72Flb7lTh6g4jal9acwDE,2836
239
+ nat/llm/nim_llm.py,sha256=zUAIYj-Wn0xwHUoi9broq4-XKK1QyUsr1fDbLWoMihg,2179
240
+ nat/llm/openai_llm.py,sha256=BsfUuFnJ8XW9e_BIuda4B0SbHHd5DGSXhlyJg9VIhcw,2230
241
+ nat/llm/register.py,sha256=GMsFzhupP_rwSVkIoJUT8j0CRhWyC4X58ihnO_l9OkM,899
242
+ nat/llm/utils/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
243
+ nat/llm/utils/env_config_value.py,sha256=SBpppIRszDXNcEEG2L6kVojY7LH_EpHfK7bu92TGrE4,3568
244
+ nat/llm/utils/error.py,sha256=gFFDG_v_3hBZVWpcD7HWkno-NBHDjXae7qDGnfiCNwA,820
245
+ nat/memory/__init__.py,sha256=sNqiLatqyTNSBUKKgmInOvCmebkuDHRTErZaeOaE8C8,844
246
+ nat/memory/interfaces.py,sha256=lyj1TGr3Fhibul8Y64Emj-BUEqDotmmFoVCEMqTujUA,5531
247
+ nat/memory/models.py,sha256=c5dA7nKHQ4AS1_ptQZcfC_oXO495-ehocnf_qXTE6c8,4319
248
+ nat/meta/module_to_distro.json,sha256=AAvMpy2u9LzRgxLmZJLcYRKqjWxE35_1cMGxIZ014KI,53
249
+ nat/meta/pypi.md,sha256=CnfG3JaKbi6iHWTE_eNmiVmPJ7GEsZ75FQbVurS05gk,4465
250
+ nat/object_store/__init__.py,sha256=7JInpxFZUdqigaBaXDzUj0KTlv_2tiM-SuTOlSvadkg,847
251
+ nat/object_store/in_memory_object_store.py,sha256=98UgQK2YdXTTQjBfQS-mjBCCugm1XUB7DZCFS8xe9yQ,2644
252
+ nat/object_store/interfaces.py,sha256=5NbsE9TccihOf5ScG04hE1eNOaiajOZIUOeK_Kvukk8,2519
253
+ nat/object_store/models.py,sha256=yAEa7oZgax7OwObynv0MFCMo43xTGps5xz3SIY6-0VM,1425
254
+ nat/object_store/register.py,sha256=M93V17RxBXzGZaAmWboDw-S2XP7lrMEyzdlxXqC0f30,788
255
+ nat/observability/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
256
+ nat/observability/exporter_manager.py,sha256=VO7ZQ61UhxBId9ZgEx_-9PE4IvORSaHaZcMhNL3BNwo,13854
257
+ nat/observability/register.py,sha256=p9Izk5_iJBNxu2_E4VoaDnBoINWoTDf661FnWbLtqIk,4267
258
+ nat/observability/exporter/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
259
+ nat/observability/exporter/base_exporter.py,sha256=gR3f7GMUDR-sZHtCscFuNzppo_JJ0s5pZfyFwIJPO8I,16627
260
+ nat/observability/exporter/exporter.py,sha256=fqF0GYuhZRQEq0skq_FK2nlnsaUAzLpQi-OciaOkRno,2391
261
+ nat/observability/exporter/file_exporter.py,sha256=ja3FQzPJLfrwZn5h-t6K7k3pC_64TBJd5rGlAYPiak0,1490
262
+ nat/observability/exporter/processing_exporter.py,sha256=_hTRSzJeCx1Z3CrU3pow5YVsrxg3XoLCvdfkU_Gf5VM,14488
263
+ nat/observability/exporter/raw_exporter.py,sha256=BwNdhK5uSI7zEajEn3b1QI0sdVN-83pD1NKo09raIuI,1862
264
+ nat/observability/exporter/span_exporter.py,sha256=p2rugOIyubBk_Frg1c-x-THzvFZt8q8HhYssKUp8Hdg,13250
265
+ nat/observability/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
266
+ nat/observability/mixin/batch_config_mixin.py,sha256=DixQq-jRhBFJvpOX-gq7GvPmZCPOXQdacylyEuhZ6y0,1399
267
+ nat/observability/mixin/collector_config_mixin.py,sha256=3iptkRH9N6JgcsPq7GyjjJVAoxjd-l42UKE7iSF4Hq8,1087
268
+ nat/observability/mixin/file_mixin.py,sha256=jh1ZazkywlqJtd5zvVUMsuywMR0qR9bQw1E5SQOSbHM,12293
269
+ nat/observability/mixin/file_mode.py,sha256=Rq7l8UegECub5QCyCAYwhyL_Jul386gW-ANmtMmv2G4,837
270
+ nat/observability/mixin/resource_conflict_mixin.py,sha256=mcUp3Qinmhiepq3DyRvp9IaKGYtJfDgQVB-MuyVkWvk,5243
271
+ nat/observability/mixin/serialize_mixin.py,sha256=DgRHJpXCz9qHFYzhlTTx8Dkj297EylCKK3ydGrH5zOw,2478
272
+ nat/observability/mixin/type_introspection_mixin.py,sha256=VCb68SY_hitWrWLaK2UHQLkjn2jsgxSn9593T2N3zC0,6637
273
+ nat/observability/processor/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
274
+ nat/observability/processor/batching_processor.py,sha256=upE154Pij_iQpmLoFb6GNM_D26xYJoouLbxeSvC0RxA,13888
275
+ nat/observability/processor/callback_processor.py,sha256=T5DsEm4HCUOi1VL29XCpaK04sYQvJ75KZLH-mlJGQgk,1547
276
+ nat/observability/processor/intermediate_step_serializer.py,sha256=aHeCmixyop7uxNnKmrUZ8SIFeBNS05gYohKLepqbrcQ,1249
277
+ nat/observability/processor/processor.py,sha256=kTqOsus5Ycu5aFnxCTH1EkCP23uRBZ4xNhXmj3DP5OE,2593
278
+ nat/observability/utils/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
279
+ nat/observability/utils/dict_utils.py,sha256=DcNhZ0mgcJ-QQfsCl9QSGL-m_jTuHhr1N-v43ZCAMik,7371
280
+ nat/observability/utils/time_utils.py,sha256=V8m-e3ldUgwv031B17y29yLXIowdlTH4QW8xDw9WKvk,1071
281
+ nat/plugins/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
282
+ nat/profiler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
+ nat/profiler/data_frame_row.py,sha256=vudqk1ZzZtlZln2Ir43mPl3nwNc0pQlhwbtdY9oSKtI,1755
284
+ nat/profiler/data_models.py,sha256=UAuTy9_l623JUNdIKIHPxoNEwZ7Qj-Vv93rfjxyf5Ak,1026
285
+ nat/profiler/inference_metrics_model.py,sha256=Thz3OHBDzGrpPYaOm8m8_pNeEA_q0yDlUUDHFkQ3U90,1481
286
+ nat/profiler/intermediate_property_adapter.py,sha256=cCxyldN052meVJ4Ul-vbmguum0mLdaz3syFoidkIDsg,3537
287
+ nat/profiler/profile_runner.py,sha256=MsFl1kMVLRctaA3u2Nc_X2lDZazKBkj8hVYYYO5KY5w,22363
288
+ nat/profiler/utils.py,sha256=IK4Rk5pytbg5aOGV8Ibr92jsBMTqOuX8QembOmwXrTI,8180
289
+ nat/profiler/calc/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
290
+ nat/profiler/calc/calc_runner.py,sha256=PUC7x2udUseif0brdmMiSv1LyhmEkcCVLVq8EHXJSnY,30681
291
+ nat/profiler/calc/calculations.py,sha256=K_r1OvEOEF5ffoadS4mAzTNHguVLMkNkrxrdtKvJJSs,12327
292
+ nat/profiler/calc/data_models.py,sha256=vmBu89C1LsJyIRpEEzGi29_cFJDZJUJXOSXWtraVfd8,6172
293
+ nat/profiler/calc/plot.py,sha256=h_GyTg-6qU6n2ZAUCsMmXkz6ha-lrcQ903G0JxNWrzM,12222
294
+ nat/profiler/callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
+ nat/profiler/callbacks/agno_callback_handler.py,sha256=fmlowumEo2zKwWs10KPlxxaxdbhHjQ7Xqxw3-_-9D2A,14924
296
+ nat/profiler/callbacks/base_callback_class.py,sha256=BFZMkb-dPoHAnM_4jVXX08hD8Vi2n8thyftVlUxfE24,745
297
+ nat/profiler/callbacks/langchain_callback_handler.py,sha256=cjZpnrmVRtEq8kji3UpheWBSzq9RTZVeuBAKC_ILD0c,12505
298
+ nat/profiler/callbacks/llama_index_callback_handler.py,sha256=zp8CNFx2r8em6Fsrg1aPzanZBXFrVUD_3io0ppQUfiU,9328
299
+ nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=sbD21kia9hJuQ7_uVObvzzrww03hI1dQBmdwu5sDhVY,11151
300
+ nat/profiler/callbacks/token_usage_base_model.py,sha256=X0b_AbBgVQAAbgbDMim-3S3XdQ7PaPs9qMUACvMAe5o,1104
301
+ nat/profiler/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
302
+ nat/profiler/decorators/framework_wrapper.py,sha256=fMEjJgtMAvmEL1e2L7ijyCLRhxoGJ7ylXVTno6bo4J0,5438
303
+ nat/profiler/decorators/function_tracking.py,sha256=T60aBvYcy7KMQa6HPsD1E6dv8xE7LYUz7jRWQ6HGnMk,11095
304
+ nat/profiler/forecasting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
+ nat/profiler/forecasting/config.py,sha256=5BhMa8csuPCjEnTaNQjo_2IoO7esh1ch02MoSWkvwPw,791
306
+ nat/profiler/forecasting/model_trainer.py,sha256=6Ci2KN4sNj1V3yduHXlA0tn50yHUmM2VcbRRS2L96OA,2456
307
+ nat/profiler/forecasting/models/__init__.py,sha256=pLpWi7u1UrguKIYD-BYu8IExvJLX_U2cuW3Ifp3zCOY,937
308
+ nat/profiler/forecasting/models/forecasting_base_model.py,sha256=6-oe3jn-X9_m3QvkWAEJ9m7sMLlZ7VDt6yfNyWK-_18,1219
309
+ nat/profiler/forecasting/models/linear_model.py,sha256=sYnED_12g4JRMvq_EHnfV1mPagQ_1GsUBmYIp79RI3I,6993
310
+ nat/profiler/forecasting/models/random_forest_regressor.py,sha256=kWykz63AI4aWCwAOdxuCxlqoIZuhHhKeSVVedK0Nigo,9533
311
+ nat/profiler/inference_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
312
+ nat/profiler/inference_optimization/data_models.py,sha256=lK6EPAgEPtJMMpe3SFoDqx4BntJVo8fMQzLfqOMKpB0,11884
313
+ nat/profiler/inference_optimization/llm_metrics.py,sha256=kC8LUonJiXjQ5ogH8D7GTEYk44ypwncRJrN0ByRWz6k,9482
314
+ nat/profiler/inference_optimization/prompt_caching.py,sha256=n3kfgWibCjkXbp6_Qo8q3aLk3fhr_p8KYnAOnTybpZU,6505
315
+ nat/profiler/inference_optimization/token_uniqueness.py,sha256=Q8cf14V0YisDoXar7Gess0Gch7vqPLHmL892mVC86PA,4571
316
+ nat/profiler/inference_optimization/workflow_runtimes.py,sha256=RXCsLoWkaLi32fi8kqajhgVMIedtzljUUZ8LA-xJDEU,2664
317
+ nat/profiler/inference_optimization/bottleneck_analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
318
+ nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py,sha256=FntGF_YmSIdDiRJB9ec0pHq0yd-5mdJ6VBZrQeGJmGE,16732
319
+ nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py,sha256=B711-qR949Xjb0nMK-GIAQSNDfTX-xahuAGf7taKwSk,11100
320
+ nat/profiler/inference_optimization/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
321
+ nat/profiler/inference_optimization/experimental/concurrency_spike_analysis.py,sha256=3hFMDbfW7MKxFIhO7y35qtP5wPtLAA2ZqltlnI-OsVc,16953
322
+ nat/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=r8lKFLIWfAMxr7w6xph2xvmL1fg10Deym3MQs-x6GpI,16600
323
+ nat/registry_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
324
+ nat/registry_handlers/metadata_factory.py,sha256=MTbXa7pifVPpmLJs86jVCS1wHk5drRykNPpJuv2A_0U,2769
325
+ nat/registry_handlers/package_utils.py,sha256=kwJNWrcVLRjwKjz3PzV3exL_f5793yHYwwDoH34FdDQ,22552
326
+ nat/registry_handlers/register.py,sha256=k2gvV0htVpfMdzsRvZGnTZp17JA2Na8sO9ocMaxDSmo,902
327
+ nat/registry_handlers/registry_handler_base.py,sha256=UH7RYyD8xu_jvu3cw3K58mOV1wifylAqXKlYH4EBpAo,5827
328
+ nat/registry_handlers/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
+ nat/registry_handlers/local/local_handler.py,sha256=vd54H8Vg04swz5wyb8gkXxpkOOaS64j9kqNgnK9ANAQ,7641
330
+ nat/registry_handlers/local/register_local.py,sha256=izRbjhuEVovuKVmp_k2g-XIPfcVme49vxTcJ3-47Qw0,1357
331
+ nat/registry_handlers/pypi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
+ nat/registry_handlers/pypi/pypi_handler.py,sha256=FIGcTwyhJrfAa0Qf4lmCotdR3rXBNwY0piIptsWiseo,10175
333
+ nat/registry_handlers/pypi/register_pypi.py,sha256=1zzWUUnws1Lvy3IoStmdVCdT1RGPgiXa5GiuBirg0gw,1864
334
+ nat/registry_handlers/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
+ nat/registry_handlers/rest/register_rest.py,sha256=75YYCtuCqDEyJuWNYP6xN96aCSyBe3jgMrwbtnq0_es,2561
336
+ nat/registry_handlers/rest/rest_handler.py,sha256=2ZqkH4JkNFes3tqwRW9ZxNxM8SSNaZ4GLLIwqzLgrYo,9476
337
+ nat/registry_handlers/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
+ nat/registry_handlers/schemas/headers.py,sha256=LnVfCMNc3vRr-lRdFB8Cuv9Db5Ct-ACTapjWLaRg2os,1549
339
+ nat/registry_handlers/schemas/package.py,sha256=aAK-yRkRLvNXRi77Au2_90OdcBFcP3IQ3DxJXTfXUN0,2429
340
+ nat/registry_handlers/schemas/publish.py,sha256=g5dF8y1j_s6_A8xOyI8r_mARb6GdAHTTLOWeyAVQ-Go,2260
341
+ nat/registry_handlers/schemas/pull.py,sha256=sJwfTRYYu3qhEq_-tf3bPmKpxeoqTLp4e7AhsX11Yyg,2661
342
+ nat/registry_handlers/schemas/remove.py,sha256=BxxFfkmYxCFvbBgTyYNaRfnsq7hAphAxLQ-R7neQOOI,1390
343
+ nat/registry_handlers/schemas/search.py,sha256=eV3nxPNtLaLmX5BhssB-KSlk3p9jnHMMzHjvcalZfK0,3219
344
+ nat/registry_handlers/schemas/status.py,sha256=U4c5vWsu1SqewSRSgR9ch5xji8xPSUdzaXh1IA4tByA,1473
345
+ nat/retriever/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
+ nat/retriever/interface.py,sha256=CRvx-UBFoa_bDcHrr_kkKhgUx2fthcaH_p50s59zE6Y,1413
347
+ nat/retriever/models.py,sha256=J75RLAFCPaxFUzJHSe25s6mqKcRPcw9wZjkQeuIaNGo,2432
348
+ nat/retriever/register.py,sha256=OlHTQvef2N43vlZTANhPdgtw5M8a5b_yBN3OCkzCUys,904
349
+ nat/retriever/milvus/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
350
+ nat/retriever/milvus/register.py,sha256=FaWvUFj4rU6qcui-G459Z-bQV-QAVR3PNONT1qu7jxs,4027
351
+ nat/retriever/milvus/retriever.py,sha256=zU1Jk3AetIx7DSWwelyFYbUWAG2ouwm5-VYRVwaiPHU,9490
352
+ nat/retriever/nemo_retriever/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
353
+ nat/retriever/nemo_retriever/register.py,sha256=3XdrvEJzX2Zc8wpdm__4YYlEWBW-FK3tl_BwOWtn-4w,2893
354
+ nat/retriever/nemo_retriever/retriever.py,sha256=k9j4U3f5a_7LumndzNYgRl9r5RLg8Ugo2Uj76TRuMzo,6934
355
+ nat/runtime/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
356
+ nat/runtime/loader.py,sha256=Y5Ua1BPz7I978is2wl1DP-79FJXRNclNT3sV15d7cFk,7788
357
+ nat/runtime/runner.py,sha256=2q6DF5OPCt2kwMWq7LU95GzNf4IoKnVASZ1oo4hbiGk,6402
358
+ nat/runtime/session.py,sha256=iySstA_9_pBt9dyh94YMi01PYNbNfJ8kHlffkQuxYrU,6266
359
+ nat/runtime/user_metadata.py,sha256=ce37NRYJWnMOWk6A7VAQ1GQztjMmkhMOq-uYf2gNCwo,3692
360
+ nat/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
+ nat/settings/global_settings.py,sha256=UMS2viPRfTaPbtC8Be6JB5DFqKDSWF7JADbOeAg1s7U,12036
362
+ nat/test/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
363
+ nat/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
+ nat/tool/chat_completion.py,sha256=vL8TnsplBdHhqc5k23RaplaZLhoQelmUf6lEM7cQ7e0,3157
365
+ nat/tool/datetime_tools.py,sha256=JmYFYL-e4I9_kup7m-E1cI6XfPkrwIx45qCqKPwDx24,1664
366
+ nat/tool/document_search.py,sha256=hHTwlwX8kpji97Ze6BUP8OaQYhR1g7u1xT0Zi_oxoIs,6793
367
+ nat/tool/nvidia_rag.py,sha256=NOJywoYICQnE6XUG32fPvjN0z_hR7CDoN4_UA2rN120,4178
368
+ nat/tool/register.py,sha256=Lwl6l_eEzS8LAELxClmniNhhLluRVZFYXhsk2ocQhNg,1491
369
+ nat/tool/retriever.py,sha256=jil2alyEkf1HDx8KM7dZV6LYdkavZFqTIr8AtQzrrfg,3824
370
+ nat/tool/server_tools.py,sha256=myUDUFPJavLpg-LRvQO813i_3qrzJTWWalSwmkt5b38,3194
371
+ nat/tool/code_execution/README.md,sha256=QM8Fe8O7a9t2oDbG2d1PTIbddpGM4hhlIg2ZTYUKHY0,4019
372
+ nat/tool/code_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
373
+ nat/tool/code_execution/code_sandbox.py,sha256=AynQfmvT4mtrV5DHV-20HF8mNTDo1NX4Wj2mlpaEIfs,10159
374
+ nat/tool/code_execution/register.py,sha256=zPFzYqaQhH2B3K8iildVYY_7RKgpoRNKdAo00KmBLQI,3322
375
+ nat/tool/code_execution/test_code_execution_sandbox.py,sha256=mK8xzaz7tKYKN9CrbcLtAATvCsI_50BZqTf1dY-x9QI,14776
376
+ nat/tool/code_execution/utils.py,sha256=__W-T1kaphFKYSc2AydQW8lCdvD7zAccarvs7XVFTtI,4194
377
+ nat/tool/code_execution/local_sandbox/.gitignore,sha256=BrV-H5osDtwwIx0eieoexolpnaJvc2DQLV15j95Qtyg,19
378
+ nat/tool/code_execution/local_sandbox/Dockerfile.sandbox,sha256=CYqZ5jbBwk3ge8pg87aLjhzWERauScwya5naYq0vb5o,2316
379
+ nat/tool/code_execution/local_sandbox/__init__.py,sha256=k25Kqr_PrH4s0YCfzVzC9vaBAiu8yI428C4HX-qUcqA,615
380
+ nat/tool/code_execution/local_sandbox/local_sandbox_server.py,sha256=Zl20CYKNbCClV7Q8uEY65m-I7WiYyLKdP7DKF8_8BiE,6949
381
+ nat/tool/code_execution/local_sandbox/sandbox.requirements.txt,sha256=R86yJ6mcUhfD9_ZU-rSMdaojR6MU41hcH4pE3vAGmcE,43
382
+ nat/tool/code_execution/local_sandbox/start_local_sandbox.sh,sha256=gnPuzbneKZ61YvzaGIYSUdcyKMLuchYPti3zGLaNCZY,2055
383
+ nat/tool/github_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
+ nat/tool/github_tools/create_github_commit.py,sha256=O4EmNk_QQlflOpY5gT6oWlnY4wbzA7BnTk49D-2FbT8,6604
385
+ nat/tool/github_tools/create_github_issue.py,sha256=9jAHtKgZFGCJV4OE0Pj8sZDKr25pf7cbJ8Czt5hTaj0,3428
386
+ nat/tool/github_tools/create_github_pr.py,sha256=9nuJq9bAbqVXOyLhjO_3tS70eI_72mhNE6KRtN7PSCQ,4945
387
+ nat/tool/github_tools/get_github_file.py,sha256=tGMzrE-v16rjDoG-IbOkaS5hXe4SCb-onkTZdA-6eSg,4486
388
+ nat/tool/github_tools/get_github_issue.py,sha256=fFJFYt3mWR6CK46r6k3-3eVbAKLNh1yHRMmZU0c-4jA,6532
389
+ nat/tool/github_tools/get_github_pr.py,sha256=p4Xu-YA6L1dQ8O0e5LDzphrn5DknjttDhLeudgk7Iys,9716
390
+ nat/tool/github_tools/update_github_issue.py,sha256=fj_OAp5bSmSyj-wPAUvzfCGRBuwPyoK1kJ95Fn8XDg8,4103
391
+ nat/tool/mcp/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
392
+ nat/tool/mcp/exceptions.py,sha256=D3pGUO3hPfC4QSWZP24BceAnt1IGeIoZAWlZbIw28uA,5980
393
+ nat/tool/mcp/mcp_client.py,sha256=jdlJULJG1EGdj2CwT26x6hBatG6vz0cXsh14c_ttv20,8963
394
+ nat/tool/mcp/mcp_tool.py,sha256=gU64QcFxUesm6J-HYBz7NtYip3bhk5C_J8Z53VQJUlQ,4105
395
+ nat/tool/memory_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
396
+ nat/tool/memory_tools/add_memory_tool.py,sha256=DYaYkVlH2myRshJpzmULfzdF0wFoPCAkTBokFVmhfzU,3349
397
+ nat/tool/memory_tools/delete_memory_tool.py,sha256=EWJVgzIzLDqktY5domXph-N2U9FmybdWl4J7KM7uK4g,2532
398
+ nat/tool/memory_tools/get_memory_tool.py,sha256=pJw6Lu2wukCW3mUGx5TtBNfdmdr-wqf7DQn2yNKxJ_4,2749
399
+ nat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
400
+ nat/utils/debugging_utils.py,sha256=6M4JhbHDNDnfmSRGmHvT5IgEeWSHBore3VngdE_PMqc,1332
401
+ nat/utils/dump_distro_mapping.py,sha256=ptRVwrzhZplEWZUwwHOzyeuLj-ykkxn96t4oxUmRG28,1147
402
+ nat/utils/log_utils.py,sha256=dZLHt7qFqLlpPqMMFO9UVtSkOpMjFwz9tkmbAfOiNlg,1355
403
+ nat/utils/metadata_utils.py,sha256=BSsiB6jIWd8oEuEynJi55qCG762UuTYFaiUH0OT9HdY,2897
404
+ nat/utils/optional_imports.py,sha256=jQSVBc2fBSRw-2d6r8cEwvh5-di2EUUPakuuo9QbbwA,4039
405
+ nat/utils/producer_consumer_queue.py,sha256=AcSYkAMBxLx06A5Xdy960PP3AJ7YaSPGJ7rbN_hJsjI,6599
406
+ nat/utils/string_utils.py,sha256=71HuIzGx7rF8ocTmeoUBpnCi1Qf1yynYlNLLIKP4BVs,1415
407
+ nat/utils/type_converter.py,sha256=tO5XPbr5MPhBqbseEM2hROAk_CTcnlzibTGdOPT3MfQ,10640
408
+ nat/utils/type_utils.py,sha256=G-SYlk4BkJv4L225myUhwBY6-Z7wOgR9K49dVUtV8SA,14896
409
+ nat/utils/url_utils.py,sha256=UzDP_xaS6brWTu7vAws0B4jZyrITIK9Si3U6pZBZqDE,1028
410
+ nat/utils/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
411
+ nat/utils/data_models/schema_validator.py,sha256=IT74_H4qWSUYae8rgDK-gyBjHJGjzUmf_tVKv0ovbN0,1599
412
+ nat/utils/exception_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
+ nat/utils/exception_handlers/automatic_retries.py,sha256=Sgu6zSth3no4xsV2x-dRxWjbTnyLvDkCWP3y_PsmPFE,11963
414
+ nat/utils/exception_handlers/mcp.py,sha256=BPfcmSEeW8XVA46vm1kQEOEKTNkZarKW-PMEK-n0QvM,7625
415
+ nat/utils/exception_handlers/schemas.py,sha256=VynNMWHYqpoTfDEpU8Nyw80k04k4Q-0Xr0gFr8wAxpQ,3835
416
+ nat/utils/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
417
+ nat/utils/io/model_processing.py,sha256=bEbH_tIgZQvPlEJKVV4kye_Y9UU96W4k2mKuckGErHA,936
418
+ nat/utils/io/yaml_tools.py,sha256=OiYviq_M4gp9GnlnPxWTS1VBgVW9en3lM_YuwoWrY4o,3317
419
+ nat/utils/reactive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
+ nat/utils/reactive/observable.py,sha256=Kgh3QkSYTZsRyUID1aqkjJGXg3vSXmuJAbbYq4JoUMg,2285
421
+ nat/utils/reactive/observer.py,sha256=Q2ELgluZ2gTbiw7Uc0x59pQnRQcQdCLOA8Lov6R8Xog,2602
422
+ nat/utils/reactive/subject.py,sha256=urgPyDOOedqb15_zzfffolH6LDuFxVYPOoM-aE6FCaw,4879
423
+ nat/utils/reactive/subscription.py,sha256=68ZZdkFgQ0bMfjBhOeZIpdZOMPNbFALmXljBzSTQsWg,1701
424
+ nat/utils/reactive/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
425
+ nat/utils/reactive/base/observable_base.py,sha256=CRG8pQYOcR9-r9ZQkYNl0P99309rPTOokp72ZgYTSgk,2375
426
+ nat/utils/reactive/base/observer_base.py,sha256=UAlyAY_ky4q2t0P81RVFo2Bs_R7z5Nde55vRWqXUgz8,1875
427
+ nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
428
+ nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
429
+ nat/utils/settings/global_settings.py,sha256=Z7divbbQPFyfB7q8d5e2B7qga4qMH3CX2BLxoNhRc9k,7454
430
+ nvidia_nat-1.2.0a20250813.dist-info/licenses/LICENSE-3rd-party.txt,sha256=8o7aySJa9CBvFshPcsRdJbczzdNyDGJ8b0J67WRUQ2k,183936
431
+ nvidia_nat-1.2.0a20250813.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
432
+ nvidia_nat-1.2.0a20250813.dist-info/METADATA,sha256=V7nggiGrjgRFT2l0Ci3vqTEo7lv21UTS_EmLs7PIMyo,21635
433
+ nvidia_nat-1.2.0a20250813.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
434
+ nvidia_nat-1.2.0a20250813.dist-info/entry_points.txt,sha256=FNh4pZVSe_61s29zdks66lmXBPtsnko8KSZ4ffv7WVE,653
435
+ nvidia_nat-1.2.0a20250813.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
436
+ nvidia_nat-1.2.0a20250813.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ [console_scripts]
2
+ aiq = nat.cli.main:run_cli_aiq_compat
3
+ nat = nat.cli.main:run_cli
4
+
5
+ [nat.components]
6
+ nat_agents = nat.agent.register
7
+ nat_authentication = nat.authentication.register
8
+ nat_embedders = nat.embedder.register
9
+ nat_evaluators = nat.eval.register
10
+ nat_llms = nat.llm.register
11
+ nat_object_stores = nat.object_store.register
12
+ nat_observability = nat.observability.register
13
+ nat_retrievers = nat.retriever.register
14
+ nat_test_time_compute = nat.experimental.test_time_compute.register
15
+ nat_tools = nat.tool.register
16
+
17
+ [nat.front_ends]
18
+ nat_front_ends = nat.front_ends.register
19
+
20
+ [nat.registry_handlers]
21
+ nat_registry_handlers = nat.registry_handlers.register