nvidia-nat 1.3.0a20250929__py3-none-any.whl → 1.3.0a20251001__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 (51) hide show
  1. nat/agent/base.py +1 -1
  2. nat/agent/rewoo_agent/agent.py +100 -108
  3. nat/agent/rewoo_agent/register.py +4 -1
  4. nat/authentication/oauth2/oauth2_auth_code_flow_provider.py +26 -18
  5. nat/builder/builder.py +1 -1
  6. nat/builder/context.py +2 -2
  7. nat/builder/front_end.py +1 -1
  8. nat/cli/cli_utils/config_override.py +1 -1
  9. nat/cli/commands/mcp/mcp.py +2 -2
  10. nat/cli/commands/start.py +1 -1
  11. nat/cli/type_registry.py +1 -1
  12. nat/control_flow/router_agent/register.py +1 -1
  13. nat/data_models/api_server.py +9 -9
  14. nat/data_models/authentication.py +3 -9
  15. nat/data_models/dataset_handler.py +1 -1
  16. nat/eval/evaluator/base_evaluator.py +1 -1
  17. nat/eval/swe_bench_evaluator/evaluate.py +1 -1
  18. nat/eval/tunable_rag_evaluator/evaluate.py +1 -1
  19. nat/experimental/decorators/experimental_warning_decorator.py +1 -2
  20. nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py +1 -1
  21. nat/front_ends/console/authentication_flow_handler.py +82 -30
  22. nat/front_ends/console/console_front_end_plugin.py +1 -1
  23. nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py +52 -17
  24. nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py +188 -2
  25. nat/front_ends/fastapi/job_store.py +2 -2
  26. nat/front_ends/fastapi/message_handler.py +4 -4
  27. nat/front_ends/fastapi/message_validator.py +5 -5
  28. nat/front_ends/mcp/tool_converter.py +1 -1
  29. nat/llm/utils/thinking.py +1 -1
  30. nat/observability/exporter/base_exporter.py +1 -1
  31. nat/observability/exporter/span_exporter.py +1 -1
  32. nat/observability/exporter_manager.py +2 -2
  33. nat/observability/processor/batching_processor.py +1 -1
  34. nat/profiler/decorators/function_tracking.py +2 -2
  35. nat/profiler/parameter_optimization/parameter_selection.py +3 -4
  36. nat/profiler/parameter_optimization/pareto_visualizer.py +1 -1
  37. nat/retriever/milvus/retriever.py +1 -1
  38. nat/settings/global_settings.py +2 -2
  39. nat/tool/code_execution/local_sandbox/local_sandbox_server.py +1 -1
  40. nat/tool/datetime_tools.py +1 -1
  41. nat/utils/data_models/schema_validator.py +1 -1
  42. nat/utils/exception_handlers/automatic_retries.py +1 -1
  43. nat/utils/io/yaml_tools.py +1 -1
  44. nat/utils/type_utils.py +1 -1
  45. {nvidia_nat-1.3.0a20250929.dist-info → nvidia_nat-1.3.0a20251001.dist-info}/METADATA +2 -1
  46. {nvidia_nat-1.3.0a20250929.dist-info → nvidia_nat-1.3.0a20251001.dist-info}/RECORD +51 -51
  47. {nvidia_nat-1.3.0a20250929.dist-info → nvidia_nat-1.3.0a20251001.dist-info}/WHEEL +0 -0
  48. {nvidia_nat-1.3.0a20250929.dist-info → nvidia_nat-1.3.0a20251001.dist-info}/entry_points.txt +0 -0
  49. {nvidia_nat-1.3.0a20250929.dist-info → nvidia_nat-1.3.0a20251001.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
  50. {nvidia_nat-1.3.0a20250929.dist-info → nvidia_nat-1.3.0a20251001.dist-info}/licenses/LICENSE.md +0 -0
  51. {nvidia_nat-1.3.0a20250929.dist-info → nvidia_nat-1.3.0a20251001.dist-info}/top_level.txt +0 -0
@@ -139,7 +139,7 @@ class MessageValidator:
139
139
  text_content: str = str(data_model.payload)
140
140
  validated_message_content = SystemResponseContent(text=text_content)
141
141
 
142
- elif (isinstance(data_model, (ChatResponse, ChatResponseChunk))):
142
+ elif (isinstance(data_model, ChatResponse | ChatResponseChunk)):
143
143
  validated_message_content = SystemResponseContent(text=data_model.choices[0].message.content)
144
144
 
145
145
  elif (isinstance(data_model, ResponseIntermediateStep)):
@@ -204,7 +204,7 @@ class MessageValidator:
204
204
 
205
205
  validated_message_type: str = ""
206
206
  try:
207
- if (isinstance(data_model, (ResponsePayloadOutput, ChatResponse, ChatResponseChunk))):
207
+ if (isinstance(data_model, ResponsePayloadOutput | ChatResponse | ChatResponseChunk)):
208
208
  validated_message_type = WebSocketMessageType.RESPONSE_MESSAGE
209
209
 
210
210
  elif (isinstance(data_model, ResponseIntermediateStep)):
@@ -241,7 +241,7 @@ class MessageValidator:
241
241
  content: SystemResponseContent
242
242
  | Error = SystemResponseContent(),
243
243
  status: WebSocketMessageStatus = WebSocketMessageStatus.IN_PROGRESS,
244
- timestamp: str = str(datetime.datetime.now(datetime.timezone.utc))
244
+ timestamp: str = str(datetime.datetime.now(datetime.UTC))
245
245
  ) -> WebSocketSystemResponseTokenMessage | None:
246
246
  """
247
247
  Creates a system response token message with default values.
@@ -280,7 +280,7 @@ class MessageValidator:
280
280
  conversation_id: str | None = None,
281
281
  content: SystemIntermediateStepContent = SystemIntermediateStepContent(name="default", payload="default"),
282
282
  status: WebSocketMessageStatus = WebSocketMessageStatus.IN_PROGRESS,
283
- timestamp: str = str(datetime.datetime.now(datetime.timezone.utc))
283
+ timestamp: str = str(datetime.datetime.now(datetime.UTC))
284
284
  ) -> WebSocketSystemIntermediateStepMessage | None:
285
285
  """
286
286
  Creates a system intermediate step message with default values.
@@ -320,7 +320,7 @@ class MessageValidator:
320
320
  conversation_id: str | None = None,
321
321
  content: HumanPrompt,
322
322
  status: WebSocketMessageStatus = WebSocketMessageStatus.IN_PROGRESS,
323
- timestamp: str = str(datetime.datetime.now(datetime.timezone.utc))
323
+ timestamp: str = str(datetime.datetime.now(datetime.UTC))
324
324
  ) -> WebSocketSystemInteractionMessage | None:
