nvidia-nat 1.2.0rc5__py3-none-any.whl → 1.2.0rc7__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 (441) hide show
  1. {aiq → nat}/agent/react_agent/agent.py +12 -12
  2. {aiq → nat}/agent/react_agent/register.py +20 -20
  3. {aiq → nat}/agent/reasoning_agent/reasoning_agent.py +14 -14
  4. {aiq → nat}/agent/rewoo_agent/agent.py +7 -7
  5. {aiq → nat}/agent/rewoo_agent/prompt.py +11 -12
  6. {aiq → nat}/agent/rewoo_agent/register.py +47 -49
  7. {aiq → nat}/agent/tool_calling_agent/agent.py +4 -4
  8. {aiq → nat}/agent/tool_calling_agent/register.py +8 -8
  9. {aiq → nat}/authentication/api_key/api_key_auth_provider.py +6 -6
  10. {aiq → nat}/authentication/api_key/api_key_auth_provider_config.py +5 -5
  11. {aiq → nat}/authentication/api_key/register.py +4 -4
  12. {aiq → nat}/authentication/http_basic_auth/http_basic_auth_provider.py +10 -10
  13. {aiq → nat}/authentication/http_basic_auth/register.py +4 -4
  14. {aiq → nat}/authentication/interfaces.py +6 -6
  15. {aiq → nat}/authentication/oauth2/oauth2_auth_code_flow_provider.py +11 -11
  16. {aiq → nat}/authentication/oauth2/oauth2_auth_code_flow_provider_config.py +1 -1
  17. {aiq → nat}/authentication/oauth2/register.py +4 -4
  18. {aiq → nat}/authentication/register.py +3 -3
  19. {aiq → nat}/builder/builder.py +30 -30
  20. {aiq → nat}/builder/component_utils.py +23 -23
  21. {aiq → nat}/builder/context.py +35 -29
  22. {aiq → nat}/builder/embedder.py +1 -1
  23. {aiq → nat}/builder/eval_builder.py +13 -13
  24. {aiq → nat}/builder/evaluator.py +3 -3
  25. {aiq → nat}/builder/front_end.py +11 -11
  26. {aiq → nat}/builder/function.py +8 -8
  27. {aiq → nat}/builder/function_base.py +6 -6
  28. {aiq → nat}/builder/function_info.py +3 -3
  29. {aiq → nat}/builder/intermediate_step_manager.py +13 -13
  30. {aiq → nat}/builder/llm.py +1 -1
  31. {aiq → nat}/builder/retriever.py +1 -1
  32. {aiq → nat}/builder/user_interaction_manager.py +14 -10
  33. {aiq → nat}/builder/workflow.py +25 -25
  34. {aiq → nat}/builder/workflow_builder.py +86 -86
  35. {aiq → nat}/cli/cli_utils/config_override.py +2 -2
  36. {aiq → nat}/cli/cli_utils/validation.py +4 -4
  37. {aiq → nat}/cli/commands/configure/channel/add.py +2 -2
  38. {aiq → nat}/cli/commands/configure/channel/channel.py +4 -6
  39. {aiq → nat}/cli/commands/configure/channel/remove.py +2 -2
  40. {aiq → nat}/cli/commands/configure/channel/update.py +2 -2
  41. {aiq → nat}/cli/commands/configure/configure.py +3 -3
  42. {aiq → nat}/cli/commands/evaluate.py +3 -3
  43. {aiq → nat}/cli/commands/info/info.py +5 -7
  44. {aiq → nat}/cli/commands/info/list_channels.py +1 -1
  45. {aiq → nat}/cli/commands/info/list_components.py +14 -14
  46. {aiq → nat}/cli/commands/info/list_mcp.py +106 -15
  47. {aiq → nat}/cli/commands/registry/publish.py +9 -9
  48. {aiq → nat}/cli/commands/registry/pull.py +10 -10
  49. {aiq → nat}/cli/commands/registry/registry.py +5 -7
  50. {aiq → nat}/cli/commands/registry/remove.py +8 -8
  51. {aiq → nat}/cli/commands/registry/search.py +15 -15
  52. {aiq → nat}/cli/commands/sizing/calc.py +3 -3
  53. {aiq → nat}/cli/commands/start.py +15 -15
  54. {aiq → nat}/cli/commands/uninstall.py +5 -5
  55. {aiq → nat}/cli/commands/validate.py +1 -1
  56. {aiq → nat}/cli/commands/workflow/templates/pyproject.toml.j2 +4 -4
  57. {aiq → nat}/cli/commands/workflow/templates/workflow.py.j2 +4 -4
  58. {aiq → nat}/cli/commands/workflow/workflow.py +3 -3
  59. {aiq → nat}/cli/commands/workflow/workflow_commands.py +15 -11
  60. {aiq → nat}/cli/entrypoint.py +6 -6
  61. {aiq → nat}/cli/main.py +15 -2
  62. {aiq → nat}/cli/register_workflow.py +70 -70
  63. {aiq → nat}/cli/type_registry.py +82 -82
  64. {aiq → nat}/data_models/api_server.py +121 -99
  65. {aiq → nat}/data_models/authentication.py +2 -2
  66. {aiq → nat}/data_models/component.py +5 -1
  67. {aiq → nat}/data_models/component_ref.py +12 -12
  68. {aiq → nat}/data_models/config.py +17 -13
  69. {aiq → nat}/data_models/dataset_handler.py +58 -12
  70. {aiq → nat}/data_models/discovery_metadata.py +36 -66
  71. {aiq → nat}/data_models/evaluate.py +9 -9
  72. {aiq → nat}/data_models/intermediate_step.py +7 -7
  73. {aiq → nat}/data_models/retriever.py +2 -2
  74. {aiq → nat}/data_models/span.py +10 -7
  75. {aiq → nat}/data_models/step_adaptor.py +1 -1
  76. {aiq → nat}/data_models/telemetry_exporter.py +2 -2
  77. {aiq → nat}/embedder/nim_embedder.py +5 -5
  78. {aiq → nat}/embedder/openai_embedder.py +5 -5
  79. {aiq/retriever → nat/embedder}/register.py +2 -2
  80. {aiq → nat}/eval/config.py +4 -4
  81. {aiq → nat}/eval/dataset_handler/dataset_downloader.py +1 -1
  82. {aiq → nat}/eval/dataset_handler/dataset_filter.py +1 -1
  83. {aiq → nat}/eval/dataset_handler/dataset_handler.py +127 -14
  84. {aiq → nat}/eval/evaluate.py +38 -34
  85. {aiq → nat}/eval/evaluator/base_evaluator.py +9 -5
  86. {aiq → nat}/eval/evaluator/evaluator_model.py +4 -4
  87. {aiq → nat}/eval/intermediate_step_adapter.py +2 -2
  88. {aiq → nat}/eval/rag_evaluator/evaluate.py +8 -8
  89. {aiq → nat}/eval/rag_evaluator/register.py +7 -7
  90. {aiq → nat}/eval/remote_workflow.py +8 -8
  91. {aiq → nat}/eval/runners/config.py +2 -2
  92. {aiq → nat}/eval/runners/multi_eval_runner.py +4 -4
  93. {aiq → nat}/eval/runtime_event_subscriber.py +3 -3
  94. {aiq → nat}/eval/swe_bench_evaluator/evaluate.py +6 -6
  95. {aiq → nat}/eval/swe_bench_evaluator/register.py +4 -4
  96. {aiq → nat}/eval/trajectory_evaluator/evaluate.py +5 -5
  97. {aiq → nat}/eval/trajectory_evaluator/register.py +5 -5
  98. {aiq → nat}/eval/tunable_rag_evaluator/evaluate.py +3 -3
  99. {aiq → nat}/eval/tunable_rag_evaluator/register.py +6 -6
  100. {aiq → nat}/eval/utils/output_uploader.py +1 -1
  101. {aiq → nat}/eval/utils/weave_eval.py +6 -6
  102. {aiq → nat}/experimental/decorators/experimental_warning_decorator.py +6 -2
  103. {aiq → nat}/experimental/test_time_compute/editing/iterative_plan_refinement_editor.py +10 -10
  104. {aiq → nat}/experimental/test_time_compute/editing/llm_as_a_judge_editor.py +10 -10
  105. {aiq → nat}/experimental/test_time_compute/editing/motivation_aware_summarization.py +10 -10
  106. {aiq → nat}/experimental/test_time_compute/functions/execute_score_select_function.py +10 -10
  107. {aiq → nat}/experimental/test_time_compute/functions/plan_select_execute_function.py +17 -17
  108. aiq/experimental/test_time_compute/functions/its_tool_orchestration_function.py → nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py +12 -12
  109. aiq/experimental/test_time_compute/functions/its_tool_wrapper_function.py → nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py +10 -10
  110. {aiq → nat}/experimental/test_time_compute/models/editor_config.py +2 -2
  111. {aiq → nat}/experimental/test_time_compute/models/scoring_config.py +2 -2
  112. {aiq → nat}/experimental/test_time_compute/models/search_config.py +2 -2
  113. {aiq → nat}/experimental/test_time_compute/models/selection_config.py +2 -2
  114. {aiq → nat}/experimental/test_time_compute/models/strategy_base.py +4 -4
  115. {aiq → nat}/experimental/test_time_compute/register.py +2 -2
  116. {aiq → nat}/experimental/test_time_compute/scoring/llm_based_agent_scorer.py +11 -11
  117. {aiq → nat}/experimental/test_time_compute/scoring/llm_based_plan_scorer.py +11 -11
  118. {aiq → nat}/experimental/test_time_compute/scoring/motivation_aware_scorer.py +10 -10
  119. {aiq → nat}/experimental/test_time_compute/search/multi_llm_planner.py +10 -10
  120. {aiq → nat}/experimental/test_time_compute/search/multi_query_retrieval_search.py +10 -10
  121. {aiq → nat}/experimental/test_time_compute/search/single_shot_multi_plan_planner.py +11 -11
  122. {aiq → nat}/experimental/test_time_compute/selection/best_of_n_selector.py +7 -7
  123. {aiq → nat}/experimental/test_time_compute/selection/llm_based_agent_output_selector.py +11 -11
  124. {aiq → nat}/experimental/test_time_compute/selection/llm_based_output_merging_selector.py +11 -11
  125. {aiq → nat}/experimental/test_time_compute/selection/llm_based_plan_selector.py +11 -11
  126. {aiq → nat}/experimental/test_time_compute/selection/threshold_selector.py +7 -7
  127. {aiq → nat}/front_ends/console/authentication_flow_handler.py +6 -6
  128. {aiq → nat}/front_ends/console/console_front_end_config.py +2 -2
  129. {aiq → nat}/front_ends/console/console_front_end_plugin.py +9 -9
  130. {aiq → nat}/front_ends/console/register.py +5 -5
  131. {aiq → nat}/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py +4 -4
  132. {aiq → nat}/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py +6 -6
  133. {aiq → nat}/front_ends/fastapi/fastapi_front_end_config.py +22 -15
  134. {aiq → nat}/front_ends/fastapi/fastapi_front_end_plugin.py +10 -10
  135. {aiq → nat}/front_ends/fastapi/fastapi_front_end_plugin_worker.py +110 -115
  136. {aiq → nat}/front_ends/fastapi/intermediate_steps_subscriber.py +10 -10
  137. {aiq → nat}/front_ends/fastapi/main.py +8 -8
  138. {aiq → nat}/front_ends/fastapi/message_handler.py +58 -36
  139. {aiq → nat}/front_ends/fastapi/message_validator.py +55 -48
  140. {aiq → nat}/front_ends/fastapi/register.py +5 -5
  141. {aiq → nat}/front_ends/fastapi/response_helpers.py +26 -26
  142. {aiq → nat}/front_ends/fastapi/step_adaptor.py +35 -37
  143. {aiq → nat}/front_ends/mcp/mcp_front_end_config.py +12 -8
  144. nat/front_ends/mcp/mcp_front_end_plugin.py +81 -0
  145. nat/front_ends/mcp/mcp_front_end_plugin_worker.py +143 -0
  146. {aiq → nat}/front_ends/mcp/register.py +5 -5
  147. {aiq → nat}/front_ends/mcp/tool_converter.py +20 -21
  148. {aiq → nat}/front_ends/simple_base/simple_front_end_plugin_base.py +6 -6
  149. {aiq → nat}/llm/aws_bedrock_llm.py +5 -5
  150. {aiq → nat}/llm/nim_llm.py +5 -5
  151. {aiq → nat}/llm/openai_llm.py +5 -5
  152. {aiq → nat}/memory/__init__.py +2 -2
  153. nat/meta/pypi.md +58 -0
  154. {aiq → nat}/object_store/__init__.py +2 -2
  155. {aiq → nat}/object_store/in_memory_object_store.py +6 -6
  156. {aiq → nat}/observability/exporter/base_exporter.py +9 -9
  157. {aiq → nat}/observability/exporter/exporter.py +1 -1
  158. {aiq → nat}/observability/exporter/file_exporter.py +6 -6
  159. {aiq → nat}/observability/exporter/processing_exporter.py +9 -9
  160. {aiq → nat}/observability/exporter/raw_exporter.py +4 -4
  161. {aiq → nat}/observability/exporter/span_exporter.py +57 -34
  162. {aiq → nat}/observability/exporter_manager.py +6 -6
  163. {aiq → nat}/observability/mixin/file_mixin.py +2 -2
  164. {aiq → nat}/observability/processor/batching_processor.py +1 -1
  165. {aiq → nat}/observability/processor/callback_processor.py +1 -1
  166. {aiq → nat}/observability/processor/intermediate_step_serializer.py +4 -4
  167. {aiq → nat}/observability/processor/processor.py +1 -1
  168. {aiq → nat}/observability/register.py +7 -7
  169. {aiq → nat}/profiler/calc/calc_runner.py +18 -18
  170. {aiq → nat}/profiler/calc/calculations.py +3 -3
  171. {aiq → nat}/profiler/calc/plot.py +2 -2
  172. {aiq → nat}/profiler/callbacks/agno_callback_handler.py +14 -14
  173. {aiq → nat}/profiler/callbacks/langchain_callback_handler.py +11 -11
  174. {aiq → nat}/profiler/callbacks/llama_index_callback_handler.py +12 -12
  175. {aiq → nat}/profiler/callbacks/semantic_kernel_callback_handler.py +11 -11
  176. {aiq → nat}/profiler/data_models.py +2 -2
  177. {aiq → nat}/profiler/decorators/framework_wrapper.py +6 -6
  178. {aiq → nat}/profiler/decorators/function_tracking.py +10 -10
  179. {aiq → nat}/profiler/forecasting/model_trainer.py +5 -5
  180. {aiq → nat}/profiler/forecasting/models/linear_model.py +5 -4
  181. {aiq → nat}/profiler/forecasting/models/random_forest_regressor.py +5 -4
  182. {aiq → nat}/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py +7 -7
  183. {aiq → nat}/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py +4 -4
  184. {aiq → nat}/profiler/inference_optimization/experimental/concurrency_spike_analysis.py +6 -6
  185. {aiq → nat}/profiler/inference_optimization/experimental/prefix_span_analysis.py +6 -6
  186. {aiq → nat}/profiler/inference_optimization/llm_metrics.py +2 -2
  187. {aiq → nat}/profiler/inference_optimization/prompt_caching.py +5 -5
  188. {aiq → nat}/profiler/inference_optimization/token_uniqueness.py +4 -4
  189. {aiq → nat}/profiler/inference_optimization/workflow_runtimes.py +3 -3
  190. {aiq → nat}/profiler/intermediate_property_adapter.py +3 -3
  191. {aiq → nat}/profiler/profile_runner.py +17 -17
  192. {aiq → nat}/profiler/utils.py +4 -4
  193. {aiq → nat}/registry_handlers/local/local_handler.py +19 -19
  194. {aiq → nat}/registry_handlers/local/register_local.py +4 -4
  195. {aiq → nat}/registry_handlers/metadata_factory.py +7 -7
  196. {aiq → nat}/registry_handlers/package_utils.py +37 -33
  197. {aiq → nat}/registry_handlers/pypi/pypi_handler.py +21 -21
  198. {aiq → nat}/registry_handlers/pypi/register_pypi.py +6 -6
  199. {aiq → nat}/registry_handlers/registry_handler_base.py +21 -21
  200. {aiq → nat}/registry_handlers/rest/register_rest.py +7 -7
  201. {aiq → nat}/registry_handlers/rest/rest_handler.py +19 -19
  202. {aiq → nat}/registry_handlers/schemas/package.py +3 -3
  203. {aiq → nat}/registry_handlers/schemas/publish.py +17 -12
  204. {aiq → nat}/registry_handlers/schemas/pull.py +6 -6
  205. {aiq → nat}/registry_handlers/schemas/remove.py +2 -2
  206. {aiq → nat}/registry_handlers/schemas/search.py +11 -11
  207. {aiq → nat}/retriever/interface.py +6 -2
  208. {aiq → nat}/retriever/milvus/register.py +7 -7
  209. {aiq → nat}/retriever/milvus/retriever.py +8 -8
  210. {aiq → nat}/retriever/models.py +10 -7
  211. {aiq → nat}/retriever/nemo_retriever/register.py +6 -6
  212. {aiq → nat}/retriever/nemo_retriever/retriever.py +10 -10
  213. {aiq/embedder → nat/retriever}/register.py +2 -4
  214. {aiq → nat}/runtime/loader.py +38 -33
  215. {aiq → nat}/runtime/runner.py +30 -25
  216. {aiq → nat}/runtime/session.py +19 -15
  217. {aiq → nat}/runtime/user_metadata.py +1 -1
  218. {aiq → nat}/settings/global_settings.py +11 -11
  219. {aiq → nat}/tool/chat_completion.py +6 -6
  220. {aiq → nat}/tool/code_execution/README.md +2 -2
  221. {aiq → nat}/tool/code_execution/code_sandbox.py +1 -1
  222. {aiq → nat}/tool/code_execution/register.py +5 -5
  223. {aiq → nat}/tool/code_execution/test_code_execution_sandbox.py +1 -1
  224. {aiq → nat}/tool/datetime_tools.py +4 -4
  225. {aiq → nat}/tool/document_search.py +6 -6
  226. {aiq → nat}/tool/github_tools/create_github_commit.py +4 -4
  227. {aiq → nat}/tool/github_tools/create_github_issue.py +4 -4
  228. {aiq → nat}/tool/github_tools/create_github_pr.py +4 -4
  229. {aiq → nat}/tool/github_tools/get_github_file.py +4 -4
  230. {aiq → nat}/tool/github_tools/get_github_issue.py +4 -4
  231. {aiq → nat}/tool/github_tools/get_github_pr.py +4 -4
  232. {aiq → nat}/tool/github_tools/update_github_issue.py +4 -4
  233. {aiq → nat}/tool/mcp/exceptions.py +1 -1
  234. {aiq → nat}/tool/mcp/mcp_client.py +2 -2
  235. {aiq → nat}/tool/mcp/mcp_tool.py +7 -7
  236. {aiq → nat}/tool/memory_tools/add_memory_tool.py +6 -6
  237. {aiq → nat}/tool/memory_tools/delete_memory_tool.py +6 -6
  238. {aiq → nat}/tool/memory_tools/get_memory_tool.py +6 -6
  239. {aiq → nat}/tool/nvidia_rag.py +4 -4
  240. {aiq → nat}/tool/retriever.py +20 -15
  241. {aiq → nat}/tool/server_tools.py +16 -16
  242. {aiq → nat}/utils/dump_distro_mapping.py +2 -2
  243. {aiq → nat}/utils/exception_handlers/mcp.py +8 -8
  244. {aiq → nat}/utils/io/yaml_tools.py +1 -1
  245. {aiq → nat}/utils/metadata_utils.py +2 -2
  246. {aiq → nat}/utils/reactive/base/observable_base.py +2 -2
  247. {aiq → nat}/utils/reactive/base/subject_base.py +1 -1
  248. {aiq → nat}/utils/reactive/observable.py +5 -5
  249. {aiq → nat}/utils/reactive/observer.py +1 -1
  250. {aiq → nat}/utils/reactive/subject.py +4 -4
  251. {aiq → nat}/utils/reactive/subscription.py +1 -1
  252. {aiq → nat}/utils/settings/global_settings.py +4 -4
  253. {aiq → nat}/utils/type_converter.py +1 -1
  254. {nvidia_nat-1.2.0rc5.dist-info → nvidia_nat-1.2.0rc7.dist-info}/METADATA +37 -37
  255. nvidia_nat-1.2.0rc7.dist-info/RECORD +434 -0
  256. nvidia_nat-1.2.0rc7.dist-info/entry_points.txt +21 -0
  257. nvidia_nat-1.2.0rc7.dist-info/top_level.txt +1 -0
  258. aiq/embedder/langchain_client.py +0 -41
  259. aiq/front_ends/mcp/mcp_front_end_plugin.py +0 -93
  260. aiq/meta/module_to_distro.json +0 -3
  261. aiq/meta/pypi.md +0 -58
  262. nvidia_nat-1.2.0rc5.dist-info/RECORD +0 -435
  263. nvidia_nat-1.2.0rc5.dist-info/entry_points.txt +0 -20
  264. nvidia_nat-1.2.0rc5.dist-info/top_level.txt +0 -1
  265. {aiq → nat}/agent/__init__.py +0 -0
  266. {aiq → nat}/agent/base.py +0 -0
  267. {aiq → nat}/agent/dual_node.py +0 -0
  268. {aiq → nat}/agent/react_agent/__init__.py +0 -0
  269. {aiq → nat}/agent/react_agent/output_parser.py +0 -0
  270. {aiq → nat}/agent/react_agent/prompt.py +0 -0
  271. {aiq → nat}/agent/reasoning_agent/__init__.py +0 -0
  272. {aiq → nat}/agent/register.py +0 -0
  273. {aiq → nat}/agent/rewoo_agent/__init__.py +0 -0
  274. {aiq → nat}/agent/tool_calling_agent/__init__.py +0 -0
  275. {aiq → nat}/authentication/__init__.py +0 -0
  276. {aiq → nat}/authentication/api_key/__init__.py +0 -0
  277. {aiq → nat}/authentication/exceptions/__init__.py +0 -0
  278. {aiq → nat}/authentication/exceptions/api_key_exceptions.py +0 -0
  279. {aiq → nat}/authentication/http_basic_auth/__init__.py +0 -0
  280. {aiq → nat}/authentication/oauth2/__init__.py +0 -0
  281. {aiq → nat}/builder/__init__.py +0 -0
  282. {aiq → nat}/builder/framework_enum.py +0 -0
  283. {aiq → nat}/cli/__init__.py +0 -0
  284. {aiq → nat}/cli/cli_utils/__init__.py +0 -0
  285. {aiq → nat}/cli/commands/__init__.py +0 -0
  286. {aiq → nat}/cli/commands/configure/__init__.py +0 -0
  287. {aiq → nat}/cli/commands/configure/channel/__init__.py +0 -0
  288. {aiq → nat}/cli/commands/info/__init__.py +0 -0
  289. {aiq → nat}/cli/commands/registry/__init__.py +0 -0
  290. {aiq → nat}/cli/commands/sizing/__init__.py +0 -0
  291. {aiq → nat}/cli/commands/sizing/sizing.py +0 -0
  292. {aiq → nat}/cli/commands/workflow/__init__.py +0 -0
  293. {aiq → nat}/cli/commands/workflow/templates/__init__.py.j2 +0 -0
  294. {aiq → nat}/cli/commands/workflow/templates/config.yml.j2 +0 -0
  295. {aiq → nat}/cli/commands/workflow/templates/register.py.j2 +0 -0
  296. {aiq → nat}/data_models/__init__.py +0 -0
  297. {aiq → nat}/data_models/common.py +0 -0
  298. {aiq → nat}/data_models/embedder.py +0 -0
  299. {aiq → nat}/data_models/evaluator.py +0 -0
  300. {aiq → nat}/data_models/front_end.py +0 -0
  301. {aiq → nat}/data_models/function.py +0 -0
  302. {aiq → nat}/data_models/function_dependencies.py +0 -0
  303. {aiq → nat}/data_models/interactive.py +0 -0
  304. {aiq → nat}/data_models/invocation_node.py +0 -0
  305. {aiq → nat}/data_models/llm.py +0 -0
  306. {aiq → nat}/data_models/logging.py +0 -0
  307. {aiq → nat}/data_models/memory.py +0 -0
  308. {aiq → nat}/data_models/object_store.py +0 -0
  309. {aiq → nat}/data_models/profiler.py +0 -0
  310. {aiq → nat}/data_models/registry_handler.py +0 -0
  311. {aiq → nat}/data_models/retry_mixin.py +0 -0
  312. {aiq → nat}/data_models/streaming.py +0 -0
  313. {aiq → nat}/data_models/swe_bench_model.py +0 -0
  314. {aiq → nat}/data_models/ttc_strategy.py +0 -0
  315. {aiq → nat}/embedder/__init__.py +0 -0
  316. {aiq → nat}/eval/__init__.py +0 -0
  317. {aiq → nat}/eval/dataset_handler/__init__.py +0 -0
  318. {aiq → nat}/eval/evaluator/__init__.py +0 -0
  319. {aiq → nat}/eval/rag_evaluator/__init__.py +0 -0
  320. {aiq → nat}/eval/register.py +0 -0
  321. {aiq → nat}/eval/runners/__init__.py +0 -0
  322. {aiq → nat}/eval/swe_bench_evaluator/__init__.py +0 -0
  323. {aiq → nat}/eval/trajectory_evaluator/__init__.py +0 -0
  324. {aiq → nat}/eval/tunable_rag_evaluator/__init__.py +0 -0
  325. {aiq → nat}/eval/usage_stats.py +0 -0
  326. {aiq → nat}/eval/utils/__init__.py +0 -0
  327. {aiq → nat}/eval/utils/tqdm_position_registry.py +0 -0
  328. {aiq → nat}/experimental/__init__.py +0 -0
  329. {aiq → nat}/experimental/decorators/__init__.py +0 -0
  330. {aiq → nat}/experimental/test_time_compute/__init__.py +0 -0
  331. {aiq → nat}/experimental/test_time_compute/editing/__init__.py +0 -0
  332. {aiq → nat}/experimental/test_time_compute/functions/__init__.py +0 -0
  333. {aiq → nat}/experimental/test_time_compute/models/__init__.py +0 -0
  334. {aiq → nat}/experimental/test_time_compute/models/stage_enums.py +0 -0
  335. {aiq → nat}/experimental/test_time_compute/models/tool_use_config.py +0 -0
  336. {aiq → nat}/experimental/test_time_compute/models/ttc_item.py +0 -0
  337. {aiq → nat}/experimental/test_time_compute/scoring/__init__.py +0 -0
  338. {aiq → nat}/experimental/test_time_compute/search/__init__.py +0 -0
  339. {aiq → nat}/experimental/test_time_compute/selection/__init__.py +0 -0
  340. {aiq → nat}/front_ends/__init__.py +0 -0
  341. {aiq → nat}/front_ends/console/__init__.py +0 -0
  342. {aiq → nat}/front_ends/cron/__init__.py +0 -0
  343. {aiq → nat}/front_ends/fastapi/__init__.py +0 -0
  344. {aiq → nat}/front_ends/fastapi/auth_flow_handlers/__init__.py +0 -0
  345. {aiq → nat}/front_ends/fastapi/fastapi_front_end_controller.py +0 -0
  346. {aiq → nat}/front_ends/fastapi/html_snippets/__init__.py +0 -0
  347. {aiq → nat}/front_ends/fastapi/html_snippets/auth_code_grant_success.py +0 -0
  348. {aiq → nat}/front_ends/fastapi/job_store.py +0 -0
  349. {aiq → nat}/front_ends/mcp/__init__.py +0 -0
  350. {aiq → nat}/front_ends/register.py +0 -0
  351. {aiq → nat}/front_ends/simple_base/__init__.py +0 -0
  352. {aiq → nat}/llm/__init__.py +0 -0
  353. {aiq → nat}/llm/register.py +0 -0
  354. {aiq → nat}/llm/utils/__init__.py +0 -0
  355. {aiq → nat}/llm/utils/env_config_value.py +0 -0
  356. {aiq → nat}/llm/utils/error.py +0 -0
  357. {aiq → nat}/memory/interfaces.py +0 -0
  358. {aiq → nat}/memory/models.py +0 -0
  359. {aiq → nat}/object_store/interfaces.py +0 -0
  360. {aiq → nat}/object_store/models.py +0 -0
  361. {aiq → nat}/object_store/register.py +0 -0
  362. {aiq → nat}/observability/__init__.py +0 -0
  363. {aiq → nat}/observability/exporter/__init__.py +0 -0
  364. {aiq → nat}/observability/mixin/__init__.py +0 -0
  365. {aiq → nat}/observability/mixin/batch_config_mixin.py +0 -0
  366. {aiq → nat}/observability/mixin/collector_config_mixin.py +0 -0
  367. {aiq → nat}/observability/mixin/file_mode.py +0 -0
  368. {aiq → nat}/observability/mixin/resource_conflict_mixin.py +0 -0
  369. {aiq → nat}/observability/mixin/serialize_mixin.py +0 -0
  370. {aiq → nat}/observability/mixin/type_introspection_mixin.py +0 -0
  371. {aiq → nat}/observability/processor/__init__.py +0 -0
  372. {aiq → nat}/observability/utils/__init__.py +0 -0
  373. {aiq → nat}/observability/utils/dict_utils.py +0 -0
  374. {aiq → nat}/observability/utils/time_utils.py +0 -0
  375. {aiq → nat}/plugins/.namespace +0 -0
  376. {aiq → nat}/profiler/__init__.py +0 -0
  377. {aiq → nat}/profiler/calc/__init__.py +0 -0
  378. {aiq → nat}/profiler/calc/data_models.py +0 -0
  379. {aiq → nat}/profiler/callbacks/__init__.py +0 -0
  380. {aiq → nat}/profiler/callbacks/base_callback_class.py +0 -0
  381. {aiq → nat}/profiler/callbacks/token_usage_base_model.py +0 -0
  382. {aiq → nat}/profiler/data_frame_row.py +0 -0
  383. {aiq → nat}/profiler/decorators/__init__.py +0 -0
  384. {aiq → nat}/profiler/forecasting/__init__.py +0 -0
  385. {aiq → nat}/profiler/forecasting/config.py +0 -0
  386. {aiq → nat}/profiler/forecasting/models/__init__.py +0 -0
  387. {aiq → nat}/profiler/forecasting/models/forecasting_base_model.py +0 -0
  388. {aiq → nat}/profiler/inference_metrics_model.py +0 -0
  389. {aiq → nat}/profiler/inference_optimization/__init__.py +0 -0
  390. {aiq → nat}/profiler/inference_optimization/bottleneck_analysis/__init__.py +0 -0
  391. {aiq → nat}/profiler/inference_optimization/data_models.py +0 -0
  392. {aiq → nat}/profiler/inference_optimization/experimental/__init__.py +0 -0
  393. {aiq → nat}/registry_handlers/__init__.py +0 -0
  394. {aiq → nat}/registry_handlers/local/__init__.py +0 -0
  395. {aiq → nat}/registry_handlers/pypi/__init__.py +0 -0
  396. {aiq → nat}/registry_handlers/register.py +0 -0
  397. {aiq → nat}/registry_handlers/rest/__init__.py +0 -0
  398. {aiq → nat}/registry_handlers/schemas/__init__.py +0 -0
  399. {aiq → nat}/registry_handlers/schemas/headers.py +0 -0
  400. {aiq → nat}/registry_handlers/schemas/status.py +0 -0
  401. {aiq → nat}/retriever/__init__.py +0 -0
  402. {aiq → nat}/retriever/milvus/__init__.py +0 -0
  403. {aiq → nat}/retriever/nemo_retriever/__init__.py +0 -0
  404. {aiq → nat}/runtime/__init__.py +0 -0
  405. {aiq → nat}/settings/__init__.py +0 -0
  406. {aiq → nat}/test/.namespace +0 -0
  407. {aiq → nat}/tool/__init__.py +0 -0
  408. {aiq → nat}/tool/code_execution/__init__.py +0 -0
  409. {aiq → nat}/tool/code_execution/local_sandbox/.gitignore +0 -0
  410. {aiq → nat}/tool/code_execution/local_sandbox/Dockerfile.sandbox +0 -0
  411. {aiq → nat}/tool/code_execution/local_sandbox/__init__.py +0 -0
  412. {aiq → nat}/tool/code_execution/local_sandbox/local_sandbox_server.py +0 -0
  413. {aiq → nat}/tool/code_execution/local_sandbox/sandbox.requirements.txt +0 -0
  414. {aiq → nat}/tool/code_execution/local_sandbox/start_local_sandbox.sh +0 -0
  415. {aiq → nat}/tool/code_execution/utils.py +0 -0
  416. {aiq → nat}/tool/github_tools/__init__.py +0 -0
  417. {aiq → nat}/tool/mcp/__init__.py +0 -0
  418. {aiq → nat}/tool/memory_tools/__init__.py +0 -0
  419. {aiq → nat}/tool/register.py +0 -0
  420. {aiq → nat}/utils/__init__.py +0 -0
  421. {aiq → nat}/utils/data_models/__init__.py +0 -0
  422. {aiq → nat}/utils/data_models/schema_validator.py +0 -0
  423. {aiq → nat}/utils/debugging_utils.py +0 -0
  424. {aiq → nat}/utils/exception_handlers/__init__.py +0 -0
  425. {aiq → nat}/utils/exception_handlers/automatic_retries.py +0 -0
  426. {aiq → nat}/utils/exception_handlers/schemas.py +0 -0
  427. {aiq → nat}/utils/io/__init__.py +0 -0
  428. {aiq → nat}/utils/io/model_processing.py +0 -0
  429. {aiq → nat}/utils/log_utils.py +0 -0
  430. {aiq → nat}/utils/optional_imports.py +0 -0
  431. {aiq → nat}/utils/producer_consumer_queue.py +0 -0
  432. {aiq → nat}/utils/reactive/__init__.py +0 -0
  433. {aiq → nat}/utils/reactive/base/__init__.py +0 -0
  434. {aiq → nat}/utils/reactive/base/observer_base.py +0 -0
  435. {aiq → nat}/utils/settings/__init__.py +0 -0
  436. {aiq → nat}/utils/string_utils.py +0 -0
  437. {aiq → nat}/utils/type_utils.py +0 -0
  438. {aiq → nat}/utils/url_utils.py +0 -0
  439. {nvidia_nat-1.2.0rc5.dist-info → nvidia_nat-1.2.0rc7.dist-info}/WHEEL +0 -0
  440. {nvidia_nat-1.2.0rc5.dist-info → nvidia_nat-1.2.0rc7.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
  441. {nvidia_nat-1.2.0rc5.dist-info → nvidia_nat-1.2.0rc7.dist-info}/licenses/LICENSE.md +0 -0
@@ -0,0 +1,434 @@
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=g3xkVWqr1p26Gjk4OJF_kolV6WBtS5GJkLvFHG7e7-I,8099
10
+ nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ nat/agent/reasoning_agent/reasoning_agent.py,sha256=2NDDHeesM2s2PnJfRsv2OTYjeajR1rYUVDvJZLzWGAQ,9434
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=yRDaH8qMVBVchz--rZIJt8dP3GgFi4akVpclt-q1lHw,3673
15
+ nat/agent/rewoo_agent/register.py,sha256=6lZVKi7dWC9324mqAMvsO4pLAAz1Vv914NlhFWvAYwk,8411
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=FAYM-QXVUn3a_8bmAZ7kP-lmN_BrLW8mo6krZJ3e0ME,3314
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=vmukbeI32aK6Ulc-yoaFHszr6BqmCvZHIpKr4-arMhs,3442
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=iFp_kImFwDrweFHGTg4n9RGybH3-wRSJkyh-FPOxwDA,4538
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=Gnk0G9tIWEAZ8jD8LrDIYKf3d3OBh-eqgPimJcFmiUk,13575
38
+ nat/builder/context.py,sha256=Nfbn4BDzkLDt7FUkq54B7-_0V8qmzxHoLCO5KZs9NWQ,11025
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=mHooS1M7mVo1swSgbYoqbzQENXkuG7_Es9q4gFiuL8E,2175
44
+ nat/builder/function.py,sha256=XTktk98Gl2Z0Nt0Zp60gbIQBNXR9AoEr8HPwyF8LE5c,13173
45
+ nat/builder/function_base.py,sha256=KnL8z_-vusiKdEkB9M1QW2Zc_RA1w8GIVrDQ09T4WvU,13248
46
+ nat/builder/function_info.py,sha256=VdWGWWfJEdKa83kmDpXzlIcSJkEdFFMXkozmbuZro-M,25258
47
+ nat/builder/intermediate_step_manager.py,sha256=iOuMLWTaES0J0XzaLxhTUqFvuoCAChJu3V69T43K0k0,7599
48
+ 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=jvDllGmSvrPRQSi7B71jf3Erx3CnQHHcZkN6eo2oJ4M,3051
51
+ nat/builder/workflow.py,sha256=xYthDJRU_8PeF38DHVuqOROjSGxvoKCw-rY32b1e0k8,6361
52
+ nat/builder/workflow_builder.py,sha256=58F6ucTY5isKzMtNxAx3cxWPCqPFyQPOoVAkeKqtJHc,46220
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=KVZvAkWZx-QVVBuCFTcH2muLzMB7ONQA1GE2TzEVN78,1288
61
+ nat/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ nat/cli/commands/evaluate.py,sha256=wSoImgarbX1DMssslKluIa_itj7KtfyCKKw3bU7-PXE,4783
63
+ nat/cli/commands/start.py,sha256=tjbJcAq-YhrCRRg317cMSkeDlbF7GxIDOgskQH9Kc14,9797
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=Pql8YDW0q4Ch4HPWlDoton7FqfLbLoaUpn3eAbS6gkQ,1091
68
+ nat/cli/commands/configure/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
+ nat/cli/commands/configure/channel/add.py,sha256=axoPwtqA7a0nw7-xyfHBRvMLVLI0jV6b5PaMu1hMTqo,1068
70
+ nat/cli/commands/configure/channel/channel.py,sha256=RUA3ajmiYL1muhO71uwSR9jb7hKt2wroggwem_e0sLI,1187
71
+ nat/cli/commands/configure/channel/remove.py,sha256=GgLudl7SWyvhqLUuRLijXn2SdugsiOiZkkR-vLlKCcw,1096
72
+ nat/cli/commands/configure/channel/update.py,sha256=hcuAWJFhac3x3jurQRySsX_T-SA3S2308EjRhWBJOO8,1091
73
+ nat/cli/commands/info/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
74
+ nat/cli/commands/info/info.py,sha256=5_s2_MMYn6ZLQpADdZ3aVRg4uvyXvF-4xVJclXxN15U,1317
75
+ nat/cli/commands/info/list_channels.py,sha256=clDoGke747suDS5HAF0-6_TW3h8jDkUU57ELc0bjRBI,1292
76
+ nat/cli/commands/info/list_components.py,sha256=icPJU8iif5YMFKRQlW2dAAJcCiC_MsSIWRshMwsJHb0,4452
77
+ nat/cli/commands/info/list_mcp.py,sha256=63BLWO_vn1uUVYDkzKLfgxRe5TZ0vWgiIZKyVHIDc90,12643
78
+ nat/cli/commands/registry/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
79
+ nat/cli/commands/registry/publish.py,sha256=2E8WdVP6dZSgZ4tx9mpkTVbFDQwYDAEncOmmhJhYjKY,3202
80
+ nat/cli/commands/registry/pull.py,sha256=Aw9rO0kGkdMJSIn91_lsuP3rhVY0AjL85RlWJazmWvU,4095
81
+ nat/cli/commands/registry/registry.py,sha256=EN6beFCQ9BjBqvYdrFqsbPd_a4ibaixC10BD5kevBNI,1303
82
+ nat/cli/commands/registry/remove.py,sha256=7TBo8q0ng2pQaz-0_yqafVvYYiSdqx9HV7F1z62s4LA,3891
83
+ nat/cli/commands/registry/search.py,sha256=HEh4vMY9LtPgt0pmSwkuiJK2sHJ_cYwx9kwIwipymkQ,5086
84
+ 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=ot47b_z6X01-xbW79n6_A5w2P_wyg2pqqpLppVisk10,11882
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=-g0lB0V_ndkmNvG5ZD63hFVJ-BaK1O7M4AzD4iGWqs0,740
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=J9G4aYV2TmIsMNEQtwHZYriyyjynghyHHIa7uwileFM,25689
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=mVkaVv55xfTYXUxl28gGWHlKFT73IqUGwFkKaBLVVuw,4518
101
+ nat/data_models/config.py,sha256=1ymUL8COKLKVLXw-ZXcqREjJdAyAcjjrY-Z27Bsb3DM,17189
102
+ nat/data_models/dataset_handler.py,sha256=UDQLpStUwLEMm0e6BvuOFEsHYSopWu5DhinxEv2U6og,5523
103
+ nat/data_models/discovery_metadata.py,sha256=cIAheyVuWksB5Tnv8yB65k4kPaCSUXrbcO75O7puUTc,13492
104
+ nat/data_models/embedder.py,sha256=nPhthEQDtzAMGd8gFRB1ZfJpN5M9DJvv0h28ohHnTmI,1002
105
+ nat/data_models/evaluate.py,sha256=wn5vItQQhRm5V6jSPtKxUAVsWYOCc3gwRpTG6FPeAD0,4708
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=RBv3B_iEhEb3SwPNswqc-DacZsd32IZjAjvh3-crTjo,11709
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/nim_embedder.py,sha256=cB2ttl2FwKW_OcIzIHswu8twcBYlc9tM9D0wAWjKc1A,2517
129
+ nat/embedder/openai_embedder.py,sha256=8dkYVup-JGxhnMlYkcXmMoegKAhOL1yFFFcUhj_9PrI,2008
130
+ nat/embedder/register.py,sha256=hvA3T42-YQCrHLvEzhEoB-HS09RojLogcOVdO4-GaXs,879
131
+ nat/eval/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
132
+ nat/eval/config.py,sha256=c_lSMgmIjKO7l-5JBbMVdnBfnWhAzM7IRQFDjCoFEo0,2271
133
+ nat/eval/evaluate.py,sha256=yrTsHLMHJyKQmLMybzQ7WjkVb4XLDHeWRqLwcKSUpn4,23650
134
+ nat/eval/intermediate_step_adapter.py,sha256=E1AqH0hO_NNUT7nRGkIllitYJAszjjubul0IUwq-cyc,4498
135
+ nat/eval/register.py,sha256=QOHJqA2CQixeWMC9InyKbzXo1jByvrntD_m9-2Mvg9k,1076
136
+ nat/eval/remote_workflow.py,sha256=IUsWHbAShBY5GgTsG9qTwK-SqRwrSNZM9CUfzBhlWo8,6012
137
+ nat/eval/runtime_event_subscriber.py,sha256=9MVgZLKvpnThHINaPbszPYDWnJ61sntS09YZtDhIRE4,1900
138
+ nat/eval/usage_stats.py,sha256=_d_ErIvSKDN8wuvOyPn01kqM7zlFpwVxqOonaCV5XtY,1319
139
+ nat/eval/dataset_handler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
+ nat/eval/dataset_handler/dataset_downloader.py,sha256=w5Kjj7Dn2gQ14ekgt3rtGT8EPGJtXXXlckbtby9rJ2k,4553
141
+ nat/eval/dataset_handler/dataset_filter.py,sha256=HrK0m3SQnPX6zOcKwJwYMrD9O-f6aOw8Vo3j9RKszqE,2115
142
+ nat/eval/dataset_handler/dataset_handler.py,sha256=IDkB98DAUv3Ofnmej7nOODzLr7lMHJOjGEWResqDvJQ,15269
143
+ nat/eval/evaluator/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
144
+ nat/eval/evaluator/base_evaluator.py,sha256=pubxUm2DXkruSiYPkzezPj3-gzFEDAFGTYYTw7iXglU,3233
145
+ nat/eval/evaluator/evaluator_model.py,sha256=Mjf6kVpL__zCoL2B7vRkXxdNXRdFC3bJ6giRPZPLEzI,1515
146
+ nat/eval/rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
+ nat/eval/rag_evaluator/evaluate.py,sha256=qvpa6FdQNQmChU6op1aELw9_Dabd81cSQ-HHQVOBjwc,8399
148
+ nat/eval/rag_evaluator/register.py,sha256=TOSTuWxZLj2CYvs5n5RXh3j_9O_P2GYhYvcZHKUT1qU,5889
149
+ nat/eval/runners/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
150
+ nat/eval/runners/config.py,sha256=bRPai_th02OJrFepbbY6w-t7A18TBXozQUnnnH9iWIU,1403
151
+ nat/eval/runners/multi_eval_runner.py,sha256=3YSHOHjGFSlMxVEkuphUsCW5H5w73k3xD-W2rFNRWqE,1986
152
+ nat/eval/swe_bench_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
153
+ nat/eval/swe_bench_evaluator/evaluate.py,sha256=Fyt6OAVtoDKQzLs0FwUshXZAP8s5T492MY0hSEA3Mes,9858
154
+ nat/eval/swe_bench_evaluator/register.py,sha256=5mzvBTUBdqahBZNU4KjB1go81cObo9F4iA3y_eOJ86g,1537
155
+ nat/eval/trajectory_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
156
+ nat/eval/trajectory_evaluator/evaluate.py,sha256=GXLT0cfbaCWhN25bBS8uYOh7m90O6NVBL4o1xhlXWCE,3257
157
+ nat/eval/trajectory_evaluator/register.py,sha256=Zv6XOJP8oHt6EVur2XfiH2HoNSa5CWdM159lizcEoHM,1709
158
+ nat/eval/tunable_rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
+ nat/eval/tunable_rag_evaluator/evaluate.py,sha256=veBrFTwebIwZGV7W0U5sNXJmXbovxfzSwZvncKbNb_E,13069
160
+ nat/eval/tunable_rag_evaluator/register.py,sha256=jYhPz8Xwsxyb7E0xpkAcQFT20xjSoYd_4qOJ7ltvUzU,2558
161
+ nat/eval/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
+ nat/eval/utils/output_uploader.py,sha256=27-aKIejV-6DGNErR6iTioNE5rN_lEeiNoBTS1qIVVM,5579
163
+ nat/eval/utils/tqdm_position_registry.py,sha256=9CtpCk1wtYCSyieHPaSp8nlZu6EcNUOaUz2RTqfekrA,1286
164
+ nat/eval/utils/weave_eval.py,sha256=voOzcl4yHmMvOT0PQsr6LXckA_VMYYWyPX2oPP3Gpjk,7287
165
+ nat/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ nat/experimental/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
+ nat/experimental/decorators/experimental_warning_decorator.py,sha256=ji9fITsDF5N5ps5Y9jwb1sqc1e_3TvkUUUBBiJC76CE,5020
168
+ nat/experimental/test_time_compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
+ nat/experimental/test_time_compute/register.py,sha256=MWDEfLLB8agI2_2_8of5_C0q3Wt5Ecv6efSopD7_gZM,1600
170
+ nat/experimental/test_time_compute/editing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
171
+ nat/experimental/test_time_compute/editing/iterative_plan_refinement_editor.py,sha256=uh0vJFDUucSSd_boU9pwPm5JD674Hhhe5CQxvFWfHlg,6137
172
+ nat/experimental/test_time_compute/editing/llm_as_a_judge_editor.py,sha256=QAu46omTvXJOqWzN_Xeeuhf25R0WxHqMjAdXcB9IxqQ,8539
173
+ nat/experimental/test_time_compute/editing/motivation_aware_summarization.py,sha256=S7s_BigZ1ru-3lP7c58Zpt5Nxavi8Ko-A1cmH7KkX3s,4503
174
+ nat/experimental/test_time_compute/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
175
+ nat/experimental/test_time_compute/functions/execute_score_select_function.py,sha256=OHiQ01a6g3OEd-K1WZynuQspmrvBpgKKxxqO-UbM4z0,4550
176
+ nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=kR3VA3BYSngI0F8xzkKX36yw8CADaToGqXBzoO02kQQ,9832
177
+ nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py,sha256=ujooFqyiS8r33VIWhKlLyftlGAGmDHx5XfpUi_bt6BM,8421
178
+ nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py,sha256=H4LmatlubHGTUBXAp-8LIK8Z6bUid0W_8EuigaGU89Q,6907
179
+ nat/experimental/test_time_compute/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
+ nat/experimental/test_time_compute/models/editor_config.py,sha256=wFHcd4GjWy4fxuXrYnC0gJ0ZszsAjziohK8vS7cc8EA,7153
181
+ nat/experimental/test_time_compute/models/scoring_config.py,sha256=zi93HQrtY1FiRuZgDOdlDZql6T-1W6SteybSUMXjr8U,5500
182
+ nat/experimental/test_time_compute/models/search_config.py,sha256=yqkwMuMs4LlEFhc8c2vZwCSmQlG4F-O4usxy-zomcZg,6487
183
+ nat/experimental/test_time_compute/models/selection_config.py,sha256=vcPvtE7Ya7IvvKIEBMmPYnfJgBnl5WOu1v7r95WHQK4,7867
184
+ nat/experimental/test_time_compute/models/stage_enums.py,sha256=UNQwUqRFoRe5pgasUbBRkRil7zs_NAsJlgFbWhcAU_Y,1284
185
+ nat/experimental/test_time_compute/models/strategy_base.py,sha256=QeJpJqkDEfXjlk2NBM9swzTm1MtwrndDPpQHHrVrExo,2523
186
+ nat/experimental/test_time_compute/models/tool_use_config.py,sha256=WX6Z2ODGElDA7Io8wBxtDkk3jUQGtHLukS6a-ivSZnE,1617
187
+ nat/experimental/test_time_compute/models/ttc_item.py,sha256=E7WEYBmLKo5fth8oljnGF32lojkz31LZIZWNVnk_B3U,2387
188
+ nat/experimental/test_time_compute/scoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
+ nat/experimental/test_time_compute/scoring/llm_based_agent_scorer.py,sha256=L5Q3PBhEFvLhhbEhJqAb2aOyRdGxsUVoN4hMgDY5LNk,6608
190
+ nat/experimental/test_time_compute/scoring/llm_based_plan_scorer.py,sha256=WpUDgzjNTHVLULi7apzN4uJEBmevdZSRygBznotm03M,6501
191
+ nat/experimental/test_time_compute/scoring/motivation_aware_scorer.py,sha256=YxDBBPKn5LelVEV4j5q_ibEhl0erYhNQ3fDQ9y42S3w,4588
192
+ nat/experimental/test_time_compute/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
193
+ nat/experimental/test_time_compute/search/multi_llm_planner.py,sha256=i1wNoVXM0J86Nl_MxwP5Pyns8YeuADw2usCX1khh2B0,5771
194
+ nat/experimental/test_time_compute/search/multi_query_retrieval_search.py,sha256=VjOxtZcZ33fLqiqWyXRKg3GYBKqBYG4a_aEgzfjVdT8,5281
195
+ nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py,sha256=ult-gBGpp_RPFSnGirqi0j_Y4vMoFDdqkOHfCeLemaw,5691
196
+ nat/experimental/test_time_compute/selection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
+ nat/experimental/test_time_compute/selection/best_of_n_selector.py,sha256=0cFHOTfNsHSguP6Xw5f3MMgJZR-pbkaa4xQCACEOqqg,2489
198
+ nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py,sha256=qAVrMck-iDDVci3rg4F_jCky6QEwmJFzWw-2HB0G6EU,5798
199
+ nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py,sha256=YTX_unhwH5oQ1W0wKKeIvwJALoeAPV-YfgpgsCUkmqI,6756
200
+ nat/experimental/test_time_compute/selection/llm_based_plan_selector.py,sha256=GY85s6mxHcILeXS5GK_-F-mDYrArOw1WB1JsYorrrcQ,5611
201
+ nat/experimental/test_time_compute/selection/threshold_selector.py,sha256=9E__TMt5sOhm-KLTWdGKUrxQ6cKYqFjO-CoF_kNILPk,2415
202
+ nat/front_ends/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
203
+ nat/front_ends/register.py,sha256=OKv1xi-g8WHtUMuIPhwjG6wOYqaGDD-Q9vDtKtT9d1Y,889
204
+ nat/front_ends/console/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
205
+ nat/front_ends/console/authentication_flow_handler.py,sha256=Q1A7dv-pUlzsGZ8NXu8r-aGCqRiFqadPPBOw2TmyUNk,9566
206
+ nat/front_ends/console/console_front_end_config.py,sha256=wkMXk-RCdlEj3303kB1gh47UKJnubX2R-vzBzhedpS4,1318
207
+ nat/front_ends/console/console_front_end_plugin.py,sha256=BJ1o2IflZeFKC2gGfL_gI24pg0t2inT33H0Z14wCwY4,3931
208
+ nat/front_ends/console/register.py,sha256=2Kf6Mthx6jzWzU8YdhYIR1iABmZDvs1UXM_20npXWXs,1153
209
+ nat/front_ends/cron/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
210
+ nat/front_ends/fastapi/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
211
+ nat/front_ends/fastapi/fastapi_front_end_config.py,sha256=-fkA7sJ2sBHmCvxdTyd-JJSLc1inVnT_pXa6kmmuGI4,10849
212
+ nat/front_ends/fastapi/fastapi_front_end_controller.py,sha256=vs-VIWHd-YW1w2t-ifYqJ0jy5_SoD-11VyeojW_up5Y,2596
213
+ nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=zOmryQcB1jEosXuGwcBbxmZUnTFY5PMpn3EYLBOj4tU,4428
214
+ nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=gtxVtk_mHzWqcL_wH9QOWWNBT4ksJqyRqe3Gk9cWuqc,52043
215
+ nat/front_ends/fastapi/intermediate_steps_subscriber.py,sha256=kbyWlBVpyvyQQjeUnFG9nsR4RaqqNkx567ZSVwwl2RU,3104
216
+ nat/front_ends/fastapi/job_store.py,sha256=AZC0a8miKqSI9YbW19-AA_GPITVY9bYHXn9H8saNrfQ,6389
217
+ nat/front_ends/fastapi/main.py,sha256=QQuwvgYsNuvcRzWmo3FVz1BZBm-DynaC5IJloloheBs,2917
218
+ nat/front_ends/fastapi/message_handler.py,sha256=xdz4335uz2a2PbwXVIjPAqyCtqrhKNaO7mHlKUZCKqY,15139
219
+ nat/front_ends/fastapi/message_validator.py,sha256=2XS-md_7pyYknPMlmCgnJvwdXvD-ZKBAp0yDe5fvotk,17869
220
+ nat/front_ends/fastapi/register.py,sha256=rA12NPFgV9ZNHOEIgB7_SB6NytjRxgBTLo7fJ-73_HM,1153
221
+ nat/front_ends/fastapi/response_helpers.py,sha256=jq6CoFV4_kMVSJ1j5icF3dczxNRAv5m_9RRkLmeWXdo,9042
222
+ nat/front_ends/fastapi/step_adaptor.py,sha256=THpcJptGJyDN9E08Y6hAr2ChKhBrJt4RTa5m7GDorTc,12448
223
+ nat/front_ends/fastapi/auth_flow_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
224
+ nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py,sha256=69ye-nJ81jAoD1cVYv86-AUYu2-Uk8ZqU_m8AVO9vT8,1280
225
+ nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=5HX6mpKPmErkhwIAwFIGONYj_CkPrhCG7L56-79o7Yw,4862
226
+ nat/front_ends/fastapi/html_snippets/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
227
+ nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py,sha256=BNpWwzmA58UM0GK4kZXG4PHJy_5K9ihaVHu8SgCs5JA,1131
228
+ nat/front_ends/mcp/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
229
+ nat/front_ends/mcp/mcp_front_end_config.py,sha256=QS8DUVOPqg71RrU7gtw_gBApmmADUAZHNy69I425QNg,1826
230
+ nat/front_ends/mcp/mcp_front_end_plugin.py,sha256=kHR7jhenSuibrsKoXVHAeLoAiDcZxalStYEFR-38gDo,3243
231
+ nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=Ssgv6ORdRmdfANLSehOCuTr_zzUS9Ok6Rkn7uWNyoZk,5249
232
+ nat/front_ends/mcp/register.py,sha256=3aJtgG5VaiqujoeU1-Eq7Hl5pWslIlIwGFU2ASLTXgM,1173
233
+ nat/front_ends/mcp/tool_converter.py,sha256=rCvFL8lrztkjC0nFtfzgfFrPK_IUKk-M_er8jBCM9Ic,9755
234
+ nat/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
235
+ nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=3kevZVhvzj_Wvu8HYhRz-CRrO2OldW6wcmtcsIQCELk,1765
236
+ nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
+ nat/llm/aws_bedrock_llm.py,sha256=W46l-8a2ls-BuQR7nP_1iB72Flb7lTh6g4jal9acwDE,2836
238
+ nat/llm/nim_llm.py,sha256=zUAIYj-Wn0xwHUoi9broq4-XKK1QyUsr1fDbLWoMihg,2179
239
+ nat/llm/openai_llm.py,sha256=BsfUuFnJ8XW9e_BIuda4B0SbHHd5DGSXhlyJg9VIhcw,2230
240
+ nat/llm/register.py,sha256=GMsFzhupP_rwSVkIoJUT8j0CRhWyC4X58ihnO_l9OkM,899
241
+ nat/llm/utils/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
242
+ nat/llm/utils/env_config_value.py,sha256=SBpppIRszDXNcEEG2L6kVojY7LH_EpHfK7bu92TGrE4,3568
243
+ nat/llm/utils/error.py,sha256=gFFDG_v_3hBZVWpcD7HWkno-NBHDjXae7qDGnfiCNwA,820
244
+ nat/memory/__init__.py,sha256=ARS_HJipPR4mLDqw3VISSQLzeezru_vgNgsi1Ku0GRE,828
245
+ nat/memory/interfaces.py,sha256=lyj1TGr3Fhibul8Y64Emj-BUEqDotmmFoVCEMqTujUA,5531
246
+ nat/memory/models.py,sha256=c5dA7nKHQ4AS1_ptQZcfC_oXO495-ehocnf_qXTE6c8,4319
247
+ nat/meta/pypi.md,sha256=6oXSSS1rmCZGbW32_mGq0qrMh0g6aSe-_E9QwIle4Og,4524
248
+ nat/object_store/__init__.py,sha256=81UKtZ6qcc__hfNjMnEYBHE16k7XBXX6R5IJNg1zfRs,831
249
+ nat/object_store/in_memory_object_store.py,sha256=98UgQK2YdXTTQjBfQS-mjBCCugm1XUB7DZCFS8xe9yQ,2644
250
+ nat/object_store/interfaces.py,sha256=5NbsE9TccihOf5ScG04hE1eNOaiajOZIUOeK_Kvukk8,2519
251
+ nat/object_store/models.py,sha256=yAEa7oZgax7OwObynv0MFCMo43xTGps5xz3SIY6-0VM,1425
252
+ nat/object_store/register.py,sha256=M93V17RxBXzGZaAmWboDw-S2XP7lrMEyzdlxXqC0f30,788
253
+ nat/observability/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
254
+ nat/observability/exporter_manager.py,sha256=5rJlgcdXIV3-EFkxVJv275V_ZGw84P9Th8LFuIZrmYo,13851
255
+ nat/observability/register.py,sha256=p9Izk5_iJBNxu2_E4VoaDnBoINWoTDf661FnWbLtqIk,4267
256
+ nat/observability/exporter/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
257
+ nat/observability/exporter/base_exporter.py,sha256=taOWf3wQfxAzq3OYwhkY_AQJxElwz_amUI_r1s-_INM,16624
258
+ nat/observability/exporter/exporter.py,sha256=fqF0GYuhZRQEq0skq_FK2nlnsaUAzLpQi-OciaOkRno,2391
259
+ nat/observability/exporter/file_exporter.py,sha256=ja3FQzPJLfrwZn5h-t6K7k3pC_64TBJd5rGlAYPiak0,1490
260
+ nat/observability/exporter/processing_exporter.py,sha256=_hTRSzJeCx1Z3CrU3pow5YVsrxg3XoLCvdfkU_Gf5VM,14488
261
+ nat/observability/exporter/raw_exporter.py,sha256=0ROEd-DlLP6pIxl4u2zJ6PMVrDrQa0DMHFDRsdGQMIk,1859
262
+ nat/observability/exporter/span_exporter.py,sha256=p2rugOIyubBk_Frg1c-x-THzvFZt8q8HhYssKUp8Hdg,13250
263
+ nat/observability/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
264
+ nat/observability/mixin/batch_config_mixin.py,sha256=DixQq-jRhBFJvpOX-gq7GvPmZCPOXQdacylyEuhZ6y0,1399
265
+ nat/observability/mixin/collector_config_mixin.py,sha256=3iptkRH9N6JgcsPq7GyjjJVAoxjd-l42UKE7iSF4Hq8,1087
266
+ nat/observability/mixin/file_mixin.py,sha256=jh1ZazkywlqJtd5zvVUMsuywMR0qR9bQw1E5SQOSbHM,12293
267
+ nat/observability/mixin/file_mode.py,sha256=Rq7l8UegECub5QCyCAYwhyL_Jul386gW-ANmtMmv2G4,837
268
+ nat/observability/mixin/resource_conflict_mixin.py,sha256=mcUp3Qinmhiepq3DyRvp9IaKGYtJfDgQVB-MuyVkWvk,5243
269
+ nat/observability/mixin/serialize_mixin.py,sha256=DgRHJpXCz9qHFYzhlTTx8Dkj297EylCKK3ydGrH5zOw,2478
270
+ nat/observability/mixin/type_introspection_mixin.py,sha256=VCb68SY_hitWrWLaK2UHQLkjn2jsgxSn9593T2N3zC0,6637
271
+ nat/observability/processor/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
272
+ nat/observability/processor/batching_processor.py,sha256=upE154Pij_iQpmLoFb6GNM_D26xYJoouLbxeSvC0RxA,13888
273
+ nat/observability/processor/callback_processor.py,sha256=T5DsEm4HCUOi1VL29XCpaK04sYQvJ75KZLH-mlJGQgk,1547
274
+ nat/observability/processor/intermediate_step_serializer.py,sha256=aHeCmixyop7uxNnKmrUZ8SIFeBNS05gYohKLepqbrcQ,1249
275
+ nat/observability/processor/processor.py,sha256=kTqOsus5Ycu5aFnxCTH1EkCP23uRBZ4xNhXmj3DP5OE,2593
276
+ nat/observability/utils/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
277
+ nat/observability/utils/dict_utils.py,sha256=DcNhZ0mgcJ-QQfsCl9QSGL-m_jTuHhr1N-v43ZCAMik,7371
278
+ nat/observability/utils/time_utils.py,sha256=V8m-e3ldUgwv031B17y29yLXIowdlTH4QW8xDw9WKvk,1071
279
+ nat/plugins/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
280
+ nat/profiler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
281
+ nat/profiler/data_frame_row.py,sha256=vudqk1ZzZtlZln2Ir43mPl3nwNc0pQlhwbtdY9oSKtI,1755
282
+ nat/profiler/data_models.py,sha256=UAuTy9_l623JUNdIKIHPxoNEwZ7Qj-Vv93rfjxyf5Ak,1026
283
+ nat/profiler/inference_metrics_model.py,sha256=Thz3OHBDzGrpPYaOm8m8_pNeEA_q0yDlUUDHFkQ3U90,1481
284
+ nat/profiler/intermediate_property_adapter.py,sha256=cCxyldN052meVJ4Ul-vbmguum0mLdaz3syFoidkIDsg,3537
285
+ nat/profiler/profile_runner.py,sha256=kFcrKGzE3tIVziX38SUTTHXW-GKQimA82388mJei0OU,22354
286
+ nat/profiler/utils.py,sha256=IK4Rk5pytbg5aOGV8Ibr92jsBMTqOuX8QembOmwXrTI,8180
287
+ nat/profiler/calc/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
288
+ nat/profiler/calc/calc_runner.py,sha256=PUC7x2udUseif0brdmMiSv1LyhmEkcCVLVq8EHXJSnY,30681
289
+ nat/profiler/calc/calculations.py,sha256=K_r1OvEOEF5ffoadS4mAzTNHguVLMkNkrxrdtKvJJSs,12327
290
+ nat/profiler/calc/data_models.py,sha256=vmBu89C1LsJyIRpEEzGi29_cFJDZJUJXOSXWtraVfd8,6172
291
+ nat/profiler/calc/plot.py,sha256=h_GyTg-6qU6n2ZAUCsMmXkz6ha-lrcQ903G0JxNWrzM,12222
292
+ nat/profiler/callbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
293
+ nat/profiler/callbacks/agno_callback_handler.py,sha256=y99-QFV5-GOYN6YzM_3U_7rd-n3AkG1cmc0T9wGKUes,14908
294
+ nat/profiler/callbacks/base_callback_class.py,sha256=BFZMkb-dPoHAnM_4jVXX08hD8Vi2n8thyftVlUxfE24,745
295
+ nat/profiler/callbacks/langchain_callback_handler.py,sha256=cjZpnrmVRtEq8kji3UpheWBSzq9RTZVeuBAKC_ILD0c,12505
296
+ nat/profiler/callbacks/llama_index_callback_handler.py,sha256=UJlT8pFlchmn4OXkmV3iNc2N_uJB2OQZxTFsuUMhaaM,9317
297
+ nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=5bbffvxtizyDs9RyrRNxk9y_DHg2luu1KxFiWaxU484,11143
298
+ nat/profiler/callbacks/token_usage_base_model.py,sha256=X0b_AbBgVQAAbgbDMim-3S3XdQ7PaPs9qMUACvMAe5o,1104
299
+ nat/profiler/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
300
+ nat/profiler/decorators/framework_wrapper.py,sha256=fMEjJgtMAvmEL1e2L7ijyCLRhxoGJ7ylXVTno6bo4J0,5438
301
+ nat/profiler/decorators/function_tracking.py,sha256=U0miBtztTeSEnBsGVBD_utbUD6Cbf7m8eimsb4XtR5M,11087
302
+ nat/profiler/forecasting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
+ nat/profiler/forecasting/config.py,sha256=5BhMa8csuPCjEnTaNQjo_2IoO7esh1ch02MoSWkvwPw,791
304
+ nat/profiler/forecasting/model_trainer.py,sha256=6Ci2KN4sNj1V3yduHXlA0tn50yHUmM2VcbRRS2L96OA,2456
305
+ nat/profiler/forecasting/models/__init__.py,sha256=pLpWi7u1UrguKIYD-BYu8IExvJLX_U2cuW3Ifp3zCOY,937
306
+ nat/profiler/forecasting/models/forecasting_base_model.py,sha256=6-oe3jn-X9_m3QvkWAEJ9m7sMLlZ7VDt6yfNyWK-_18,1219
307
+ nat/profiler/forecasting/models/linear_model.py,sha256=YSf0tT4yLtEHW5-V02EFUks__MRiTzt0OxuwJOaJ_vc,7008
308
+ nat/profiler/forecasting/models/random_forest_regressor.py,sha256=fiom3CGzsy0A-8gBG0FoEfj1T4GywaQjmDf9db1fskw,9548
309
+ nat/profiler/inference_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
+ nat/profiler/inference_optimization/data_models.py,sha256=lK6EPAgEPtJMMpe3SFoDqx4BntJVo8fMQzLfqOMKpB0,11884
311
+ nat/profiler/inference_optimization/llm_metrics.py,sha256=kC8LUonJiXjQ5ogH8D7GTEYk44ypwncRJrN0ByRWz6k,9482
312
+ nat/profiler/inference_optimization/prompt_caching.py,sha256=n3kfgWibCjkXbp6_Qo8q3aLk3fhr_p8KYnAOnTybpZU,6505
313
+ nat/profiler/inference_optimization/token_uniqueness.py,sha256=Q8cf14V0YisDoXar7Gess0Gch7vqPLHmL892mVC86PA,4571
314
+ nat/profiler/inference_optimization/workflow_runtimes.py,sha256=RXCsLoWkaLi32fi8kqajhgVMIedtzljUUZ8LA-xJDEU,2664
315
+ nat/profiler/inference_optimization/bottleneck_analysis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
+ nat/profiler/inference_optimization/bottleneck_analysis/nested_stack_analysis.py,sha256=J8gKaCe_F9PtHB051ZzqE-gyD5NMXqd2pZ9pnOqHHzI,16739
317
+ nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py,sha256=B711-qR949Xjb0nMK-GIAQSNDfTX-xahuAGf7taKwSk,11100
318
+ nat/profiler/inference_optimization/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
319
+ nat/profiler/inference_optimization/experimental/concurrency_spike_analysis.py,sha256=3hFMDbfW7MKxFIhO7y35qtP5wPtLAA2ZqltlnI-OsVc,16953
320
+ nat/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=U5ro7xcvQFq1fXY1w_8Ts8f95rowNayIDnto95UTMrA,16607
321
+ nat/registry_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
322
+ nat/registry_handlers/metadata_factory.py,sha256=MTbXa7pifVPpmLJs86jVCS1wHk5drRykNPpJuv2A_0U,2769
323
+ nat/registry_handlers/package_utils.py,sha256=tOU3YM4Hx7mnMPuiL17FTyK2MLtRge2ScdG-bcWg-8s,22541
324
+ nat/registry_handlers/register.py,sha256=k2gvV0htVpfMdzsRvZGnTZp17JA2Na8sO9ocMaxDSmo,902
325
+ nat/registry_handlers/registry_handler_base.py,sha256=pEE1nKG824BnWlUc6y0bwAzPlrLgHeJIgcXyncY2dVg,5767
326
+ nat/registry_handlers/local/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
+ nat/registry_handlers/local/local_handler.py,sha256=HduVG18jLm61bf8zrDCAutL8nxPssd5D1OyZomoa78c,7597
328
+ nat/registry_handlers/local/register_local.py,sha256=EMcQ3tvDDic4YeViz3jNIQyrUiD0foriP11CuuEmrr0,1341
329
+ nat/registry_handlers/pypi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
+ nat/registry_handlers/pypi/pypi_handler.py,sha256=fezfnzN0-znqAzWCrj9nD_FQxT_cB_zT6IESBlNxjo0,10131
331
+ nat/registry_handlers/pypi/register_pypi.py,sha256=iFoZeAQjO_dZfzCsgp-5SmqwFDQ9y8QReVHZ0iGFoow,1840
332
+ nat/registry_handlers/rest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
+ nat/registry_handlers/rest/register_rest.py,sha256=We_WtZ0KPSgCjsORRA1QNAgljEAGLeUi92mYRJ3nVQU,2529
334
+ nat/registry_handlers/rest/rest_handler.py,sha256=d7F6SF2o_Bebprg5VJEt3W1dSXAk8azo1USi-wGvKqQ,9434
335
+ nat/registry_handlers/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
336
+ nat/registry_handlers/schemas/headers.py,sha256=LnVfCMNc3vRr-lRdFB8Cuv9Db5Ct-ACTapjWLaRg2os,1549
337
+ nat/registry_handlers/schemas/package.py,sha256=dVBRh1Tps_lV0k-f60mT7FwJftlVmf8JgiXie0tZZhQ,2421
338
+ nat/registry_handlers/schemas/publish.py,sha256=b-qMygqRard_uMrFz9aPXVQptlGGtQJKpbp8ZsI6xvw,2248
339
+ nat/registry_handlers/schemas/pull.py,sha256=7g_5TyC8M-80dRJeSJzVmeh5zLO2XUBs9mgut0LmGK4,2629
340
+ nat/registry_handlers/schemas/remove.py,sha256=BxxFfkmYxCFvbBgTyYNaRfnsq7hAphAxLQ-R7neQOOI,1390
341
+ nat/registry_handlers/schemas/search.py,sha256=EyJhC9iZZm9mqG_Yovrn_-o75gkcDb0q9CFWgx5e0Bg,3157
342
+ nat/registry_handlers/schemas/status.py,sha256=U4c5vWsu1SqewSRSgR9ch5xji8xPSUdzaXh1IA4tByA,1473
343
+ nat/retriever/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
+ nat/retriever/interface.py,sha256=CRvx-UBFoa_bDcHrr_kkKhgUx2fthcaH_p50s59zE6Y,1413
345
+ nat/retriever/models.py,sha256=J75RLAFCPaxFUzJHSe25s6mqKcRPcw9wZjkQeuIaNGo,2432
346
+ nat/retriever/register.py,sha256=OlHTQvef2N43vlZTANhPdgtw5M8a5b_yBN3OCkzCUys,904
347
+ nat/retriever/milvus/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
348
+ nat/retriever/milvus/register.py,sha256=FaWvUFj4rU6qcui-G459Z-bQV-QAVR3PNONT1qu7jxs,4027
349
+ nat/retriever/milvus/retriever.py,sha256=zU1Jk3AetIx7DSWwelyFYbUWAG2ouwm5-VYRVwaiPHU,9490
350
+ nat/retriever/nemo_retriever/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
351
+ nat/retriever/nemo_retriever/register.py,sha256=3XdrvEJzX2Zc8wpdm__4YYlEWBW-FK3tl_BwOWtn-4w,2893
352
+ nat/retriever/nemo_retriever/retriever.py,sha256=k9j4U3f5a_7LumndzNYgRl9r5RLg8Ugo2Uj76TRuMzo,6934
353
+ nat/runtime/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
354
+ nat/runtime/loader.py,sha256=MnIIToOvmHGjIWBL3B5tBkFb5-CHCfm-P3UDUkzu0YU,7967
355
+ nat/runtime/runner.py,sha256=771HZO52KaSM0LBsa7eq0Qp6P87w1Q_SCc-BE-uzI-0,6396
356
+ nat/runtime/session.py,sha256=5pePjDM7y2O7hyUX4UERt7Iq3_TJhBeZ7_kb9JvzcF4,6263
357
+ nat/runtime/user_metadata.py,sha256=ce37NRYJWnMOWk6A7VAQ1GQztjMmkhMOq-uYf2gNCwo,3692
358
+ nat/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
+ nat/settings/global_settings.py,sha256=NF9qmClchpTdgUXalOpcOoUFC8ZWldQaLr5TC6s3bfU,12036
360
+ nat/test/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
361
+ nat/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
+ nat/tool/chat_completion.py,sha256=zB8sqEBEHW0QDcnv0NdqO43ybxe5Q-WKZr9s349UBvA,3149
363
+ nat/tool/datetime_tools.py,sha256=JmYFYL-e4I9_kup7m-E1cI6XfPkrwIx45qCqKPwDx24,1664
364
+ nat/tool/document_search.py,sha256=hHTwlwX8kpji97Ze6BUP8OaQYhR1g7u1xT0Zi_oxoIs,6793
365
+ nat/tool/nvidia_rag.py,sha256=NOJywoYICQnE6XUG32fPvjN0z_hR7CDoN4_UA2rN120,4178
366
+ nat/tool/register.py,sha256=Lwl6l_eEzS8LAELxClmniNhhLluRVZFYXhsk2ocQhNg,1491
367
+ nat/tool/retriever.py,sha256=SPHFCpSmNA-KxpnfAWx3RZXDf27GDUN9vTMwU6rveok,3812
368
+ nat/tool/server_tools.py,sha256=rQLipwRv8lAyU-gohky2JoVDxWQTUTSttNWjhu7lcHU,3194
369
+ nat/tool/code_execution/README.md,sha256=sl3YX4As95HX61XqTXOGnUcHBV1lla-OeuTnLI4qgng,4019
370
+ nat/tool/code_execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
371
+ nat/tool/code_execution/code_sandbox.py,sha256=AynQfmvT4mtrV5DHV-20HF8mNTDo1NX4Wj2mlpaEIfs,10159
372
+ nat/tool/code_execution/register.py,sha256=zPFzYqaQhH2B3K8iildVYY_7RKgpoRNKdAo00KmBLQI,3322
373
+ nat/tool/code_execution/test_code_execution_sandbox.py,sha256=iyK9awJs6ST8fc_S3lNPye6It0DxSNp1UIrAUKPJ1h4,14776
374
+ nat/tool/code_execution/utils.py,sha256=__W-T1kaphFKYSc2AydQW8lCdvD7zAccarvs7XVFTtI,4194
375
+ nat/tool/code_execution/local_sandbox/.gitignore,sha256=BrV-H5osDtwwIx0eieoexolpnaJvc2DQLV15j95Qtyg,19
376
+ nat/tool/code_execution/local_sandbox/Dockerfile.sandbox,sha256=CYqZ5jbBwk3ge8pg87aLjhzWERauScwya5naYq0vb5o,2316
377
+ nat/tool/code_execution/local_sandbox/__init__.py,sha256=k25Kqr_PrH4s0YCfzVzC9vaBAiu8yI428C4HX-qUcqA,615
378
+ nat/tool/code_execution/local_sandbox/local_sandbox_server.py,sha256=Zl20CYKNbCClV7Q8uEY65m-I7WiYyLKdP7DKF8_8BiE,6949
379
+ nat/tool/code_execution/local_sandbox/sandbox.requirements.txt,sha256=R86yJ6mcUhfD9_ZU-rSMdaojR6MU41hcH4pE3vAGmcE,43
380
+ nat/tool/code_execution/local_sandbox/start_local_sandbox.sh,sha256=gnPuzbneKZ61YvzaGIYSUdcyKMLuchYPti3zGLaNCZY,2055
381
+ nat/tool/github_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
382
+ nat/tool/github_tools/create_github_commit.py,sha256=O4EmNk_QQlflOpY5gT6oWlnY4wbzA7BnTk49D-2FbT8,6604
383
+ nat/tool/github_tools/create_github_issue.py,sha256=9jAHtKgZFGCJV4OE0Pj8sZDKr25pf7cbJ8Czt5hTaj0,3428
384
+ nat/tool/github_tools/create_github_pr.py,sha256=9nuJq9bAbqVXOyLhjO_3tS70eI_72mhNE6KRtN7PSCQ,4945
385
+ nat/tool/github_tools/get_github_file.py,sha256=tGMzrE-v16rjDoG-IbOkaS5hXe4SCb-onkTZdA-6eSg,4486
386
+ nat/tool/github_tools/get_github_issue.py,sha256=fFJFYt3mWR6CK46r6k3-3eVbAKLNh1yHRMmZU0c-4jA,6532
387
+ nat/tool/github_tools/get_github_pr.py,sha256=p4Xu-YA6L1dQ8O0e5LDzphrn5DknjttDhLeudgk7Iys,9716
388
+ nat/tool/github_tools/update_github_issue.py,sha256=fj_OAp5bSmSyj-wPAUvzfCGRBuwPyoK1kJ95Fn8XDg8,4103
389
+ nat/tool/mcp/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
390
+ nat/tool/mcp/exceptions.py,sha256=EGVOnYlui8xufm8dhJyPL1SUqBLnCGOTvRoeyNcmcWE,5980
391
+ nat/tool/mcp/mcp_client.py,sha256=jdlJULJG1EGdj2CwT26x6hBatG6vz0cXsh14c_ttv20,8963
392
+ nat/tool/mcp/mcp_tool.py,sha256=DhnGEHQI2bIrTMzwW3EH08Wgm2QcvvEMeyjy0_xVRoE,4096
393
+ nat/tool/memory_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
394
+ nat/tool/memory_tools/add_memory_tool.py,sha256=DYaYkVlH2myRshJpzmULfzdF0wFoPCAkTBokFVmhfzU,3349
395
+ nat/tool/memory_tools/delete_memory_tool.py,sha256=EWJVgzIzLDqktY5domXph-N2U9FmybdWl4J7KM7uK4g,2532
396
+ nat/tool/memory_tools/get_memory_tool.py,sha256=pJw6Lu2wukCW3mUGx5TtBNfdmdr-wqf7DQn2yNKxJ_4,2749
397
+ nat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
398
+ nat/utils/debugging_utils.py,sha256=6M4JhbHDNDnfmSRGmHvT5IgEeWSHBore3VngdE_PMqc,1332
399
+ nat/utils/dump_distro_mapping.py,sha256=ptRVwrzhZplEWZUwwHOzyeuLj-ykkxn96t4oxUmRG28,1147
400
+ nat/utils/log_utils.py,sha256=dZLHt7qFqLlpPqMMFO9UVtSkOpMjFwz9tkmbAfOiNlg,1355
401
+ nat/utils/metadata_utils.py,sha256=BSsiB6jIWd8oEuEynJi55qCG762UuTYFaiUH0OT9HdY,2897
402
+ nat/utils/optional_imports.py,sha256=jQSVBc2fBSRw-2d6r8cEwvh5-di2EUUPakuuo9QbbwA,4039
403
+ nat/utils/producer_consumer_queue.py,sha256=AcSYkAMBxLx06A5Xdy960PP3AJ7YaSPGJ7rbN_hJsjI,6599
404
+ nat/utils/string_utils.py,sha256=71HuIzGx7rF8ocTmeoUBpnCi1Qf1yynYlNLLIKP4BVs,1415
405
+ nat/utils/type_converter.py,sha256=tO5XPbr5MPhBqbseEM2hROAk_CTcnlzibTGdOPT3MfQ,10640
406
+ nat/utils/type_utils.py,sha256=G-SYlk4BkJv4L225myUhwBY6-Z7wOgR9K49dVUtV8SA,14896
407
+ nat/utils/url_utils.py,sha256=UzDP_xaS6brWTu7vAws0B4jZyrITIK9Si3U6pZBZqDE,1028
408
+ nat/utils/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
409
+ nat/utils/data_models/schema_validator.py,sha256=IT74_H4qWSUYae8rgDK-gyBjHJGjzUmf_tVKv0ovbN0,1599
410
+ nat/utils/exception_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
411
+ nat/utils/exception_handlers/automatic_retries.py,sha256=Sgu6zSth3no4xsV2x-dRxWjbTnyLvDkCWP3y_PsmPFE,11963
412
+ nat/utils/exception_handlers/mcp.py,sha256=BPfcmSEeW8XVA46vm1kQEOEKTNkZarKW-PMEK-n0QvM,7625
413
+ nat/utils/exception_handlers/schemas.py,sha256=VynNMWHYqpoTfDEpU8Nyw80k04k4Q-0Xr0gFr8wAxpQ,3835
414
+ nat/utils/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
+ nat/utils/io/model_processing.py,sha256=bEbH_tIgZQvPlEJKVV4kye_Y9UU96W4k2mKuckGErHA,936
416
+ nat/utils/io/yaml_tools.py,sha256=OiYviq_M4gp9GnlnPxWTS1VBgVW9en3lM_YuwoWrY4o,3317
417
+ nat/utils/reactive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
418
+ nat/utils/reactive/observable.py,sha256=Kgh3QkSYTZsRyUID1aqkjJGXg3vSXmuJAbbYq4JoUMg,2285
419
+ nat/utils/reactive/observer.py,sha256=Q2ELgluZ2gTbiw7Uc0x59pQnRQcQdCLOA8Lov6R8Xog,2602
420
+ nat/utils/reactive/subject.py,sha256=urgPyDOOedqb15_zzfffolH6LDuFxVYPOoM-aE6FCaw,4879
421
+ nat/utils/reactive/subscription.py,sha256=68ZZdkFgQ0bMfjBhOeZIpdZOMPNbFALmXljBzSTQsWg,1701
422
+ nat/utils/reactive/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
423
+ nat/utils/reactive/base/observable_base.py,sha256=CRG8pQYOcR9-r9ZQkYNl0P99309rPTOokp72ZgYTSgk,2375
424
+ nat/utils/reactive/base/observer_base.py,sha256=UAlyAY_ky4q2t0P81RVFo2Bs_R7z5Nde55vRWqXUgz8,1875
425
+ nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
426
+ nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
427
+ nat/utils/settings/global_settings.py,sha256=CYHQX7F6MDR18vsVFTrEySpS9cBufuVGTUqZm9lREFs,7446
428
+ nvidia_nat-1.2.0rc7.dist-info/licenses/LICENSE-3rd-party.txt,sha256=8o7aySJa9CBvFshPcsRdJbczzdNyDGJ8b0J67WRUQ2k,183936
429
+ nvidia_nat-1.2.0rc7.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
430
+ nvidia_nat-1.2.0rc7.dist-info/METADATA,sha256=Ntck38UByu8mOsDkISQfbxckYYEo7uozXvAz5dVAc00,21688
431
+ nvidia_nat-1.2.0rc7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
432
+ nvidia_nat-1.2.0rc7.dist-info/entry_points.txt,sha256=FNh4pZVSe_61s29zdks66lmXBPtsnko8KSZ4ffv7WVE,653
433
+ nvidia_nat-1.2.0rc7.dist-info/top_level.txt,sha256=8-CJ2cP6-f0ZReXe5Hzqp-5pvzzHz-5Ds5H2bGqh1-U,4
434
+ nvidia_nat-1.2.0rc7.dist-info/RECORD,,
@@ -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
@@ -0,0 +1 @@
1
+ nat
@@ -1,41 +0,0 @@
1
- # SPDX-FileCopyrightText: Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
- # SPDX-License-Identifier: Apache-2.0
3
- #
4
- # Licensed under the Apache License, Version 2.0 (the "License");
5
- # you may not use this file except in compliance with the License.
6
- # You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS,
12
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- # See the License for the specific language governing permissions and
14
- # limitations under the License.
15
-
16
- from aiq.builder.builder import Builder
17
- from aiq.builder.framework_enum import LLMFrameworkEnum
18
- from aiq.cli.register_workflow import register_embedder_client
19
- from aiq.embedder.nim_embedder import NIMEmbedderModelConfig
20
-
21
-
22
- @register_embedder_client(config_type=NIMEmbedderModelConfig, wrapper_type=LLMFrameworkEnum.LANGCHAIN)
23
- async def nim_langchain(embedder_config: NIMEmbedderModelConfig, builder: Builder):
24
-
25
- from langchain_nvidia_ai_endpoints import NVIDIAEmbeddings
26
-
27
- yield NVIDIAEmbeddings(**embedder_config.model_dump(exclude={"type"}, by_alias=True))
28
-
29
-
30
- @register_embedder_client(config_type=NIMEmbedderModelConfig, wrapper_type=LLMFrameworkEnum.LLAMA_INDEX)
31
- async def nim_llamaindex(embedder_config: NIMEmbedderModelConfig, builder: Builder):
32
-
33
- from llama_index.embeddings.nvidia import NVIDIAEmbedding # pylint: disable=no-name-in-module
34
-
35
- config_obj = {
36
- **embedder_config.model_dump(exclude={"type", "model_name"}, by_alias=True),
37
- "model":
38
- embedder_config.model_name,
39
- }
40
-
41
- yield NVIDIAEmbedding(**config_obj)
@@ -1,93 +0,0 @@
1
- # SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
- # SPDX-License-Identifier: Apache-2.0
3
- #
4
- # Licensed under the Apache License, Version 2.0 (the "License");
5
- # you may not use this file except in compliance with the License.
6
- # You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS,
12
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- # See the License for the specific language governing permissions and
14
- # limitations under the License.
15
-
16
- import logging
17
-
18
- from aiq.builder.front_end import FrontEndBase
19
- from aiq.builder.function import Function
20
- from aiq.builder.workflow import Workflow
21
- from aiq.builder.workflow_builder import WorkflowBuilder
22
- from aiq.front_ends.mcp.mcp_front_end_config import MCPFrontEndConfig
23
-
24
- logger = logging.getLogger(__name__)
25
-
26
-
27
- class MCPFrontEndPlugin(FrontEndBase[MCPFrontEndConfig]):
28
- """MCP front end plugin implementation."""
29
-
30
- async def run(self) -> None:
31
- """Run the MCP server."""
32
- # Import FastMCP
33
- from mcp.server.fastmcp import FastMCP
34
-
35
- from aiq.front_ends.mcp.tool_converter import register_function_with_mcp
36
-
37
- # Create an MCP server with the configured parameters
38
- mcp = FastMCP(
39
- self.front_end_config.name,
40
- host=self.front_end_config.host,
41
- port=self.front_end_config.port,
42
- debug=self.front_end_config.debug,
43
- log_level=self.front_end_config.log_level,
44
- )
45
-
46
- # Build the workflow and register all functions with MCP
47
- async with WorkflowBuilder.from_config(config=self.full_config) as builder:
48
- # Build the workflow
49
- workflow = builder.build()
50
-
51
- # Get all functions from the workflow
52
- functions = self._get_all_functions(workflow)
53
-
54
- # Filter functions based on tool_names if provided
55
- if self.front_end_config.tool_names:
56
- logger.info(f"Filtering functions based on tool_names: {self.front_end_config.tool_names}")
57
- filtered_functions: dict[str, Function] = {}
58
- for function_name, function in functions.items():
59
- if function_name in self.front_end_config.tool_names:
60
- filtered_functions[function_name] = function
61
- else:
62
- logger.debug(f"Skipping function {function_name} as it's not in tool_names")
63
- functions = filtered_functions
64
-
65
- # Register each function with MCP
66
- for function_name, function in functions.items():
67
- register_function_with_mcp(mcp, function_name, function)
68
-
69
- # Add a simple fallback function if no functions were found
70
- if not functions:
71
- raise RuntimeError("No functions found in workflow. Please check your configuration.")
72
-
73
- # Start the MCP server
74
- await mcp.run_sse_async()
75
-
76
- def _get_all_functions(self, workflow: Workflow) -> dict[str, Function]:
77
- """Get all functions from the workflow.
78
-
79
- Args:
80
- workflow: The AIQ workflow.
81
-
82
- Returns:
83
- Dict mapping function names to Function objects.
84
- """
85
- functions: dict[str, Function] = {}
86
-
87
- # Extract all functions from the workflow
88
- for function_name, function in workflow.functions.items():
89
- functions[function_name] = function
90
-
91
- functions[workflow.config.workflow.type] = workflow
92
-
93
- return functions
@@ -1,3 +0,0 @@
1
- {
2
- "aiq": "nvidia-nat"
3
- }