325
325
  """
326
326
  Creates a system interaction message with default values.
@@ -175,7 +175,7 @@ def create_function_wrapper(
175
175
  # Handle different result types for proper formatting
176
176
  if isinstance(result, str):
177
177
  return result
178
- if isinstance(result, (dict, list)):
178
+ if isinstance(result, dict | list):
179
179
  return json.dumps(result, default=str)
180
180
  return str(result)
181
181
  except Exception as e:
nat/llm/utils/thinking.py CHANGED
@@ -19,10 +19,10 @@ import logging
19
19
  import types
20
20
  from abc import abstractmethod
21
21
  from collections.abc import AsyncGenerator
22
+ from collections.abc import Callable
22
23
  from collections.abc import Iterable
23
24
  from dataclasses import dataclass
24
25
  from typing import Any
25
- from typing import Callable
26
26
  from typing import TypeVar
27
27
 
28
28
  ModelType = TypeVar("ModelType")
@@ -372,7 +372,7 @@ class BaseExporter(Exporter):
372
372
  try:
373
373
  # Wait for all tasks to complete with a timeout
374
374
  await asyncio.wait_for(asyncio.gather(*self._tasks, return_exceptions=True), timeout=timeout)
375
- except asyncio.TimeoutError:
375
+ except TimeoutError:
376
376
  logger.warning("%s: Some tasks did not complete within %s seconds", self.name, timeout)
377
377
  except Exception as e:
378
378
  logger.exception("%s: Error while waiting for tasks: %s", self.name, e)
@@ -252,7 +252,7 @@ class SpanExporter(ProcessingExporter[InputSpanT, OutputSpanT], SerializeMixin):
252
252
 
253
253
  end_metadata = event.payload.metadata or {}
254
254
 
255
- if not isinstance(end_metadata, (dict, TraceMetadata)):
255
+ if not isinstance(end_metadata, dict | TraceMetadata):
256
256
  logger.warning("Invalid metadata type for step %s", event.UUID)
257
257
  return
258
258
 
@@ -184,7 +184,7 @@ class ExporterManager:
184
184
  try:
185
185
  await asyncio.wait_for(asyncio.gather(*cleanup_tasks, return_exceptions=True),
186
186
  timeout=self._shutdown_timeout)
187
- except asyncio.TimeoutError:
187
+ except TimeoutError:
188
188
  logger.warning("Some isolated exporters did not clean up within timeout")
189
189
 
190
190
  self._active_isolated_exporters.clear()
@@ -301,7 +301,7 @@ class ExporterManager:
301
301
  try:
302
302
  task.cancel()
303
303
  await asyncio.wait_for(task, timeout=self._shutdown_timeout)
304
- except asyncio.TimeoutError:
304
+ except TimeoutError:
305
305
  logger.warning("Exporter '%s' task did not shut down in time and may be stuck.", name)
306
306
  stuck_tasks.append(name)
307
307
  except asyncio.CancelledError:
@@ -241,7 +241,7 @@ class BatchingProcessor(CallbackProcessor[T, list[T]], Generic[T]):
241
241
  try:
242
242
  await asyncio.wait_for(self._shutdown_complete_event.wait(), timeout=self._shutdown_timeout)
243
243
  logger.debug("Shutdown completion detected via event")
244
- except asyncio.TimeoutError:
244
+ except TimeoutError:
245
245
  logger.warning("Shutdown completion timeout exceeded (%s seconds)", self._shutdown_timeout)
246
246
  return
247
247
 
@@ -40,10 +40,10 @@ def _serialize_data(obj: Any) -> Any:
40
40
 
41
41
  if isinstance(obj, dict):
42
42
  return {str(k): _serialize_data(v) for k, v in obj.items()}
43
- if isinstance(obj, (list, tuple, set)):
43
+ if isinstance(obj, list | tuple | set):
44
44
  return [_serialize_data(item) for item in obj]
45
45
 
46
- if isinstance(obj, (str, int, float, bool, type(None))):
46
+ if isinstance(obj, str | int | float | bool | type(None)):
47
47
  return obj
48
48
 
49
49
  # Fallback
@@ -13,8 +13,7 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- from typing import Optional
17
- from typing import Sequence
16
+ from collections.abc import Sequence
18
17
 
19
18
  import numpy as np
20
19
  import optuna
@@ -41,8 +40,8 @@ def pick_trial(
41
40
  study: Study,
42
41
  mode: str = "harmonic",
43
42
  *,
44
- weights: Optional[Sequence[float]] = None,
45
- ref_point: Optional[Sequence[float]] = None,
43
+ weights: Sequence[float] | None = None,
44
+ ref_point: Sequence[float] | None = None,
46
45
  eps: float = 1e-12,
47
46
  ) -> optuna.trial.FrozenTrial:
48
47
  """
@@ -324,7 +324,7 @@ def create_pareto_visualization(data_source: optuna.Study | Path | pd.DataFrame,
324
324
  if hasattr(data_source, 'trials_dataframe'):
325
325
  # Optuna study object
326
326
  trials_df, pareto_trials_df = load_trials_from_study(data_source)
327
- elif isinstance(data_source, (str, Path)):
327
+ elif isinstance(data_source, str | Path):
328
328
  # CSV file path
329
329
  trials_df, pareto_trials_df = load_trials_from_csv(Path(data_source), metric_names, directions)
330
330
  elif isinstance(data_source, pd.DataFrame):
@@ -214,7 +214,7 @@ def _wrap_milvus_results(res: list[Hit], content_field: str):
214
214
 
215
215
 
216
216
  def _wrap_milvus_single_results(res: Hit | dict, content_field: str) -> Document:
217
- if not isinstance(res, (Hit, dict)):
217
+ if not isinstance(res, Hit | dict):
218
218
  raise ValueError(f"Milvus search returned object of type {type(res)}. Expected 'Hit' or 'dict'.")
219
219
 
220
220
  if isinstance(res, Hit):
@@ -124,7 +124,7 @@ class Settings(HashableBaseModel):
124
124
  if (short_names[key.local_name] == 1):
125
125
  type_list.append((key.local_name, key.config_type))
126
126
 
127
- return typing.Union[tuple(typing.Annotated[x_type, Tag(x_id)] for x_id, x_type in type_list)]
127
+ return typing.Union[*tuple(typing.Annotated[x_type, Tag(x_id)] for x_id, x_type in type_list)]
128
128
 
129
129
  RegistryHandlerAnnotation = dict[
130
130
  str,
@@ -169,7 +169,7 @@ class Settings(HashableBaseModel):
169
169
  if (not os.path.exists(configuration_file)):
170
170
  loaded_config = {}
171
171
  else:
172
- with open(file_path, mode="r", encoding="utf-8") as f:
172
+ with open(file_path, encoding="utf-8") as f:
173
173
  try:
174
174
  loaded_config = json.load(f)
175
175
  except Exception as e:
@@ -62,7 +62,7 @@ class CodeExecutionResponse(Response):
62
62
  super().__init__(status=status_code, mimetype="application/json", response=result.model_dump_json())
63
63
 
64
64
  @classmethod
65
- def with_error(cls, status_code: int, error_message: str) -> 'CodeExecutionResponse':
65
+ def with_error(cls, status_code: int, error_message: str) -> CodeExecutionResponse:
66
66
  return cls(status_code,
67
67
  CodeExecutionResult(process_status=CodeExecutionStatus.ERROR, stdout="", stderr=error_message))
68
68
 
@@ -72,7 +72,7 @@ async def current_datetime(_config: CurrentTimeToolConfig, _builder: Builder):
72
72
  timezone_obj = _get_timezone_obj(headers)
73
73
 
74
74
  now = datetime.datetime.now(timezone_obj)
75
- now_machine_readable = now.strftime(("%Y-%m-%d %H:%M:%S %z"))
75
+ now_machine_readable = now.strftime("%Y-%m-%d %H:%M:%S %z")
76
76
 
77
77
  # Returns the current time in machine readable format with timezone offset.
78
78
  return f"The current time of day is {now_machine_readable}"
@@ -52,7 +52,7 @@ def validate_yaml(ctx, param, value):
52
52
  if value is None:
53
53
  return None
54
54
 
55
- with open(value, 'r', encoding="utf-8") as f:
55
+ with open(value, encoding="utf-8") as f:
56
56
  yaml.safe_load(f)
57
57
 
58
58
  return value
@@ -310,7 +310,7 @@ def patch_with_retry(
310
310
  descriptor = inspect.getattr_static(cls, name)
311
311
 
312
312
  # Skip dunders, privates and all descriptors we must not wrap
313
- if (name.startswith("_") or isinstance(descriptor, (property, staticmethod, classmethod))):
313
+ if (name.startswith("_") or isinstance(descriptor, property | staticmethod | classmethod)):
314
314
  continue
315
315
 
316
316
  original = descriptor.__func__ if isinstance(descriptor, types.MethodType) else descriptor
@@ -57,7 +57,7 @@ def yaml_load(config_path: StrPath) -> dict:
57
57
  """
58
58
 
59
59
  # Read YAML file
60
- with open(config_path, "r", encoding="utf-8") as stream:
60
+ with open(config_path, encoding="utf-8") as stream:
61
61
  config_str = stream.read()
62
62
 
63
63
  return yaml_loads(config_str)
nat/utils/type_utils.py CHANGED
@@ -250,7 +250,7 @@ class DecomposedType:
250
250
  remaining_args = tuple(arg for arg in self.args if arg is not types.NoneType)
251
251
 
252
252
  if (len(remaining_args) > 1):
253
- return DecomposedType(typing.Union[remaining_args])
253
+ return DecomposedType(typing.Union[*remaining_args])
254
254
  if (len(remaining_args) == 1):
255
255
  return DecomposedType(remaining_args[0])
256
256
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nvidia-nat
3
- Version: 1.3.0a20250929
3
+ Version: 1.3.0a20251001
4
4
  Summary: NVIDIA NeMo Agent toolkit
5
5
  Author: NVIDIA Corporation
6
6
  Maintainer: NVIDIA Corporation
@@ -232,6 +232,7 @@ Requires-Dist: numpy~=2.3; python_version >= "3.12"
232
232
  Requires-Dist: openinference-semantic-conventions~=0.1.14
233
233
  Requires-Dist: openpyxl~=3.1
234
234
  Requires-Dist: optuna~=4.4.0
235
+ Requires-Dist: pip>=24.3.1
235
236
  Requires-Dist: pkce==1.0.3
236
237
  Requires-Dist: pkginfo~=1.12
237
238
  Requires-Dist: platformdirs~=4.3
@@ -1,6 +1,6 @@
1
1
  aiq/__init__.py,sha256=qte-NlwgM990yEeyaRUxA4IBQq3PaEkQUCK3i95iwPw,2341
2
2
  nat/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- nat/agent/base.py,sha256=6u0z7NjrtCBxvByijQz4vrRNPb4yX9FqEyJixuBRQV4,10157
3
+ nat/agent/base.py,sha256=8cXz9Py8sFs7rTF4V9d3uzZAYFVquuWL0RQSkVMdnb0,10155
4
4
  nat/agent/dual_node.py,sha256=pfvXa1iLKtrNBHsh-tM5RWRmVe7QkyYhQNanOfWdJJs,2569
5
5
  nat/agent/register.py,sha256=rPhHDyqRBIKyon3HqhOmpAjqPP18Or6wDQb0wRUBIjQ,1032
6
6
  nat/agent/prompt_optimizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -14,9 +14,9 @@ nat/agent/react_agent/register.py,sha256=b97dfNtA0I3bNBOGdr9_akQ89UDwPHPPb7LqpsZ
14
14
  nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
15
  nat/agent/reasoning_agent/reasoning_agent.py,sha256=k_0wEDqACQn1Rn1MAKxoXyqOKsthHCQ1gt990YYUqHU,9575
16
16
  nat/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- nat/agent/rewoo_agent/agent.py,sha256=920IYuVBq9Kg4h3pbe_p4Gpz2mBjpGJxdLivYYo3ce8,27594
17
+ nat/agent/rewoo_agent/agent.py,sha256=XXgVXY9xwkyxnr093KXUtfgyNxAQbyGAecoGqN5mMLY,26199
18
18
  nat/agent/rewoo_agent/prompt.py,sha256=B0JeL1xDX4VKcShlkkviEcAsOKAwzSlX8NcAQdmUUPw,3645
19
- nat/agent/rewoo_agent/register.py,sha256=668zAag6eqajX_PIfh6c-0I0UQN5D-lRiz_mNKHXXjM,8954
19
+ nat/agent/rewoo_agent/register.py,sha256=WbW8yPZC7rcD2CZIy9MbKzA0yjRf7Ka7uu0C9CqbBpM,9123
20
20
  nat/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  nat/agent/tool_calling_agent/agent.py,sha256=4SIp29I56oznPRQu7B3HCoX53Ri3_o3BRRYNJjeBkF8,11006
22
22
  nat/agent/tool_calling_agent/register.py,sha256=ijiRfgDVtt2p7_q1YbIQZmUVV8-jf3yT18HwtKyReUI,6822
@@ -35,19 +35,19 @@ nat/authentication/http_basic_auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
35
35
  nat/authentication/http_basic_auth/http_basic_auth_provider.py,sha256=OXr5TV87SiZtzSK9i_E6WXWyVhWq2MfqO_SS1aZ3p6U,3452
36
36
  nat/authentication/http_basic_auth/register.py,sha256=N2VD0vw7cYABsLxsGXl5yw0htc8adkrB0Y_EMxKwFfk,1235
37
37
  nat/authentication/oauth2/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
38
- nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=TDZvGbpCLW6EDCI-a4Z9KnQyUEcRaJ5hBCPVyIuy-KY,5099
38
+ nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=Gs4zEGjYr3DQ_5AncooXFYbwX5v6cn1AbMe7GODrB9g,5327
39
39
  nat/authentication/oauth2/oauth2_auth_code_flow_provider_config.py,sha256=e165ysd2pX2WTbV3_FQKEjEaa4TAXkJ7B98WUGbqnGE,2204
40
40
  nat/authentication/oauth2/oauth2_resource_server_config.py,sha256=ltcNp8Dwb2Q4tlwMN5Cl0B5pouTLtXRoV-QopfqV45M,5314
41
41
  nat/authentication/oauth2/register.py,sha256=7rXhf-ilgSS_bUJsd9pOOCotL1FM8dKUt3ke1TllKkQ,1228
42
42
  nat/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- nat/builder/builder.py,sha256=vf5Vv5kq0gJ8D5bWw0bA64pDaszUWL19QHDiLuSP-Fs,11610
43
+ nat/builder/builder.py,sha256=okI3Y101hwF63AwazzxiahQx-W9eFZ_SNdFXzDuoftU,11608
44
44
  nat/builder/component_utils.py,sha256=-5vEWLwj9ch-1B9vbkBjCIkXB9SL8Tj9yl6zFwhV6wU,13832
45
- nat/builder/context.py,sha256=6mpk7H_gZ5_gVOKbWp8BrToqJraP1GEh9-uKX4vRrpA,12462
45
+ nat/builder/context.py,sha256=9GSVtWc-vx48m-TpHUWS5s60ixXmn5xA5-RAMiGMFzU,12434
46
46
  nat/builder/embedder.py,sha256=NPkOEcxt_-wc53QRijCQQDLretRUYHRYaKoYmarmrBk,965
47
47
  nat/builder/eval_builder.py,sha256=I-ScvupmorClYoVBIs_PhSsB7Xf9e2nGWe0rCZp3txo,6857
48
48
  nat/builder/evaluator.py,sha256=xWHMND2vcAUkdFP7FU3jnVki1rUHeTa0-9saFh2hWKs,1162
49
49
  nat/builder/framework_enum.py,sha256=n7IaTQBxhFozIQqRMcX9kXntw28JhFzCj82jJ0C5tNU,901
50
- nat/builder/front_end.py,sha256=mHooS1M7mVo1swSgbYoqbzQENXkuG7_Es9q4gFiuL8E,2175
50
+ nat/builder/front_end.py,sha256=FCJ87NSshVVuTg8zZrq3YAr_u0RaYVZVcibnqlRFy-M,2173
51
51
  nat/builder/function.py,sha256=RrfKSCt9WunPhwn5fk8X7wuvb9A21iO8T-IySHUi3KM,27763
52
52
  nat/builder/function_base.py,sha256=0Eg8RtjWhEU3Yme0CVxcRutobA0Qo8-YHZLI6L2qAgM,13116
53
53
  nat/builder/function_info.py,sha256=7Rmrn-gOFrT2TIJklJwA_O-ycx_oimwZ0-qMYpbuZrU,25161
@@ -61,14 +61,14 @@ nat/cli/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
61
61
  nat/cli/entrypoint.py,sha256=7NHq3Grb_qzpJzzbb0YtTsWd4YhA6y9ljHwsOQPQAIs,4928
62
62
  nat/cli/main.py,sha256=KzUSDB1TGzHRP_Fnq5XJRopx-i9S2oycgQrXrf2vDkE,2164
63
63
  nat/cli/register_workflow.py,sha256=DOQQgUWB_NO9k7nlkP4cAx_RX03Cndk032K-kqyuvEs,23285
64
- nat/cli/type_registry.py,sha256=R301m91ar2vDorJvN8oqqGB9PhsoyNvToiYL3x2Q1io,48838
64
+ nat/cli/type_registry.py,sha256=HbPU-7lzSHZ4aepJ3qOgfnl5LzK6-KHwcerhFpWw6mU,48839
65
65
  nat/cli/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- nat/cli/cli_utils/config_override.py,sha256=hLhJDjkLTLkUSYXMjK1qT7USy7ds1ddEDxcEFETxK98,8900
66
+ nat/cli/cli_utils/config_override.py,sha256=6eYS_dYsf-4fSc70_z9dVc66EaTDsjOVwVFWQfKGlZE,8899
67
67
  nat/cli/cli_utils/validation.py,sha256=KVZvAkWZx-QVVBuCFTcH2muLzMB7ONQA1GE2TzEVN78,1288
68
68
  nat/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
69
  nat/cli/commands/evaluate.py,sha256=_gSK9km6DQNxFcOZnOpzYuXtM0MG3-ng6S-1UNccG80,4748
70
70
  nat/cli/commands/optimize.py,sha256=07b8B6vPDljUgZtcnpaGFi4E10mqK4IwLMV1Y0ZzvQA,2954
71
- nat/cli/commands/start.py,sha256=kYXLWj-jNQZLyC1JjM4UEvqSK9vP7As6C9pzhNwHQsg,10431
71
+ nat/cli/commands/start.py,sha256=kT1HS3ipbZcXvCiC9j35LvO8mDILlvo7L2nayuTKabE,10431
72
72
  nat/cli/commands/uninstall.py,sha256=KJDe-BCUD5ws_lTpCNPj3Ac26TQO8kys0AZqjZsljfs,3180
73
73
  nat/cli/commands/validate.py,sha256=mseAUfwRP8RL2Jc_a7MA9_0j9CRQFojEFPTPSuLiFGI,1669
74
74
  nat/cli/commands/configure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -83,7 +83,7 @@ nat/cli/commands/info/info.py,sha256=BGqshIEDpNRH9hM-06k-Gq-QX-qNddPICSWCN-ReC-g
83
83
  nat/cli/commands/info/list_channels.py,sha256=K97TE6wtikgImY-wAbFNi0HHUGtkvIFd2woaG06VkT0,1277
84
84
  nat/cli/commands/info/list_components.py,sha256=QlAJVONBA77xW8Lx6Autw5NTAZNy_VrJGr1GL9MfnHM,4532
85
85
  nat/cli/commands/mcp/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
86
- nat/cli/commands/mcp/mcp.py,sha256=Phtxegf0Ww89NHrwj4dEZh3vaHxjm7RV7NZMByUGhpM,43860
86
+ nat/cli/commands/mcp/mcp.py,sha256=pwpnWJS1UztkTZYQCZjG9T7IPnk5Je9tA63KmhpYbn8,43860
87
87
  nat/cli/commands/object_store/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
88
88
  nat/cli/commands/object_store/object_store.py,sha256=_ivB-R30a-66fNy-fUzi58HQ0Ay0gYsGz7T1xXoRa3Y,8576
89
89
  nat/cli/commands/registry/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
@@ -109,16 +109,16 @@ nat/control_flow/sequential_executor.py,sha256=iFbnyVxOsbltLfNhukH7yv0rGYpva4z-A
109
109
  nat/control_flow/router_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
110
110
  nat/control_flow/router_agent/agent.py,sha256=IvMqQuJTwsdARbgPdtfGVTwKO4XZfVLNDui_Kl843Pw,13695
111
111
  nat/control_flow/router_agent/prompt.py,sha256=fIAiNsAs1zXRAatButR76zSpHJNxSkXXKKmCL86a58A,1720
112
- nat/control_flow/router_agent/register.py,sha256=p15Jy05PjJhXRrjqWiEgy47zmc-CFCuXd7FhInMoqIE,4146
112
+ nat/control_flow/router_agent/register.py,sha256=4RGmS9sy-QtIMmvh8mfMcR1VqxFPLpG4RckWCIExh40,4144
113
113
  nat/data_models/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
114
114
  nat/data_models/agent.py,sha256=IwDyb9Zc3R4Zd5rFeqt7q0EQswczAl5focxV9KozIzs,1625
115
- nat/data_models/api_server.py,sha256=Zl0eAd-yV9PD8vUH8eWRvXFcUBdY2tENKe73q-Uxxgg,25699
116
- nat/data_models/authentication.py,sha256=wpH8tpy_wt1aA3eKIgbc8HfYdr_g6AfM7-NfWBZh-KA,8528
115
+ nat/data_models/api_server.py,sha256=qhx0TcVAVOTyHvOtnOw420ODZZt5ZYlsj6uoXVqW8Yk,25626
116
+ nat/data_models/authentication.py,sha256=XPu9W8nh4XRSuxPv3HxO-FMQ_JtTEoK6Y02JwnzDwTg,8457
117
117
  nat/data_models/common.py,sha256=nXXfGrjpxebzBUa55mLdmzePLt7VFHvTAc6Znj3yEv0,5875
118
118
  nat/data_models/component.py,sha256=b_hXOA8Gm5UNvlFkAhsR6kEvf33ST50MKtr5kWf75Ao,1894
119
119
  nat/data_models/component_ref.py,sha256=KFDWFVCcvJCfBBcXTh9f3R802EVHBtHXh9OdbRqFmdM,4747
120
120
  nat/data_models/config.py,sha256=pWy-rHI7lfn1-_Vtl6HAmVZs2rC7GZF54ZojoEp0ZbQ,18817
121
- nat/data_models/dataset_handler.py,sha256=UDQLpStUwLEMm0e6BvuOFEsHYSopWu5DhinxEv2U6og,5523
121
+ nat/data_models/dataset_handler.py,sha256=bFPahRkmPtSmA4DVSUwKg-NJRHP7TGQDSRJiSv5UhZY,5518
122
122
  nat/data_models/discovery_metadata.py,sha256=_l97iQsqp_ihba8CbMBQ73mH1sipTQ19GiJDdzQYQGY,13432
123
123
  nat/data_models/embedder.py,sha256=nPhthEQDtzAMGd8gFRB1ZfJpN5M9DJvv0h28ohHnTmI,1002
124
124
  nat/data_models/evaluate.py,sha256=L0GdNh_c8jii-MiK8oHW9sUUsGO3l1FMsprr-UazT5c,4836
@@ -167,7 +167,7 @@ nat/eval/dataset_handler/dataset_downloader.py,sha256=w5Kjj7Dn2gQ14ekgt3rtGT8EPG
167
167
  nat/eval/dataset_handler/dataset_filter.py,sha256=HrK0m3SQnPX6zOcKwJwYMrD9O-f6aOw8Vo3j9RKszqE,2115
168
168
  nat/eval/dataset_handler/dataset_handler.py,sha256=my28rKvQiiRN_h2TJz6fdKeMOjP3LC3_e2aJNnPPYhE,18159
169
169
  nat/eval/evaluator/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
170
- nat/eval/evaluator/base_evaluator.py,sha256=pubxUm2DXkruSiYPkzezPj3-gzFEDAFGTYYTw7iXglU,3233
170
+ nat/eval/evaluator/base_evaluator.py,sha256=5WaVGhCGzkynCJyQdxRv7CtqLoUpr6B4O8tilP_gb3g,3232
171
171
  nat/eval/evaluator/evaluator_model.py,sha256=riGCcDW8YwC3Kd1yoVmbMdJE1Yf2kVmO8uhsGsKKJA4,1878
172
172
  nat/eval/rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
173
  nat/eval/rag_evaluator/evaluate.py,sha256=iQ_fUg1PAuIB2gH6Y7Gz9PeztsdhEswUjyUMa5ZXEx4,8399
@@ -179,13 +179,13 @@ nat/eval/runtime_evaluator/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-i
179
179
  nat/eval/runtime_evaluator/evaluate.py,sha256=HTUDWrUD6G8ggkofDCRhwuXWdQTb3V7o9FJ2_vc_LyQ,5379
180
180
  nat/eval/runtime_evaluator/register.py,sha256=eOqokSisoaYzCANzyLXmGGCGUp0rLXdcqHXtDW_bZ5s,4509
181
181
  nat/eval/swe_bench_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
- nat/eval/swe_bench_evaluator/evaluate.py,sha256=SkP8spu351UBgzjdG8ox6uHpiTAWxe2CCIMRxvOIMfg,9832
182
+ nat/eval/swe_bench_evaluator/evaluate.py,sha256=agiRVnUBT53vjjYEd5dCscLy6FTj12s_gYgmaI3agy0,9827
183
183
  nat/eval/swe_bench_evaluator/register.py,sha256=5mzvBTUBdqahBZNU4KjB1go81cObo9F4iA3y_eOJ86g,1537
184
184
  nat/eval/trajectory_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
185
  nat/eval/trajectory_evaluator/evaluate.py,sha256=wtbKyVs-jE0xjkDLOYHVwoa3J1yaWyO0FvZpxajVRE0,3242
186
186
  nat/eval/trajectory_evaluator/register.py,sha256=QijI0Lf_9OxQUgOlNIbSG5H60QNy6dKjpt7Cz4p_IWk,1715
187
187
  nat/eval/tunable_rag_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
- nat/eval/tunable_rag_evaluator/evaluate.py,sha256=qpZqdJs8IW9tI-59gNhX7HQhmCMC3kX1PMKsKHZgEPY,13012
188
+ nat/eval/tunable_rag_evaluator/evaluate.py,sha256=SzZYwE0juuNv6o9Pbddxi4edxRXlo87SJJB0FAqM_ic,13021
189
189
  nat/eval/tunable_rag_evaluator/register.py,sha256=jYhPz8Xwsxyb7E0xpkAcQFT20xjSoYd_4qOJ7ltvUzU,2558
190
190
  nat/eval/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
191
  nat/eval/utils/eval_trace_ctx.py,sha256=hN0YZ0wMOPzh9I-iSav-cGdxY3RWQWoE_tk5BxUf1mc,3264
@@ -194,7 +194,7 @@ nat/eval/utils/tqdm_position_registry.py,sha256=9CtpCk1wtYCSyieHPaSp8nlZu6EcNUOa
194
194
  nat/eval/utils/weave_eval.py,sha256=fma5x9JbWpWrfQbfMHcjMovlRVR0v35yfNt1Avt6Vro,7719
195
195
  nat/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
196
196
  nat/experimental/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
- nat/experimental/decorators/experimental_warning_decorator.py,sha256=zB_wEATyNT_9QcR2KIMzzHAZpYcU4EykiZ64nkw3qJY,5786
197
+ nat/experimental/decorators/experimental_warning_decorator.py,sha256=ADj8fR9jL2FGFDcR8zJZbdvO9Leur8pUEVEUqpfNENY,5757
198
198
  nat/experimental/test_time_compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
199
  nat/experimental/test_time_compute/register.py,sha256=7atPs0bUk8isVKwOpbG-3bTEjfPMDO3dU-TCjJui4bs,1568
200
200
  nat/experimental/test_time_compute/editing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -226,15 +226,15 @@ nat/experimental/test_time_compute/search/single_shot_multi_plan_planner.py,sha2
226
226
  nat/experimental/test_time_compute/selection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
227
  nat/experimental/test_time_compute/selection/best_of_n_selector.py,sha256=0cFHOTfNsHSguP6Xw5f3MMgJZR-pbkaa4xQCACEOqqg,2489
228
228
  nat/experimental/test_time_compute/selection/llm_based_agent_output_selector.py,sha256=qAVrMck-iDDVci3rg4F_jCky6QEwmJFzWw-2HB0G6EU,5798
229
- nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py,sha256=PGtb6uRtFrk8zqBDvgKBPqRJtILQlLFPf9CPGj_CXEo,6700
229
+ nat/experimental/test_time_compute/selection/llm_based_output_merging_selector.py,sha256=8bXzhpKAfGafGPN8TuXaGqZFuNk9A4IKqFFKan7NHLE,6709
230
230
  nat/experimental/test_time_compute/selection/llm_based_plan_selector.py,sha256=GY85s6mxHcILeXS5GK_-F-mDYrArOw1WB1JsYorrrcQ,5611
231
231
  nat/experimental/test_time_compute/selection/threshold_selector.py,sha256=9E__TMt5sOhm-KLTWdGKUrxQ6cKYqFjO-CoF_kNILPk,2415
232
232
  nat/front_ends/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
233
233
  nat/front_ends/register.py,sha256=_C6AFpsQ8hUXavKHaBMy0g137fOcLfEjyU0EAuYqtao,857
234
234
  nat/front_ends/console/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
235
- nat/front_ends/console/authentication_flow_handler.py,sha256=Q1A7dv-pUlzsGZ8NXu8r-aGCqRiFqadPPBOw2TmyUNk,9566
235
+ nat/front_ends/console/authentication_flow_handler.py,sha256=iv8sm7i1mtVT60lfXwwqDrlQfNZ1bl1bPfWkaH5oaLA,12147
236
236
  nat/front_ends/console/console_front_end_config.py,sha256=wkMXk-RCdlEj3303kB1gh47UKJnubX2R-vzBzhedpS4,1318
237
- nat/front_ends/console/console_front_end_plugin.py,sha256=euUxC794jhZgODNMfxriCkeHn9eluU1UwWYUnyDh-iU,4315
237
+ nat/front_ends/console/console_front_end_plugin.py,sha256=vsaBwCvgsyDNEM2YdH5bKivXWa4uPTfMv9cQaoEh7uI,4310
238
238
  nat/front_ends/console/register.py,sha256=2Kf6Mthx6jzWzU8YdhYIR1iABmZDvs1UXM_20npXWXs,1153
239
239
  nat/front_ends/cron/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
240
240
  nat/front_ends/fastapi/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
@@ -242,19 +242,19 @@ nat/front_ends/fastapi/dask_client_mixin.py,sha256=N_tw4yxA7EKIFTKp5_C2ZksIZucWx
242
242
  nat/front_ends/fastapi/fastapi_front_end_config.py,sha256=BcuzrVlA5b7yYyQKNvQgEanDBtKEHdpC8TAd-O7lfF0,11992
243
243
  nat/front_ends/fastapi/fastapi_front_end_controller.py,sha256=ei-34KCMpyaeAgeAN4gVvSGFjewjjRhHZPN0FqAfhDY,2548
244
244
  nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=e33YkMcLzvm4OUG34bhl-WYiBTqkR-_wJYKG4GODkGM,11169
245
- nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=-141jmq4nYQLa0XJmRoefq4Mv7svr6J7MhDKa199WWU,53007
245
+ nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=s2HoeRcR4TjvBTsv9f92snNRoyqG0Des6bB5SOfThaU,62567
246
246
  nat/front_ends/fastapi/intermediate_steps_subscriber.py,sha256=kbyWlBVpyvyQQjeUnFG9nsR4RaqqNkx567ZSVwwl2RU,3104
247
- nat/front_ends/fastapi/job_store.py,sha256=S0ab_MyJvr3z28l1UY5rhORt6eiEls9_xcQDrNrBJm8,22746
247
+ nat/front_ends/fastapi/job_store.py,sha256=cWIBnIgRdkGL7qbBunEKzTYzdPp3l3QCDHMP-qTZJpc,22743
248
248
  nat/front_ends/fastapi/main.py,sha256=s8gXCy61rJjK1aywMRpgPvzlkMGsCS-kI_0EIy4JjBM,2445
249
- nat/front_ends/fastapi/message_handler.py,sha256=mMgw1B3zCzLBiOWRzDD55--K-J4lZ94zrug3xh87ijg,15206
250
- nat/front_ends/fastapi/message_validator.py,sha256=g4pfyQ0Yhv8Ec_Pi0Ps7TGLIzFwys3SCwsjVZEEFBHw,17496
249
+ nat/front_ends/fastapi/message_handler.py,sha256=8pdA3K8hLCcR-ohHXYtLUgX1U2sYFzqgeslIszlQbRo,15181
250
+ nat/front_ends/fastapi/message_validator.py,sha256=BmaKTYWym6FR7L41hqmj0AK-F4OpYxfufQvsIIRbbIA,17468
251
251
  nat/front_ends/fastapi/register.py,sha256=rA12NPFgV9ZNHOEIgB7_SB6NytjRxgBTLo7fJ-73_HM,1153
252
252
  nat/front_ends/fastapi/response_helpers.py,sha256=MGE9E73sQSCYjsR5YXRga2qbl44hrTAPW2N5Ui3vXX0,9028
253
253
  nat/front_ends/fastapi/step_adaptor.py,sha256=J6UtoXL9De8bgAg93nE0ASLUHZbidWOfRiuFo-tyZgY,12412
254
254
  nat/front_ends/fastapi/utils.py,sha256=oYuuLsugx-fpy6u4xd9gL7g9kfwsyKOnwH5YOwH633w,1998
255
255
  nat/front_ends/fastapi/auth_flow_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
256
  nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py,sha256=69ye-nJ81jAoD1cVYv86-AUYu2-Uk8ZqU_m8AVO9vT8,1280
257
- nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=5HX6mpKPmErkhwIAwFIGONYj_CkPrhCG7L56-79o7Yw,4862
257
+ nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=qU8Kba48PD7TitygQNsZfx2rrluKlpRm7Zx_C6DtOnc,6576
258
258
  nat/front_ends/fastapi/html_snippets/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
259
259
  nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py,sha256=BNpWwzmA58UM0GK4kZXG4PHJy_5K9ihaVHu8SgCs5JA,1131
260
260
  nat/front_ends/mcp/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
@@ -263,7 +263,7 @@ nat/front_ends/mcp/mcp_front_end_config.py,sha256=fFbg800FDJfwv-nXc0jEPaNVtW4ApE
263
263
  nat/front_ends/mcp/mcp_front_end_plugin.py,sha256=NiIIgApk1X2yAEwtG9tHaY6SexQMbZrd6Drs7uIJix8,5055
264
264
  nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=jMclC0qEd910oTGCqd1kQ8WjP3WPdQKTl854-2bU_KI,10200
265
265
  nat/front_ends/mcp/register.py,sha256=3aJtgG5VaiqujoeU1-Eq7Hl5pWslIlIwGFU2ASLTXgM,1173
266
- nat/front_ends/mcp/tool_converter.py,sha256=J0GS85qs2rVO2ZyGfxQcbtlWevoMJCEiEfa83PK10Ew,11548
266
+ nat/front_ends/mcp/tool_converter.py,sha256=jyH6tFKUDXSfRBKkv8WjvJsQt05zk3FJBTCwnIuUh5M,11547
267
267
  nat/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
268
268
  nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=py_yA9XAw-yHfK5cQJLM8ElnubEEM2ac8M0bvz-ScWs,1801
269
269
  nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -276,7 +276,7 @@ nat/llm/register.py,sha256=7xDYdK4w4opAwIjzDM5x7moJXT3QeEGaGGc_nDfY0i4,1090
276
276
  nat/llm/utils/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
277
277
  nat/llm/utils/env_config_value.py,sha256=kBVsv0pEokIAfDQx5omR7_FevFv_5fTPswcbnvhVT2c,3548
278
278
  nat/llm/utils/error.py,sha256=gFFDG_v_3hBZVWpcD7HWkno-NBHDjXae7qDGnfiCNwA,820
279
- nat/llm/utils/thinking.py,sha256=W5gOu5m3pJ7VQjyAEo--QMLMSjQK6WraaUT-lwKEsh4,7593
279
+ nat/llm/utils/thinking.py,sha256=bG2zjvSgRASlSghkVpGvvFoRqEESDVNknQtDYXyFyi0,7602
280
280
  nat/memory/__init__.py,sha256=ARS_HJipPR4mLDqw3VISSQLzeezru_vgNgsi1Ku0GRE,828
281
281
  nat/memory/interfaces.py,sha256=lyj1TGr3Fhibul8Y64Emj-BUEqDotmmFoVCEMqTujUA,5531
282
282
  nat/memory/models.py,sha256=c5dA7nKHQ4AS1_ptQZcfC_oXO495-ehocnf_qXTE6c8,4319
@@ -287,15 +287,15 @@ nat/object_store/interfaces.py,sha256=5NbsE9TccihOf5ScG04hE1eNOaiajOZIUOeK_Kvukk
287
287
  nat/object_store/models.py,sha256=xsch4o3GzEFxVbFEYBfr92lEMZk5XHHr224WZGsQUNM,1537
288
288
  nat/object_store/register.py,sha256=jNuZfyG2rSuxS-DNK_aFdgfjiHK3VC1_4A5lmpmRP_A,756
289
289
  nat/observability/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
290
- nat/observability/exporter_manager.py,sha256=4AcF-EbuJ9lTfL06NL1Nz6rgmzkHWOPZJ9KSJlFiv2E,13852
290
+ nat/observability/exporter_manager.py,sha256=sJqYEF68-83WPkhp7Sj6ULWV0FoWM8cXEZ4ZilaXFhs,13836
291
291
  nat/observability/register.py,sha256=Hpk5aYYXCKdvkTqE245QgtmhCKrGh75uZZoefcxa38Y,4225
292
292
  nat/observability/exporter/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
293
- nat/observability/exporter/base_exporter.py,sha256=tP7c5O-gQnHB_1TwIJJUib1xmtUhX4f4Mf_bmpejtkI,16612
293
+ nat/observability/exporter/base_exporter.py,sha256=OGSv-_688TmzdGUeax4iMBwvaHICPSyWmklsDQanbtM,16604
294
294
  nat/observability/exporter/exporter.py,sha256=fqF0GYuhZRQEq0skq_FK2nlnsaUAzLpQi-OciaOkRno,2391
295
295
  nat/observability/exporter/file_exporter.py,sha256=XYsFjF8ob4Ag-SyGtKEh6wRU9lBx3lbdu7Uo85NvVyo,1465
296
296
  nat/observability/exporter/processing_exporter.py,sha256=U_VE1VZZ2giGE-OUGH4pnHTYW2Nwcwfx4bFLL7_iu9M,25044
297
297
  nat/observability/exporter/raw_exporter.py,sha256=0ROEd-DlLP6pIxl4u2zJ6PMVrDrQa0DMHFDRsdGQMIk,1859
298
- nat/observability/exporter/span_exporter.py,sha256=p2rugOIyubBk_Frg1c-x-THzvFZt8q8HhYssKUp8Hdg,13250
298
+ nat/observability/exporter/span_exporter.py,sha256=ECAewXffW9Ms_0rT0WpF56GOra_4UEXdzKmWqJHrKVs,13249
299
299
  nat/observability/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
300
300
  nat/observability/mixin/batch_config_mixin.py,sha256=DixQq-jRhBFJvpOX-gq7GvPmZCPOXQdacylyEuhZ6y0,1399
301
301
  nat/observability/mixin/collector_config_mixin.py,sha256=3iptkRH9N6JgcsPq7GyjjJVAoxjd-l42UKE7iSF4Hq8,1087
@@ -307,7 +307,7 @@ nat/observability/mixin/serialize_mixin.py,sha256=DgRHJpXCz9qHFYzhlTTx8Dkj297Eyl
307
307
  nat/observability/mixin/tagging_config_mixin.py,sha256=m-AUeLsiiKPMdMv_0TKAFL18BvVJ4tRzPoRCVpzyfN8,1777
308
308
  nat/observability/mixin/type_introspection_mixin.py,sha256=ZHMRmp38R2KypnPBJyenf6rW8jVoz0cWnFlG8rHLtpA,20327
309
309
  nat/observability/processor/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
310
- nat/observability/processor/batching_processor.py,sha256=R0Qy3bHmf-QBM6FJmjmccdsf60JuvYLU-tV4kvy2hBA,13762
310
+ nat/observability/processor/batching_processor.py,sha256=SBxESG24n5Iiz982DiVPMGy82L2gi9auWkTLALsUsrU,13754
311
311
  nat/observability/processor/callback_processor.py,sha256=T5DsEm4HCUOi1VL29XCpaK04sYQvJ75KZLH-mlJGQgk,1547
312
312
  nat/observability/processor/falsy_batch_filter_processor.py,sha256=CInyZ1eIjtD1W6imPbuqwUeoWOMQ_0J0M9nPL6XwhTo,1778
313
313
  nat/observability/processor/intermediate_step_serializer.py,sha256=aHeCmixyop7uxNnKmrUZ8SIFeBNS05gYohKLepqbrcQ,1249
@@ -344,7 +344,7 @@ nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=BknzhQNB-MDMhR
344
344
  nat/profiler/callbacks/token_usage_base_model.py,sha256=X0b_AbBgVQAAbgbDMim-3S3XdQ7PaPs9qMUACvMAe5o,1104
345
345
  nat/profiler/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
346
  nat/profiler/decorators/framework_wrapper.py,sha256=lKX-nMkwKc4Pcb3PiA_w6f0Zfa_aC8BQsDB1pWwJTjI,7680
347
- nat/profiler/decorators/function_tracking.py,sha256=ro4KdkoS9Y2cF36wxbY-XCQHGpL6o-JNU0MC0uP4jFg,16769
347
+ nat/profiler/decorators/function_tracking.py,sha256=-ai_4djCbNwMan5SiTq3MVMBrcKoUWyxzviAV-Eh4xg,16771
348
348
  nat/profiler/forecasting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
349
  nat/profiler/forecasting/config.py,sha256=5BhMa8csuPCjEnTaNQjo_2IoO7esh1ch02MoSWkvwPw,791
350
350
  nat/profiler/forecasting/model_trainer.py,sha256=6Ci2KN4sNj1V3yduHXlA0tn50yHUmM2VcbRRS2L96OA,2456
@@ -368,8 +368,8 @@ nat/profiler/parameter_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQ
368
368
  nat/profiler/parameter_optimization/optimizable_utils.py,sha256=93Pl8A14Zq_f3XsxSH-yFnEJ6B7W5hp7doPnPoLlRB4,3714
369
369
  nat/profiler/parameter_optimization/optimizer_runtime.py,sha256=rXmCOq81o7ZorQOUYociVjuO3NO9CIjFBbwql2u_4H4,2715
370
370
  nat/profiler/parameter_optimization/parameter_optimizer.py,sha256=CxRFSnl0w0JQvijsY-gszUNxvSrihQ0Jl9ySYClsNFI,6544
371
- nat/profiler/parameter_optimization/parameter_selection.py,sha256=-cKhoEgwC2K-brHOiLmgLnxk23bRMDefDCZSwvCqqJM,4007
372
- nat/profiler/parameter_optimization/pareto_visualizer.py,sha256=06SqR6b50dI4emJiGPLV0en19utf3jrrwLUYf_LwNDs,15904
371
+ nat/profiler/parameter_optimization/parameter_selection.py,sha256=pfnNQIx1evNICgChsOJXIFQHoL1R_kmh_vNDsVMC9kg,3982
372
+ nat/profiler/parameter_optimization/pareto_visualizer.py,sha256=IU-4Kw3cVKfDBmXyxtzDf5B325hizMmEYjB9_QJGwD0,15903
373
373
  nat/profiler/parameter_optimization/prompt_optimizer.py,sha256=_AmdeB1jRamd93qR5UqRy5LweYR3bjnD7zoLxzXYE0k,17658
374
374
  nat/profiler/parameter_optimization/update_helpers.py,sha256=NxWhrGVchbjws85pPd-jS-C14_l70QvVSvEfENndVcY,2339
375
375
  nat/registry_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -400,7 +400,7 @@ nat/retriever/models.py,sha256=J75RLAFCPaxFUzJHSe25s6mqKcRPcw9wZjkQeuIaNGo,2432
400
400
  nat/retriever/register.py,sha256=jzvq063XByWmFbCft2pv0_uHgIwnhN1d9WNDPgQTexQ,872
401
401
  nat/retriever/milvus/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
402
402
  nat/retriever/milvus/register.py,sha256=FaWvUFj4rU6qcui-G459Z-bQV-QAVR3PNONT1qu7jxs,4027
403
- nat/retriever/milvus/retriever.py,sha256=LfcugsI2Y5szIy29nsuBFOSMmLa7AQhwpNqmf_a7RLU,9486
403
+ nat/retriever/milvus/retriever.py,sha256=wfWi-Ck17ZXbrCJE3MiEVD4DuVeeAkgifdAkoISqNa0,9485
404
404
  nat/retriever/nemo_retriever/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
405
405
  nat/retriever/nemo_retriever/register.py,sha256=3XdrvEJzX2Zc8wpdm__4YYlEWBW-FK3tl_BwOWtn-4w,2893
406
406
  nat/retriever/nemo_retriever/retriever.py,sha256=gi3_qJFqE-iqRh3of_cmJg-SwzaQ3z24zA9LwY_MSLY,6930
@@ -410,11 +410,11 @@ nat/runtime/runner.py,sha256=Kzm5GRrGUFMQ_fbLOCJumYc4R-JXdTm5tUw2yMMDJpE,6450
410
410
  nat/runtime/session.py,sha256=DG4cpVg6GCVFY0cGzZnz55eLj0LoK5Q9Vg3NgbTqOHM,8029
411
411
  nat/runtime/user_metadata.py,sha256=ce37NRYJWnMOWk6A7VAQ1GQztjMmkhMOq-uYf2gNCwo,3692
412
412
  nat/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
413
- nat/settings/global_settings.py,sha256=JSlYnW3CeGJYGxlaXLz5F9xXf72I5TUz-w6qngG5di0,12476
413
+ nat/settings/global_settings.py,sha256=dEw9nkyx7pEEufmLS1o3mWhcXy7-ZpES4BZx1OWfg5M,12467
414
414
  nat/test/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
415
415
  nat/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
416
416
  nat/tool/chat_completion.py,sha256=u9i39TuIPrCSWrNOw57QYD3i6pPbxV-7Gox8GRx9Vz0,3251
417
- nat/tool/datetime_tools.py,sha256=yZV5lE3FsQuIZE3B36gg38hxfavxgaG04eVFbL0UBTI,3239
417
+ nat/tool/datetime_tools.py,sha256=JVYbzRVgv_4XrZwaujsiq_94dDUi6R3lAwlBjGZ3lw0,3237
418
418
  nat/tool/document_search.py,sha256=pLXWNfrddwu45Qa7z3pxfCUQEpTgGekvE-2WzM-CTP4,6751
419
419
  nat/tool/github_tools.py,sha256=Pn6p6ebLClNUy6MJIWf-Pl5NguMUT-IJ-bhmpJmvBrg,21900
420
420
  nat/tool/nvidia_rag.py,sha256=cEHSc3CZwpd71YcOQngya-Ca_B6ZOb87Dmsoza0VhFY,4163
@@ -430,7 +430,7 @@ nat/tool/code_execution/utils.py,sha256=__W-T1kaphFKYSc2AydQW8lCdvD7zAccarvs7XVF
430
430
  nat/tool/code_execution/local_sandbox/.gitignore,sha256=BrV-H5osDtwwIx0eieoexolpnaJvc2DQLV15j95Qtyg,19
431
431
  nat/tool/code_execution/local_sandbox/Dockerfile.sandbox,sha256=CYqZ5jbBwk3ge8pg87aLjhzWERauScwya5naYq0vb5o,2316
432
432
  nat/tool/code_execution/local_sandbox/__init__.py,sha256=k25Kqr_PrH4s0YCfzVzC9vaBAiu8yI428C4HX-qUcqA,615
433
- nat/tool/code_execution/local_sandbox/local_sandbox_server.py,sha256=j8R7YwRyKrCsfqykUaCvbW2fhCAOkLXEwirnNQNXu08,6928
433
+ nat/tool/code_execution/local_sandbox/local_sandbox_server.py,sha256=eOFQV8ZE9-n7YfV4EEr-BFxDXG15jQUhO9oX1P1mgm8,6926
434
434
  nat/tool/code_execution/local_sandbox/sandbox.requirements.txt,sha256=R86yJ6mcUhfD9_ZU-rSMdaojR6MU41hcH4pE3vAGmcE,43
435
435
  nat/tool/code_execution/local_sandbox/start_local_sandbox.sh,sha256=gnPuzbneKZ61YvzaGIYSUdcyKMLuchYPti3zGLaNCZY,2055
436
436
  nat/tool/memory_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -448,16 +448,16 @@ nat/utils/optional_imports.py,sha256=jQSVBc2fBSRw-2d6r8cEwvh5-di2EUUPakuuo9QbbwA
448
448
  nat/utils/producer_consumer_queue.py,sha256=AcSYkAMBxLx06A5Xdy960PP3AJ7YaSPGJ7rbN_hJsjI,6599
449
449
  nat/utils/string_utils.py,sha256=71HuIzGx7rF8ocTmeoUBpnCi1Qf1yynYlNLLIKP4BVs,1415
450
450
  nat/utils/type_converter.py,sha256=-2PwMsEm7tlmrniZzO7x2DnRxhOEeJGVAIJc3c5n2g4,10655
451
- nat/utils/type_utils.py,sha256=xdD-_jmqPewBooqs_N0ZVGO_xsKv4ZOgISWi3EcFZXo,14835
451
+ nat/utils/type_utils.py,sha256=SMo5hM4dKf2G3U_0J0wvdFX6-lzMVSh8vd-W34Oixow,14836
452
452
  nat/utils/url_utils.py,sha256=UzDP_xaS6brWTu7vAws0B4jZyrITIK9Si3U6pZBZqDE,1028
453
453
  nat/utils/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
454
- nat/utils/data_models/schema_validator.py,sha256=pmGr5KuRX5tbVsymG1NxaSnGrKIfzxXEJNd58wIQ9SM,1532
454
+ nat/utils/data_models/schema_validator.py,sha256=k-9nv7g0Xqp2zGaN-FNxFoRUuvH-HRrelOCQllHV3sA,1527
455
455
  nat/utils/exception_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
456
- nat/utils/exception_handlers/automatic_retries.py,sha256=ppTgYy8MH2LOPladPif5dg0qC4nPqhKkUeXJdE9ZLAo,14511
456
+ nat/utils/exception_handlers/automatic_retries.py,sha256=PPTUK70aO_kpnYHfk_MSz9ehONA0rP6ocUbP2LnxSAA,14511
457
457
  nat/utils/exception_handlers/schemas.py,sha256=EcNukc4-oASIX2mHAP-hH1up1roWnm99iY18P_v13D0,3800
458
458
  nat/utils/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
459
459
  nat/utils/io/model_processing.py,sha256=bEbH_tIgZQvPlEJKVV4kye_Y9UU96W4k2mKuckGErHA,936
460
- nat/utils/io/yaml_tools.py,sha256=2NM7GPNcIC5vR6ISisZyB6ztC-jIDqjJk2JwbrX1uzc,3302
460
+ nat/utils/io/yaml_tools.py,sha256=8zgBMedlJ-ixQ80bqbrBR4iODgETWaagm8uNpybelVc,3297
461
461
  nat/utils/reactive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
462
462
  nat/utils/reactive/observable.py,sha256=VPfkETHXnBNfxKho9luIm4hxCsI_Hx46GgnEO848AMc,2221
463
463
  nat/utils/reactive/observer.py,sha256=y9aFhezP08TlV9Cx_S0mhShzdLzGQ9b_3PCcTsDxEOE,2508
@@ -469,10 +469,10 @@ nat/utils/reactive/base/observer_base.py,sha256=6BiQfx26EMumotJ3KoVcdmFBYR_fnAss
469
469
  nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
470
470
  nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
471
471
  nat/utils/settings/global_settings.py,sha256=9JaO6pxKT_Pjw6rxJRsRlFCXdVKCl_xUKU2QHZQWWNM,7294
472
- nvidia_nat-1.3.0a20250929.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
473
- nvidia_nat-1.3.0a20250929.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
474
- nvidia_nat-1.3.0a20250929.dist-info/METADATA,sha256=3m2Kp0KWB9oXqVUBoOmGesvEgobUxMEenPMV6W1llDo,22918
475
- nvidia_nat-1.3.0a20250929.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
476
- nvidia_nat-1.3.0a20250929.dist-info/entry_points.txt,sha256=4jCqjyETMpyoWbCBf4GalZU8I_wbstpzwQNezdAVbbo,698
477
- nvidia_nat-1.3.0a20250929.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
478
- nvidia_nat-1.3.0a20250929.dist-info/RECORD,,
472
+ nvidia_nat-1.3.0a20251001.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
473
+ nvidia_nat-1.3.0a20251001.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
474
+ nvidia_nat-1.3.0a20251001.dist-info/METADATA,sha256=Fuc_ccANJdpLGWxdHQ0F2EIU3KPPI7KgJjjXi2WTzfo,22945
475
+ nvidia_nat-1.3.0a20251001.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
476
+ nvidia_nat-1.3.0a20251001.dist-info/entry_points.txt,sha256=4jCqjyETMpyoWbCBf4GalZU8I_wbstpzwQNezdAVbbo,698
477
+ nvidia_nat-1.3.0a20251001.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
478
+ nvidia_nat-1.3.0a20251001.dist-info/RECORD,,