nvidia-nat 1.3.0a20250910__py3-none-any.whl → 1.3.0a20250917__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.
- nat/agent/base.py +9 -4
- nat/agent/prompt_optimizer/prompt.py +68 -0
- nat/agent/prompt_optimizer/register.py +149 -0
- nat/agent/react_agent/agent.py +1 -1
- nat/agent/react_agent/register.py +15 -5
- nat/agent/reasoning_agent/reasoning_agent.py +6 -1
- nat/agent/register.py +2 -0
- nat/agent/rewoo_agent/agent.py +4 -2
- nat/agent/rewoo_agent/register.py +8 -3
- nat/agent/router_agent/__init__.py +0 -0
- nat/agent/router_agent/agent.py +329 -0
- nat/agent/router_agent/prompt.py +48 -0
- nat/agent/router_agent/register.py +97 -0
- nat/agent/tool_calling_agent/agent.py +69 -7
- nat/agent/tool_calling_agent/register.py +11 -3
- nat/builder/builder.py +27 -4
- nat/builder/component_utils.py +7 -3
- nat/builder/function.py +167 -0
- nat/builder/function_info.py +1 -1
- nat/builder/workflow.py +5 -0
- nat/builder/workflow_builder.py +213 -16
- nat/cli/commands/optimize.py +90 -0
- nat/cli/commands/workflow/templates/config.yml.j2 +0 -1
- nat/cli/commands/workflow/workflow_commands.py +4 -7
- nat/cli/entrypoint.py +2 -0
- nat/cli/register_workflow.py +38 -4
- nat/cli/type_registry.py +71 -0
- nat/data_models/component.py +2 -0
- nat/data_models/component_ref.py +11 -0
- nat/data_models/config.py +40 -16
- nat/data_models/function.py +34 -0
- nat/data_models/function_dependencies.py +8 -0
- nat/data_models/optimizable.py +119 -0
- nat/data_models/optimizer.py +149 -0
- nat/data_models/temperature_mixin.py +4 -3
- nat/data_models/top_p_mixin.py +4 -3
- nat/embedder/nim_embedder.py +1 -1
- nat/embedder/openai_embedder.py +1 -1
- nat/eval/config.py +1 -1
- nat/eval/evaluate.py +5 -1
- nat/eval/register.py +4 -0
- nat/eval/runtime_evaluator/__init__.py +14 -0
- nat/eval/runtime_evaluator/evaluate.py +123 -0
- nat/eval/runtime_evaluator/register.py +100 -0
- nat/experimental/test_time_compute/functions/plan_select_execute_function.py +5 -1
- nat/front_ends/fastapi/dask_client_mixin.py +43 -0
- nat/front_ends/fastapi/fastapi_front_end_config.py +14 -3
- nat/front_ends/fastapi/fastapi_front_end_plugin.py +111 -3
- nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py +243 -228
- nat/front_ends/fastapi/job_store.py +518 -99
- nat/front_ends/fastapi/main.py +11 -19
- nat/front_ends/fastapi/utils.py +57 -0
- nat/front_ends/mcp/mcp_front_end_plugin_worker.py +3 -2
- nat/llm/aws_bedrock_llm.py +14 -3
- nat/llm/nim_llm.py +14 -3
- nat/llm/openai_llm.py +8 -1
- nat/observability/exporter/processing_exporter.py +29 -55
- nat/observability/mixin/redaction_config_mixin.py +5 -4
- nat/observability/mixin/tagging_config_mixin.py +26 -14
- nat/observability/mixin/type_introspection_mixin.py +401 -107
- nat/observability/processor/processor.py +3 -0
- nat/observability/processor/redaction/__init__.py +24 -0
- nat/observability/processor/redaction/contextual_redaction_processor.py +125 -0
- nat/observability/processor/redaction/contextual_span_redaction_processor.py +66 -0
- nat/observability/processor/redaction/redaction_processor.py +177 -0
- nat/observability/processor/redaction/span_header_redaction_processor.py +92 -0
- nat/observability/processor/span_tagging_processor.py +21 -14
- nat/profiler/decorators/framework_wrapper.py +9 -6
- nat/profiler/parameter_optimization/__init__.py +0 -0
- nat/profiler/parameter_optimization/optimizable_utils.py +93 -0
- nat/profiler/parameter_optimization/optimizer_runtime.py +67 -0
- nat/profiler/parameter_optimization/parameter_optimizer.py +149 -0
- nat/profiler/parameter_optimization/parameter_selection.py +108 -0
- nat/profiler/parameter_optimization/pareto_visualizer.py +380 -0
- nat/profiler/parameter_optimization/prompt_optimizer.py +384 -0
- nat/profiler/parameter_optimization/update_helpers.py +66 -0
- nat/profiler/utils.py +3 -1
- nat/tool/chat_completion.py +4 -1
- nat/tool/github_tools.py +450 -0
- nat/tool/register.py +2 -7
- nat/utils/callable_utils.py +70 -0
- nat/utils/exception_handlers/automatic_retries.py +103 -48
- nat/utils/type_utils.py +4 -0
- {nvidia_nat-1.3.0a20250910.dist-info → nvidia_nat-1.3.0a20250917.dist-info}/METADATA +8 -1
- {nvidia_nat-1.3.0a20250910.dist-info → nvidia_nat-1.3.0a20250917.dist-info}/RECORD +91 -71
- nat/observability/processor/header_redaction_processor.py +0 -123
- nat/observability/processor/redaction_processor.py +0 -77
- nat/tool/github_tools/create_github_commit.py +0 -133
- nat/tool/github_tools/create_github_issue.py +0 -87
- nat/tool/github_tools/create_github_pr.py +0 -106
- nat/tool/github_tools/get_github_file.py +0 -106
- nat/tool/github_tools/get_github_issue.py +0 -166
- nat/tool/github_tools/get_github_pr.py +0 -256
- nat/tool/github_tools/update_github_issue.py +0 -100
- /nat/{tool/github_tools → agent/prompt_optimizer}/__init__.py +0 -0
- {nvidia_nat-1.3.0a20250910.dist-info → nvidia_nat-1.3.0a20250917.dist-info}/WHEEL +0 -0
- {nvidia_nat-1.3.0a20250910.dist-info → nvidia_nat-1.3.0a20250917.dist-info}/entry_points.txt +0 -0
- {nvidia_nat-1.3.0a20250910.dist-info → nvidia_nat-1.3.0a20250917.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {nvidia_nat-1.3.0a20250910.dist-info → nvidia_nat-1.3.0a20250917.dist-info}/licenses/LICENSE.md +0 -0
- {nvidia_nat-1.3.0a20250910.dist-info → nvidia_nat-1.3.0a20250917.dist-info}/top_level.txt +0 -0
|
@@ -118,6 +118,7 @@ def _retry_decorator(
|
|
|
118
118
|
retry_codes: Sequence[CodePattern] | None = None,
|
|
119
119
|
retry_on_messages: Sequence[str] | None = None,
|
|
120
120
|
deepcopy: bool = False,
|
|
121
|
+
instance_context_aware: bool = False,
|
|
121
122
|
) -> Callable[[Callable[..., T]], Callable[..., T]]:
|
|
122
123
|
"""
|
|
123
124
|
Build a decorator that retries with exponential back-off *iff*:
|
|
@@ -130,69 +131,122 @@ def _retry_decorator(
|
|
|
130
131
|
deepcopy:
|
|
131
132
|
If True, each retry receives deep‑copied *args and **kwargs* to avoid
|
|
132
133
|
mutating shared state between attempts.
|
|
134
|
+
|
|
135
|
+
instance_context_aware:
|
|
136
|
+
If True, the decorator will check for a retry context flag on the first
|
|
137
|
+
argument (assumed to be 'self'). If the flag is set, retries are skipped
|
|
138
|
+
to prevent retry storms in nested method calls.
|
|
133
139
|
"""
|
|
134
140
|
|
|
135
141
|
def decorate(fn: Callable[..., T]) -> Callable[..., T]:
|
|
136
142
|
use_deepcopy = deepcopy
|
|
143
|
+
use_context_aware = instance_context_aware
|
|
137
144
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
145
|
+
class _RetryContext:
|
|
146
|
+
"""Context manager for instance-level retry gating."""
|
|
147
|
+
|
|
148
|
+
__slots__ = ("_obj", "_enabled", "_active")
|
|
149
|
+
|
|
150
|
+
def __init__(self, args: tuple[Any, ...]):
|
|
151
|
+
self._obj = args[0] if (use_context_aware and args) else None
|
|
152
|
+
self._enabled = bool(self._obj)
|
|
153
|
+
self._active = False
|
|
154
|
+
|
|
155
|
+
def __enter__(self):
|
|
156
|
+
if not self._enabled:
|
|
157
|
+
return False
|
|
143
158
|
try:
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
159
|
+
# If already in retry context, signal caller to skip retries
|
|
160
|
+
if getattr(self._obj, "_in_retry_context", False):
|
|
161
|
+
return True
|
|
162
|
+
object.__setattr__(self._obj, "_in_retry_context", True)
|
|
163
|
+
self._active = True
|
|
164
|
+
return False
|
|
165
|
+
except Exception:
|
|
166
|
+
# If we cannot set the attribute, behave as if context isn't enabled
|
|
167
|
+
self._enabled = False
|
|
168
|
+
return False
|
|
169
|
+
|
|
170
|
+
def __exit__(self, _exc_type, _exc, _tb):
|
|
171
|
+
if self._enabled and self._active:
|
|
172
|
+
try:
|
|
173
|
+
object.__setattr__(self._obj, "_in_retry_context", False)
|
|
174
|
+
except Exception:
|
|
175
|
+
pass
|
|
176
|
+
|
|
177
|
+
async def _call_with_retry_async(*args, **kw) -> T:
|
|
178
|
+
with _RetryContext(args) as already_in_context:
|
|
179
|
+
if already_in_context:
|
|
180
|
+
return await fn(*args, **kw)
|
|
181
|
+
delay = base_delay
|
|
182
|
+
for attempt in range(retries):
|
|
183
|
+
call_args = copy.deepcopy(args) if use_deepcopy else args
|
|
184
|
+
call_kwargs = copy.deepcopy(kw) if use_deepcopy else kw
|
|
185
|
+
try:
|
|
186
|
+
return await fn(*call_args, **call_kwargs)
|
|
187
|
+
except retry_on as exc:
|
|
188
|
+
if (not _want_retry(exc, code_patterns=retry_codes, msg_substrings=retry_on_messages)
|
|
189
|
+
or attempt == retries - 1):
|
|
190
|
+
raise
|
|
191
|
+
await asyncio.sleep(delay)
|
|
192
|
+
delay *= backoff
|
|
151
193
|
|
|
152
194
|
async def _agen_with_retry(*args, **kw):
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
call_kwargs = copy.deepcopy(kw) if use_deepcopy else kw
|
|
157
|
-
try:
|
|
158
|
-
async for item in fn(*call_args, **call_kwargs):
|
|
195
|
+
with _RetryContext(args) as already_in_context:
|
|
196
|
+
if already_in_context:
|
|
197
|
+
async for item in fn(*args, **kw):
|
|
159
198
|
yield item
|
|
160
199
|
return
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
200
|
+
delay = base_delay
|
|
201
|
+
for attempt in range(retries):
|
|
202
|
+
call_args = copy.deepcopy(args) if use_deepcopy else args
|
|
203
|
+
call_kwargs = copy.deepcopy(kw) if use_deepcopy else kw
|
|
204
|
+
try:
|
|
205
|
+
async for item in fn(*call_args, **call_kwargs):
|
|
206
|
+
yield item
|
|
207
|
+
return
|
|
208
|
+
except retry_on as exc:
|
|
209
|
+
if (not _want_retry(exc, code_patterns=retry_codes, msg_substrings=retry_on_messages)
|
|
210
|
+
or attempt == retries - 1):
|
|
211
|
+
raise
|
|
212
|
+
await asyncio.sleep(delay)
|
|
213
|
+
delay *= backoff
|
|
167
214
|
|
|
168
215
|
def _gen_with_retry(*args, **kw) -> Iterable[Any]:
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
call_kwargs = copy.deepcopy(kw) if use_deepcopy else kw
|
|
173
|
-
try:
|
|
174
|
-
yield from fn(*call_args, **call_kwargs)
|
|
216
|
+
with _RetryContext(args) as already_in_context:
|
|
217
|
+
if already_in_context:
|
|
218
|
+
yield from fn(*args, **kw)
|
|
175
219
|
return
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
220
|
+
delay = base_delay
|
|
221
|
+
for attempt in range(retries):
|
|
222
|
+
call_args = copy.deepcopy(args) if use_deepcopy else args
|
|
223
|
+
call_kwargs = copy.deepcopy(kw) if use_deepcopy else kw
|
|
224
|
+
try:
|
|
225
|
+
yield from fn(*call_args, **call_kwargs)
|
|
226
|
+
return
|
|
227
|
+
except retry_on as exc:
|
|
228
|
+
if (not _want_retry(exc, code_patterns=retry_codes, msg_substrings=retry_on_messages)
|
|
229
|
+
or attempt == retries - 1):
|
|
230
|
+
raise
|
|
231
|
+
time.sleep(delay)
|
|
232
|
+
delay *= backoff
|
|
182
233
|
|
|
183
234
|
def _sync_with_retry(*args, **kw) -> T:
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
235
|
+
with _RetryContext(args) as already_in_context:
|
|
236
|
+
if already_in_context:
|
|
237
|
+
return fn(*args, **kw)
|
|
238
|
+
delay = base_delay
|
|
239
|
+
for attempt in range(retries):
|
|
240
|
+
call_args = copy.deepcopy(args) if use_deepcopy else args
|
|
241
|
+
call_kwargs = copy.deepcopy(kw) if use_deepcopy else kw
|
|
242
|
+
try:
|
|
243
|
+
return fn(*call_args, **call_kwargs)
|
|
244
|
+
except retry_on as exc:
|
|
245
|
+
if (not _want_retry(exc, code_patterns=retry_codes, msg_substrings=retry_on_messages)
|
|
246
|
+
or attempt == retries - 1):
|
|
247
|
+
raise
|
|
248
|
+
time.sleep(delay)
|
|
249
|
+
delay *= backoff
|
|
196
250
|
|
|
197
251
|
# Decide which wrapper to return
|
|
198
252
|
if inspect.iscoroutinefunction(fn):
|
|
@@ -245,6 +299,7 @@ def patch_with_retry(
|
|
|
245
299
|
retry_codes=retry_codes,
|
|
246
300
|
retry_on_messages=retry_on_messages,
|
|
247
301
|
deepcopy=deepcopy,
|
|
302
|
+
instance_context_aware=True, # Prevent retry storms
|
|
248
303
|
)
|
|
249
304
|
|
|
250
305
|
# Choose attribute source: the *class* to avoid triggering __getattr__
|
nat/utils/type_utils.py
CHANGED
|
@@ -469,6 +469,10 @@ class DecomposedType:
|
|
|
469
469
|
# Handle generic types that can't use issubclass
|
|
470
470
|
pass
|
|
471
471
|
|
|
472
|
+
# Check direct equality (works for both regular and generic types)
|
|
473
|
+
if source_type == target_type:
|
|
474
|
+
return True
|
|
475
|
+
|
|
472
476
|
# Check if source outputs list[T] and target expects T
|
|
473
477
|
source_decomposed = DecomposedType(source_type)
|
|
474
478
|
if source_decomposed.origin is list and source_decomposed.args:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nvidia-nat
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.0a20250917
|
|
4
4
|
Summary: NVIDIA NeMo Agent toolkit
|
|
5
5
|
Author: NVIDIA Corporation
|
|
6
6
|
Maintainer: NVIDIA Corporation
|
|
@@ -230,6 +230,7 @@ Requires-Dist: numpy~=1.26; python_version < "3.12"
|
|
|
230
230
|
Requires-Dist: numpy~=2.3; python_version >= "3.12"
|
|
231
231
|
Requires-Dist: openinference-semantic-conventions~=0.1.14
|
|
232
232
|
Requires-Dist: openpyxl~=3.1
|
|
233
|
+
Requires-Dist: optuna~=4.4.0
|
|
233
234
|
Requires-Dist: pkce==1.0.3
|
|
234
235
|
Requires-Dist: pkginfo~=1.12
|
|
235
236
|
Requires-Dist: platformdirs~=4.3
|
|
@@ -296,6 +297,7 @@ Requires-Dist: nat_por_to_jiratickets; extra == "examples"
|
|
|
296
297
|
Requires-Dist: nat_profiler_agent; extra == "examples"
|
|
297
298
|
Requires-Dist: nat_redact_pii; extra == "examples"
|
|
298
299
|
Requires-Dist: nat_retail_sales_agent; extra == "examples"
|
|
300
|
+
Requires-Dist: nat_router_agent; extra == "examples"
|
|
299
301
|
Requires-Dist: nat_semantic_kernel_demo; extra == "examples"
|
|
300
302
|
Requires-Dist: nat_simple_auth; extra == "examples"
|
|
301
303
|
Requires-Dist: nat_simple_web_query; extra == "examples"
|
|
@@ -311,6 +313,11 @@ Requires-Dist: nat_swe_bench; extra == "examples"
|
|
|
311
313
|
Requires-Dist: nat_user_report; extra == "examples"
|
|
312
314
|
Provides-Extra: gunicorn
|
|
313
315
|
Requires-Dist: gunicorn~=23.0; extra == "gunicorn"
|
|
316
|
+
Provides-Extra: async-endpoints
|
|
317
|
+
Requires-Dist: aiosqlite~=0.21; extra == "async-endpoints"
|
|
318
|
+
Requires-Dist: dask==2023.6; extra == "async-endpoints"
|
|
319
|
+
Requires-Dist: distributed==2023.6; extra == "async-endpoints"
|
|
320
|
+
Requires-Dist: sqlalchemy[asyncio]~=2.0; extra == "async-endpoints"
|
|
314
321
|
Dynamic: license-file
|
|
315
322
|
|
|
316
323
|
<!--
|
|
@@ -1,22 +1,29 @@
|
|
|
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=
|
|
3
|
+
nat/agent/base.py,sha256=6u0z7NjrtCBxvByijQz4vrRNPb4yX9FqEyJixuBRQV4,10157
|
|
4
4
|
nat/agent/dual_node.py,sha256=pfvXa1iLKtrNBHsh-tM5RWRmVe7QkyYhQNanOfWdJJs,2569
|
|
5
|
-
nat/agent/register.py,sha256=
|
|
5
|
+
nat/agent/register.py,sha256=A606Sj0IEHlMzqrEdipHS2-pxdtzC6GeG5KTqHMw5kk,1083
|
|
6
|
+
nat/agent/prompt_optimizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
nat/agent/prompt_optimizer/prompt.py,sha256=2I1cGZH73Q1pwxA_V-9b1sFCdQ1PLFxliaRtrIkVVVU,3042
|
|
8
|
+
nat/agent/prompt_optimizer/register.py,sha256=qV9Qkd4XDfwVYSzZOyI9RlRzK26jukaB51RriYgWd6k,6790
|
|
6
9
|
nat/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
nat/agent/react_agent/agent.py,sha256=
|
|
10
|
+
nat/agent/react_agent/agent.py,sha256=zz1rmXdx53QG-07KGJffLZCpI3ULvYEWyCdufD42CB4,21261
|
|
8
11
|
nat/agent/react_agent/output_parser.py,sha256=m7K6wRwtckBBpAHqOf3BZ9mqZLwrP13Kxz5fvNxbyZE,4219
|
|
9
12
|
nat/agent/react_agent/prompt.py,sha256=N47JJrT6xwYQCv1jedHhlul2AE7EfKsSYfAbgJwWRew,1758
|
|
10
|
-
nat/agent/react_agent/register.py,sha256=
|
|
13
|
+
nat/agent/react_agent/register.py,sha256=HrTDd3Q1y0iGcaDKRS8A-eEQlUNrqCDXTTTlQxUiI8o,9109
|
|
11
14
|
nat/agent/reasoning_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
nat/agent/reasoning_agent/reasoning_agent.py,sha256=
|
|
15
|
+
nat/agent/reasoning_agent/reasoning_agent.py,sha256=PcqfadocAtvjZ_zMvjbuZpIvZdyxI5AIir6DEYTn8qw,9690
|
|
13
16
|
nat/agent/rewoo_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
nat/agent/rewoo_agent/agent.py,sha256=
|
|
17
|
+
nat/agent/rewoo_agent/agent.py,sha256=CSaYAzu4y1mJxwMJU0QZCaeLUdUdVI-Ng5U5opZbM-A,18991
|
|
15
18
|
nat/agent/rewoo_agent/prompt.py,sha256=nFMav3Zl_vmKPLzAIhbQHlldWnurPJb1GlwnekUuxDs,3720
|
|
16
|
-
nat/agent/rewoo_agent/register.py,sha256=
|
|
19
|
+
nat/agent/rewoo_agent/register.py,sha256=KbQ_BT7IWVQJ1dIBGqvDTbG6EtFw0-_vGUcbmyOoUTI,8792
|
|
20
|
+
nat/agent/router_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
nat/agent/router_agent/agent.py,sha256=LY_vpy3NC-ZPmc-5Qak35Y4YN5qMM1Mlgu9A4S7VWI4,13674
|
|
22
|
+
nat/agent/router_agent/prompt.py,sha256=fIAiNsAs1zXRAatButR76zSpHJNxSkXXKKmCL86a58A,1720
|
|
23
|
+
nat/agent/router_agent/register.py,sha256=rl_0EKRge4fAHeN74DpKl-h6e94ldbErUBWcspEGBv4,4587
|
|
17
24
|
nat/agent/tool_calling_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
-
nat/agent/tool_calling_agent/agent.py,sha256=
|
|
19
|
-
nat/agent/tool_calling_agent/register.py,sha256=
|
|
25
|
+
nat/agent/tool_calling_agent/agent.py,sha256=4SIp29I56oznPRQu7B3HCoX53Ri3_o3BRRYNJjeBkF8,11006
|
|
26
|
+
nat/agent/tool_calling_agent/register.py,sha256=z_uQAeiBXN31sX9NnwttcgFEY0eaY-YsZQoww3Kpbwo,6381
|
|
20
27
|
nat/authentication/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
21
28
|
nat/authentication/interfaces.py,sha256=FAYM-QXVUn3a_8bmAZ7kP-lmN_BrLW8mo6krZJ3e0ME,3314
|
|
22
29
|
nat/authentication/register.py,sha256=lFhswYUk9iZ53mq33fClR9UfjJPdjGIivGGNHQeWiYo,915
|
|
@@ -34,33 +41,34 @@ nat/authentication/oauth2/oauth2_auth_code_flow_provider.py,sha256=iFp_kImFwDrwe
|
|
|
34
41
|
nat/authentication/oauth2/oauth2_auth_code_flow_provider_config.py,sha256=e165ysd2pX2WTbV3_FQKEjEaa4TAXkJ7B98WUGbqnGE,2204
|
|
35
42
|
nat/authentication/oauth2/register.py,sha256=7rXhf-ilgSS_bUJsd9pOOCotL1FM8dKUt3ke1TllKkQ,1228
|
|
36
43
|
nat/builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
nat/builder/builder.py,sha256=
|
|
38
|
-
nat/builder/component_utils.py,sha256=
|
|
44
|
+
nat/builder/builder.py,sha256=odUw-s1jgrLWTgX4baXcAfKLeIcz8NY8cbv0LlEjK7E,10874
|
|
45
|
+
nat/builder/component_utils.py,sha256=rbKjs-Yo2uJ4xgEfTWbRWnSsJRrvalOb7TTOBljQZig,13839
|
|
39
46
|
nat/builder/context.py,sha256=LLyMNwgF5h5Sx1qGdNz3rp4CaJfDn_ytd7T_qv6itb0,11618
|
|
40
47
|
nat/builder/embedder.py,sha256=NPkOEcxt_-wc53QRijCQQDLretRUYHRYaKoYmarmrBk,965
|
|
41
48
|
nat/builder/eval_builder.py,sha256=6Raia6VgQwfFTQGbjnwAL8p4MXQhl_n5UIVuQ-l9_GQ,6575
|
|
42
49
|
nat/builder/evaluator.py,sha256=xWHMND2vcAUkdFP7FU3jnVki1rUHeTa0-9saFh2hWKs,1162
|
|
43
50
|
nat/builder/framework_enum.py,sha256=eYwHQifZ86dx-OTubVA3qhCLRqhB4ElMBYBGA0gYtic,885
|
|
44
51
|
nat/builder/front_end.py,sha256=mHooS1M7mVo1swSgbYoqbzQENXkuG7_Es9q4gFiuL8E,2175
|
|
45
|
-
nat/builder/function.py,sha256=
|
|
52
|
+
nat/builder/function.py,sha256=XAznxA6jFL0wWEzGQqtQ6Y61Yja0w4eIKnqatPXTSNE,19941
|
|
46
53
|
nat/builder/function_base.py,sha256=0Eg8RtjWhEU3Yme0CVxcRutobA0Qo8-YHZLI6L2qAgM,13116
|
|
47
|
-
nat/builder/function_info.py,sha256=
|
|
54
|
+
nat/builder/function_info.py,sha256=7Rmrn-gOFrT2TIJklJwA_O-ycx_oimwZ0-qMYpbuZrU,25161
|
|
48
55
|
nat/builder/intermediate_step_manager.py,sha256=iOuMLWTaES0J0XzaLxhTUqFvuoCAChJu3V69T43K0k0,7599
|
|
49
56
|
nat/builder/llm.py,sha256=DW-2q64A06VChsXNEL5PfBjH3DcsnTKVoCEWDuP7MF4,951
|
|
50
57
|
nat/builder/retriever.py,sha256=ZyEqc7pFK31t_yr6Jaxa34c-tRas2edKqJZCNiVh9-0,970
|
|
51
58
|
nat/builder/user_interaction_manager.py,sha256=-Z2qbQes7a2cuXgT7KEbWeuok0HcCnRdw9WB8Ghyl9k,3081
|
|
52
|
-
nat/builder/workflow.py,sha256=
|
|
53
|
-
nat/builder/workflow_builder.py,sha256=
|
|
59
|
+
nat/builder/workflow.py,sha256=bHrxK-VFsxUTw2wZgkWcCttpCMDeWNGPfmIGEW_bjZo,6908
|
|
60
|
+
nat/builder/workflow_builder.py,sha256=1SHnp4tav9YSmwJYHDC_ezkTQqYudNpWHPh3huTU40g,55073
|
|
54
61
|
nat/cli/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
55
|
-
nat/cli/entrypoint.py,sha256=
|
|
62
|
+
nat/cli/entrypoint.py,sha256=hsXLqy26U4vCuyeILKrxhOyCJC0RBbnLVqG0rWQXRiQ,5076
|
|
56
63
|
nat/cli/main.py,sha256=KzUSDB1TGzHRP_Fnq5XJRopx-i9S2oycgQrXrf2vDkE,2164
|
|
57
|
-
nat/cli/register_workflow.py,sha256=
|
|
58
|
-
nat/cli/type_registry.py,sha256=
|
|
64
|
+
nat/cli/register_workflow.py,sha256=DOQQgUWB_NO9k7nlkP4cAx_RX03Cndk032K-kqyuvEs,23285
|
|
65
|
+
nat/cli/type_registry.py,sha256=R301m91ar2vDorJvN8oqqGB9PhsoyNvToiYL3x2Q1io,48838
|
|
59
66
|
nat/cli/cli_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
67
|
nat/cli/cli_utils/config_override.py,sha256=hLhJDjkLTLkUSYXMjK1qT7USy7ds1ddEDxcEFETxK98,8900
|
|
61
68
|
nat/cli/cli_utils/validation.py,sha256=KVZvAkWZx-QVVBuCFTcH2muLzMB7ONQA1GE2TzEVN78,1288
|
|
62
69
|
nat/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
70
|
nat/cli/commands/evaluate.py,sha256=_gSK9km6DQNxFcOZnOpzYuXtM0MG3-ng6S-1UNccG80,4748
|
|
71
|
+
nat/cli/commands/optimize.py,sha256=07b8B6vPDljUgZtcnpaGFi4E10mqK4IwLMV1Y0ZzvQA,2954
|
|
64
72
|
nat/cli/commands/start.py,sha256=kYXLWj-jNQZLyC1JjM4UEvqSK9vP7As6C9pzhNwHQsg,10431
|
|
65
73
|
nat/cli/commands/uninstall.py,sha256=KJDe-BCUD5ws_lTpCNPj3Ac26TQO8kys0AZqjZsljfs,3180
|
|
66
74
|
nat/cli/commands/validate.py,sha256=mseAUfwRP8RL2Jc_a7MA9_0j9CRQFojEFPTPSuLiFGI,1669
|
|
@@ -89,9 +97,9 @@ nat/cli/commands/sizing/calc.py,sha256=3cJHKCbzvV7EwYfLcpfk3_Ki7soAjOaiBcLK-Q6hP
|
|
|
89
97
|
nat/cli/commands/sizing/sizing.py,sha256=-Hr9mz_ScEMtBbn6ijvmmWVk0WybLeX0Ryi4qhDiYQU,902
|
|
90
98
|
nat/cli/commands/workflow/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
91
99
|
nat/cli/commands/workflow/workflow.py,sha256=40nIOehOX-4xI-qJqJraBX3XVz3l2VtFsZkMQYd897w,1342
|
|
92
|
-
nat/cli/commands/workflow/workflow_commands.py,sha256=
|
|
100
|
+
nat/cli/commands/workflow/workflow_commands.py,sha256=_krSHCU9q-rI-0mc2ieiELu9n2Ovch4F4klXNza-eXk,13055
|
|
93
101
|
nat/cli/commands/workflow/templates/__init__.py.j2,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
-
nat/cli/commands/workflow/templates/config.yml.j2,sha256=
|
|
102
|
+
nat/cli/commands/workflow/templates/config.yml.j2,sha256=PriLJehyb5HIiVCy5NkU6lJ3znwZjtT2SQpNVp6zC64,203
|
|
95
103
|
nat/cli/commands/workflow/templates/pyproject.toml.j2,sha256=lDBC4exHYutXa_skuJj176yMEuZr-DsdzrqQHPZoKpk,1035
|
|
96
104
|
nat/cli/commands/workflow/templates/register.py.j2,sha256=txA-qBpWhxRc0GUcVRCIqVI6gGSh-TJijemrUqnb38s,138
|
|
97
105
|
nat/cli/commands/workflow/templates/workflow.py.j2,sha256=Z4uZPG9rtf1nxF74dF4DqDtrF3uYmYUmWowDFbQBjao,1241
|
|
@@ -99,17 +107,17 @@ nat/data_models/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,6
|
|
|
99
107
|
nat/data_models/api_server.py,sha256=Zl0eAd-yV9PD8vUH8eWRvXFcUBdY2tENKe73q-Uxxgg,25699
|
|
100
108
|
nat/data_models/authentication.py,sha256=kF-eTOiKuEsvHFAPy-WQxumeSIhtjny59Wci1uh84qo,7349
|
|
101
109
|
nat/data_models/common.py,sha256=nXXfGrjpxebzBUa55mLdmzePLt7VFHvTAc6Znj3yEv0,5875
|
|
102
|
-
nat/data_models/component.py,sha256=
|
|
103
|
-
nat/data_models/component_ref.py,sha256=
|
|
104
|
-
nat/data_models/config.py,sha256=
|
|
110
|
+
nat/data_models/component.py,sha256=b_hXOA8Gm5UNvlFkAhsR6kEvf33ST50MKtr5kWf75Ao,1894
|
|
111
|
+
nat/data_models/component_ref.py,sha256=KFDWFVCcvJCfBBcXTh9f3R802EVHBtHXh9OdbRqFmdM,4747
|
|
112
|
+
nat/data_models/config.py,sha256=pWy-rHI7lfn1-_Vtl6HAmVZs2rC7GZF54ZojoEp0ZbQ,18817
|
|
105
113
|
nat/data_models/dataset_handler.py,sha256=UDQLpStUwLEMm0e6BvuOFEsHYSopWu5DhinxEv2U6og,5523
|
|
106
114
|
nat/data_models/discovery_metadata.py,sha256=_l97iQsqp_ihba8CbMBQ73mH1sipTQ19GiJDdzQYQGY,13432
|
|
107
115
|
nat/data_models/embedder.py,sha256=nPhthEQDtzAMGd8gFRB1ZfJpN5M9DJvv0h28ohHnTmI,1002
|
|
108
116
|
nat/data_models/evaluate.py,sha256=L0GdNh_c8jii-MiK8oHW9sUUsGO3l1FMsprr-UazT5c,4836
|
|
109
117
|
nat/data_models/evaluator.py,sha256=bd2njsyQB2t6ClJ66gJiCjYHsQpWZwPD7rsU0J109TI,939
|
|
110
118
|
nat/data_models/front_end.py,sha256=z8k6lSWjt1vMOYFbjWQxodpwAqPeuGS0hRBjsriDW2s,932
|
|
111
|
-
nat/data_models/function.py,sha256=
|
|
112
|
-
nat/data_models/function_dependencies.py,sha256=
|
|
119
|
+
nat/data_models/function.py,sha256=CuhV-fIjVVTsOJmTbvZ5Q9V370uKZJ0bJLyU2gEe35E,2265
|
|
120
|
+
nat/data_models/function_dependencies.py,sha256=soDGXU4IwEn-3w3fGDm6vNLOR6jS6me-Ml_g7B6giBw,2901
|
|
113
121
|
nat/data_models/gated_field_mixin.py,sha256=1xycSpXc_fq8CucLp3khE1w0-JYfcbr__EJkbvxTD0w,9817
|
|
114
122
|
nat/data_models/interactive.py,sha256=qOkxyYPQYEBIBMDAA1rjfYcdvf6-iCM4qPV8Awc4VGw,8794
|
|
115
123
|
nat/data_models/intermediate_step.py,sha256=OhdGAtSBiMiCfT1R-BjihUvcVoQsRsxHDQcJ1gMDVXA,11585
|
|
@@ -118,6 +126,8 @@ nat/data_models/llm.py,sha256=PCTeCPg2YnYk5tvSu7XOEVr2Cg_wSkjAdVsoiTg8Joo,968
|
|
|
118
126
|
nat/data_models/logging.py,sha256=1QtVjIQ99PgMYUuzw4h1FAoPRteZY7uf3oFTqV3ONgA,940
|
|
119
127
|
nat/data_models/memory.py,sha256=IKwe7CflCto30j4yI5yQtq8DXfMilAJ17S5NcsSDrOQ,1052
|
|
120
128
|
nat/data_models/object_store.py,sha256=S8YY6i8ALgRPuggUI1FCG-xbvwPWuaCg1lJnZOx5scM,1515
|
|
129
|
+
nat/data_models/optimizable.py,sha256=VTu9RlS102bsU6G_uhrxFkMATextuVQozfWsfoktqRc,4861
|
|
130
|
+
nat/data_models/optimizer.py,sha256=Zs4-w_Ek08iSLulsbb-4c1gK8zQB67UeRK1gHoqS1X4,5291
|
|
121
131
|
nat/data_models/profiler.py,sha256=z3IlEhj-veB4Yz85271bTkScSUkVwK50tR3dwlDRgcE,1781
|
|
122
132
|
nat/data_models/registry_handler.py,sha256=g1rFaz4uSydMJn7qpdX-DNHJd_rNf8tXYN49dLDYHPo,968
|
|
123
133
|
nat/data_models/retriever.py,sha256=IJAIaeEXM8zj_towrvZ30Uoxt8e4WvOXrQwqGloS1qI,1202
|
|
@@ -127,20 +137,20 @@ nat/data_models/step_adaptor.py,sha256=1qn56wB_nIYBM5IjN4ftsltCAkqaJd3Sqe5v0TRR4
|
|
|
127
137
|
nat/data_models/streaming.py,sha256=sSqJqLqb70qyw69_4R9QC2RMbRw7UjTLPdo3FYBUGxE,1159
|
|
128
138
|
nat/data_models/swe_bench_model.py,sha256=uZs-hLFuT1B5CiPFwFg1PHinDW8PHne8TBzu7tHFv_k,1718
|
|
129
139
|
nat/data_models/telemetry_exporter.py,sha256=P7kqxIQnFVuvo_UFpH9QSB8fACy_0U2Uzkw_IfWXagE,998
|
|
130
|
-
nat/data_models/temperature_mixin.py,sha256=
|
|
140
|
+
nat/data_models/temperature_mixin.py,sha256=LlpfWrWtDrPJfSKfNx5E0P3p5SNGZli7ACRRpmO0QqA,1628
|
|
131
141
|
nat/data_models/thinking_mixin.py,sha256=lzAnUk5vyv1nTYG9ho4BD3U2NTVZ50gBysN62iGj2KM,3303
|
|
132
|
-
nat/data_models/top_p_mixin.py,sha256=
|
|
142
|
+
nat/data_models/top_p_mixin.py,sha256=mu0DLnCAiwNzpSFR8FOW4kQBUpodSrvUR4MsLrNtbgA,1599
|
|
133
143
|
nat/data_models/ttc_strategy.py,sha256=tAkKWcyEBmBOOYtHMtQTgeCbHxFTk5SEkmFunNVnfyE,1114
|
|
134
144
|
nat/embedder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
145
|
nat/embedder/azure_openai_embedder.py,sha256=8OM54DCVCmWuQ8eZ5lXxsKYQktRmHMoIelRHZmKurUk,2381
|
|
136
|
-
nat/embedder/nim_embedder.py,sha256=
|
|
137
|
-
nat/embedder/openai_embedder.py,sha256=
|
|
146
|
+
nat/embedder/nim_embedder.py,sha256=4DLcweOajXi67ZpLq_QvK0ZihFsntpsSF27FEvhF1ZQ,2532
|
|
147
|
+
nat/embedder/openai_embedder.py,sha256=uASGh8KEmJg6_km8YNaenpPC92v-WbFpsvq-l4R38pY,1937
|
|
138
148
|
nat/embedder/register.py,sha256=TM_LKuSlJr3tEceNVuHfAx_yrCzf1sryD5Ycep5rNGo,883
|
|
139
149
|
nat/eval/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
140
|
-
nat/eval/config.py,sha256=
|
|
141
|
-
nat/eval/evaluate.py,sha256=
|
|
150
|
+
nat/eval/config.py,sha256=G0LE4JpZaQy3PvERldVATFpQCiDQcVJGUFChgorqzNo,2377
|
|
151
|
+
nat/eval/evaluate.py,sha256=gYlKht-vBseRuD_LdV1BBcoyx-Gx5Q3jz2f44VRTO7Q,26683
|
|
142
152
|
nat/eval/intermediate_step_adapter.py,sha256=mquQfPbq4-Owid2GzSyxtGNXoZ0i8crB6sA49rxnyrU,4483
|
|
143
|
-
nat/eval/register.py,sha256=
|
|
153
|
+
nat/eval/register.py,sha256=Vce8HGsu6KDj7MA_5W2ziQtss1F180ndMjuqGiHxTe8,1358
|
|
144
154
|
nat/eval/remote_workflow.py,sha256=JAAbD0s753AOjo9baT4OqcB5dVEDmN34jPe0Uk13LcU,6024
|
|
145
155
|
nat/eval/runtime_event_subscriber.py,sha256=9MVgZLKvpnThHINaPbszPYDWnJ61sntS09YZtDhIRE4,1900
|
|
146
156
|
nat/eval/usage_stats.py,sha256=_d_ErIvSKDN8wuvOyPn01kqM7zlFpwVxqOonaCV5XtY,1319
|
|
@@ -157,6 +167,9 @@ nat/eval/rag_evaluator/register.py,sha256=AzT5uICDU5dEo7scvStmOWC7ac-S0Tx4UY87id
|
|
|
157
167
|
nat/eval/runners/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
158
168
|
nat/eval/runners/config.py,sha256=bRPai_th02OJrFepbbY6w-t7A18TBXozQUnnnH9iWIU,1403
|
|
159
169
|
nat/eval/runners/multi_eval_runner.py,sha256=3YSHOHjGFSlMxVEkuphUsCW5H5w73k3xD-W2rFNRWqE,1986
|
|
170
|
+
nat/eval/runtime_evaluator/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
171
|
+
nat/eval/runtime_evaluator/evaluate.py,sha256=HTUDWrUD6G8ggkofDCRhwuXWdQTb3V7o9FJ2_vc_LyQ,5379
|
|
172
|
+
nat/eval/runtime_evaluator/register.py,sha256=eOqokSisoaYzCANzyLXmGGCGUp0rLXdcqHXtDW_bZ5s,4509
|
|
160
173
|
nat/eval/swe_bench_evaluator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
174
|
nat/eval/swe_bench_evaluator/evaluate.py,sha256=SkP8spu351UBgzjdG8ox6uHpiTAWxe2CCIMRxvOIMfg,9832
|
|
162
175
|
nat/eval/swe_bench_evaluator/register.py,sha256=5mzvBTUBdqahBZNU4KjB1go81cObo9F4iA3y_eOJ86g,1537
|
|
@@ -182,7 +195,7 @@ nat/experimental/test_time_compute/editing/llm_as_a_judge_editor.py,sha256=QAu46
|
|
|
182
195
|
nat/experimental/test_time_compute/editing/motivation_aware_summarization.py,sha256=S7s_BigZ1ru-3lP7c58Zpt5Nxavi8Ko-A1cmH7KkX3s,4503
|
|
183
196
|
nat/experimental/test_time_compute/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
197
|
nat/experimental/test_time_compute/functions/execute_score_select_function.py,sha256=OHiQ01a6g3OEd-K1WZynuQspmrvBpgKKxxqO-UbM4z0,4550
|
|
185
|
-
nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=
|
|
198
|
+
nat/experimental/test_time_compute/functions/plan_select_execute_function.py,sha256=2j8m2VuoMmjKMoMlre0VcYxtu3saDf81lxXg6kzaPsE,10055
|
|
186
199
|
nat/experimental/test_time_compute/functions/ttc_tool_orchestration_function.py,sha256=ZzDGHg7xDdXgubF6o7Mih-5SHStWKjxB1PiDzGdPFew,8440
|
|
187
200
|
nat/experimental/test_time_compute/functions/ttc_tool_wrapper_function.py,sha256=H4LmatlubHGTUBXAp-8LIK8Z6bUid0W_8EuigaGU89Q,6907
|
|
188
201
|
nat/experimental/test_time_compute/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -217,18 +230,20 @@ nat/front_ends/console/console_front_end_plugin.py,sha256=BJ1o2IflZeFKC2gGfL_gI2
|
|
|
217
230
|
nat/front_ends/console/register.py,sha256=2Kf6Mthx6jzWzU8YdhYIR1iABmZDvs1UXM_20npXWXs,1153
|
|
218
231
|
nat/front_ends/cron/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
219
232
|
nat/front_ends/fastapi/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
220
|
-
nat/front_ends/fastapi/
|
|
233
|
+
nat/front_ends/fastapi/dask_client_mixin.py,sha256=IMlmUO8X3wJy9wkWXmNS6FdD8vA4b_eoqG3ZKIiDx9M,1438
|
|
234
|
+
nat/front_ends/fastapi/fastapi_front_end_config.py,sha256=B2dfg4S7bNl0QyeKkhOuJxqAcWDWBMqyCyEbCSq43Gc,11879
|
|
221
235
|
nat/front_ends/fastapi/fastapi_front_end_controller.py,sha256=ei-34KCMpyaeAgeAN4gVvSGFjewjjRhHZPN0FqAfhDY,2548
|
|
222
|
-
nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=
|
|
223
|
-
nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=
|
|
236
|
+
nat/front_ends/fastapi/fastapi_front_end_plugin.py,sha256=GMHyvic4uWkvQXVKfw0iIQOLrcoKrGJbnhhOA9uZMaQ,10109
|
|
237
|
+
nat/front_ends/fastapi/fastapi_front_end_plugin_worker.py,sha256=F-A6KQRqO0JOVj90rGewFzzSlrSIAMxAeq8L1OFQClE,52989
|
|
224
238
|
nat/front_ends/fastapi/intermediate_steps_subscriber.py,sha256=kbyWlBVpyvyQQjeUnFG9nsR4RaqqNkx567ZSVwwl2RU,3104
|
|
225
|
-
nat/front_ends/fastapi/job_store.py,sha256=
|
|
226
|
-
nat/front_ends/fastapi/main.py,sha256=
|
|
239
|
+
nat/front_ends/fastapi/job_store.py,sha256=S0ab_MyJvr3z28l1UY5rhORt6eiEls9_xcQDrNrBJm8,22746
|
|
240
|
+
nat/front_ends/fastapi/main.py,sha256=s8gXCy61rJjK1aywMRpgPvzlkMGsCS-kI_0EIy4JjBM,2445
|
|
227
241
|
nat/front_ends/fastapi/message_handler.py,sha256=mMgw1B3zCzLBiOWRzDD55--K-J4lZ94zrug3xh87ijg,15206
|
|
228
242
|
nat/front_ends/fastapi/message_validator.py,sha256=g4pfyQ0Yhv8Ec_Pi0Ps7TGLIzFwys3SCwsjVZEEFBHw,17496
|
|
229
243
|
nat/front_ends/fastapi/register.py,sha256=rA12NPFgV9ZNHOEIgB7_SB6NytjRxgBTLo7fJ-73_HM,1153
|
|
230
244
|
nat/front_ends/fastapi/response_helpers.py,sha256=MGE9E73sQSCYjsR5YXRga2qbl44hrTAPW2N5Ui3vXX0,9028
|
|
231
245
|
nat/front_ends/fastapi/step_adaptor.py,sha256=J6UtoXL9De8bgAg93nE0ASLUHZbidWOfRiuFo-tyZgY,12412
|
|
246
|
+
nat/front_ends/fastapi/utils.py,sha256=oYuuLsugx-fpy6u4xd9gL7g9kfwsyKOnwH5YOwH633w,1998
|
|
232
247
|
nat/front_ends/fastapi/auth_flow_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
248
|
nat/front_ends/fastapi/auth_flow_handlers/http_flow_handler.py,sha256=69ye-nJ81jAoD1cVYv86-AUYu2-Uk8ZqU_m8AVO9vT8,1280
|
|
234
249
|
nat/front_ends/fastapi/auth_flow_handlers/websocket_flow_handler.py,sha256=5HX6mpKPmErkhwIAwFIGONYj_CkPrhCG7L56-79o7Yw,4862
|
|
@@ -237,16 +252,16 @@ nat/front_ends/fastapi/html_snippets/auth_code_grant_success.py,sha256=BNpWwzmA5
|
|
|
237
252
|
nat/front_ends/mcp/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
238
253
|
nat/front_ends/mcp/mcp_front_end_config.py,sha256=ivj8xWzE-Z1675jS7KB4LgpI3A7Atq-zJ6FgFQxdQuU,2062
|
|
239
254
|
nat/front_ends/mcp/mcp_front_end_plugin.py,sha256=CerJGbuPaHVcpnMFtjs8IKeQaa3blHzX90VKptUM_3g,3674
|
|
240
|
-
nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=
|
|
255
|
+
nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=GBhG3vGopEH3bBL2gxUCzEGbfWlsNerAYh3Yi6siRSs,5370
|
|
241
256
|
nat/front_ends/mcp/register.py,sha256=3aJtgG5VaiqujoeU1-Eq7Hl5pWslIlIwGFU2ASLTXgM,1173
|
|
242
257
|
nat/front_ends/mcp/tool_converter.py,sha256=vNPaTckcqjKakwdjkqET_T4-ChjlLkMfdw0_H-x6eVc,11309
|
|
243
258
|
nat/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
244
259
|
nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=3kevZVhvzj_Wvu8HYhRz-CRrO2OldW6wcmtcsIQCELk,1765
|
|
245
260
|
nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
246
|
-
nat/llm/aws_bedrock_llm.py,sha256
|
|
261
|
+
nat/llm/aws_bedrock_llm.py,sha256=-P6OltFz8CPHmKmgUipFaIpROLGdnnRmd-q5BfjY7lM,3219
|
|
247
262
|
nat/llm/azure_openai_llm.py,sha256=30JWbNyscHhuRjFdWF2yLAEcKurY0q2BSMVFTdtSv9g,2649
|
|
248
|
-
nat/llm/nim_llm.py,sha256=
|
|
249
|
-
nat/llm/openai_llm.py,sha256=
|
|
263
|
+
nat/llm/nim_llm.py,sha256=9sU3FUOedx5jY3He3qiN0T-AC48F5maIpz87NxP7Q0Q,2696
|
|
264
|
+
nat/llm/openai_llm.py,sha256=AMf8Xxzo3kYVi7XfyqatuU1-CH0-8QGmshDbSHHREXY,2487
|
|
250
265
|
nat/llm/register.py,sha256=DAM4rKfdwArZiKrhx_XhWVKik9ubUIrnPHE1Gy0pH1Q,898
|
|
251
266
|
nat/llm/utils/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
252
267
|
nat/llm/utils/env_config_value.py,sha256=kBVsv0pEokIAfDQx5omR7_FevFv_5fTPswcbnvhVT2c,3548
|
|
@@ -268,7 +283,7 @@ nat/observability/exporter/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48j
|
|
|
268
283
|
nat/observability/exporter/base_exporter.py,sha256=tP7c5O-gQnHB_1TwIJJUib1xmtUhX4f4Mf_bmpejtkI,16612
|
|
269
284
|
nat/observability/exporter/exporter.py,sha256=fqF0GYuhZRQEq0skq_FK2nlnsaUAzLpQi-OciaOkRno,2391
|
|
270
285
|
nat/observability/exporter/file_exporter.py,sha256=XYsFjF8ob4Ag-SyGtKEh6wRU9lBx3lbdu7Uo85NvVyo,1465
|
|
271
|
-
nat/observability/exporter/processing_exporter.py,sha256=
|
|
286
|
+
nat/observability/exporter/processing_exporter.py,sha256=U_VE1VZZ2giGE-OUGH4pnHTYW2Nwcwfx4bFLL7_iu9M,25044
|
|
272
287
|
nat/observability/exporter/raw_exporter.py,sha256=0ROEd-DlLP6pIxl4u2zJ6PMVrDrQa0DMHFDRsdGQMIk,1859
|
|
273
288
|
nat/observability/exporter/span_exporter.py,sha256=p2rugOIyubBk_Frg1c-x-THzvFZt8q8HhYssKUp8Hdg,13250
|
|
274
289
|
nat/observability/mixin/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
@@ -276,21 +291,24 @@ nat/observability/mixin/batch_config_mixin.py,sha256=DixQq-jRhBFJvpOX-gq7GvPmZCP
|
|
|
276
291
|
nat/observability/mixin/collector_config_mixin.py,sha256=3iptkRH9N6JgcsPq7GyjjJVAoxjd-l42UKE7iSF4Hq8,1087
|
|
277
292
|
nat/observability/mixin/file_mixin.py,sha256=J5kC70O3hoU86IDOoQtdk7caRD28nlIZL3igXcRSNBE,12306
|
|
278
293
|
nat/observability/mixin/file_mode.py,sha256=Rq7l8UegECub5QCyCAYwhyL_Jul386gW-ANmtMmv2G4,837
|
|
279
|
-
nat/observability/mixin/redaction_config_mixin.py,sha256=
|
|
294
|
+
nat/observability/mixin/redaction_config_mixin.py,sha256=yzLsgt1iaU0z7q1HvVT39kwhVVV6jBtWuP0SKG3jkMI,2141
|
|
280
295
|
nat/observability/mixin/resource_conflict_mixin.py,sha256=mcUp3Qinmhiepq3DyRvp9IaKGYtJfDgQVB-MuyVkWvk,5243
|
|
281
296
|
nat/observability/mixin/serialize_mixin.py,sha256=DgRHJpXCz9qHFYzhlTTx8Dkj297EylCKK3ydGrH5zOw,2478
|
|
282
|
-
nat/observability/mixin/tagging_config_mixin.py,sha256=
|
|
283
|
-
nat/observability/mixin/type_introspection_mixin.py,sha256=
|
|
297
|
+
nat/observability/mixin/tagging_config_mixin.py,sha256=m-AUeLsiiKPMdMv_0TKAFL18BvVJ4tRzPoRCVpzyfN8,1777
|
|
298
|
+
nat/observability/mixin/type_introspection_mixin.py,sha256=c4oq3BP60QI9nfo6VoJvl_IAk8Ski8tExcOJs51mrcs,19542
|
|
284
299
|
nat/observability/processor/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
285
300
|
nat/observability/processor/batching_processor.py,sha256=R0Qy3bHmf-QBM6FJmjmccdsf60JuvYLU-tV4kvy2hBA,13762
|
|
286
301
|
nat/observability/processor/callback_processor.py,sha256=T5DsEm4HCUOi1VL29XCpaK04sYQvJ75KZLH-mlJGQgk,1547
|
|
287
302
|
nat/observability/processor/falsy_batch_filter_processor.py,sha256=CInyZ1eIjtD1W6imPbuqwUeoWOMQ_0J0M9nPL6XwhTo,1778
|
|
288
|
-
nat/observability/processor/header_redaction_processor.py,sha256=cUmsVjHepddFHZu80zvdugG2eOUaGQr6cqxKyVS8fi4,4284
|
|
289
303
|
nat/observability/processor/intermediate_step_serializer.py,sha256=aHeCmixyop7uxNnKmrUZ8SIFeBNS05gYohKLepqbrcQ,1249
|
|
290
|
-
nat/observability/processor/processor.py,sha256=
|
|
304
|
+
nat/observability/processor/processor.py,sha256=NhcRKkXcfRDgHfn8Bw0XSnb8S9h5cdI4HnEO2BubLfo,2695
|
|
291
305
|
nat/observability/processor/processor_factory.py,sha256=1Ak4OWwmbimc5PKWwqPYq4fJqJifFm6MiI8vcafeErY,2408
|
|
292
|
-
nat/observability/processor/
|
|
293
|
-
nat/observability/processor/
|
|
306
|
+
nat/observability/processor/span_tagging_processor.py,sha256=9Zqr-IvnZYOddTw-n0pVzigcJB6hNVc9TyZma9z8Ozw,2553
|
|
307
|
+
nat/observability/processor/redaction/__init__.py,sha256=fctoXoEfCotEJphUS7rqtT7jHw2MPRA795D77xjSKfU,964
|
|
308
|
+
nat/observability/processor/redaction/contextual_redaction_processor.py,sha256=HFsuOsFgUinTUWJ3GEsqvLBfV08So2A2rf9LGZyzc34,4953
|
|
309
|
+
nat/observability/processor/redaction/contextual_span_redaction_processor.py,sha256=wmliaoeKwzQQX8kaeC-Jifq6YvSgeO_H5ri6sWhX7t4,2575
|
|
310
|
+
nat/observability/processor/redaction/redaction_processor.py,sha256=9WZACuFcR8f41VyOYWwXHxpHuxR2sQ3QC-Ta3TNJ2wk,6164
|
|
311
|
+
nat/observability/processor/redaction/span_header_redaction_processor.py,sha256=NA3M8Ex4J5QqMfAIOiI-I_TUgO3511FY7xZmglRg3xU,3764
|
|
294
312
|
nat/observability/utils/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
295
313
|
nat/observability/utils/dict_utils.py,sha256=DcNhZ0mgcJ-QQfsCl9QSGL-m_jTuHhr1N-v43ZCAMik,7371
|
|
296
314
|
nat/observability/utils/time_utils.py,sha256=V8m-e3ldUgwv031B17y29yLXIowdlTH4QW8xDw9WKvk,1071
|
|
@@ -301,7 +319,7 @@ nat/profiler/data_models.py,sha256=UAuTy9_l623JUNdIKIHPxoNEwZ7Qj-Vv93rfjxyf5Ak,1
|
|
|
301
319
|
nat/profiler/inference_metrics_model.py,sha256=Thz3OHBDzGrpPYaOm8m8_pNeEA_q0yDlUUDHFkQ3U90,1481
|
|
302
320
|
nat/profiler/intermediate_property_adapter.py,sha256=cCxyldN052meVJ4Ul-vbmguum0mLdaz3syFoidkIDsg,3537
|
|
303
321
|
nat/profiler/profile_runner.py,sha256=mVYfonKyP-KwxG9aACicP7m0eeGovmK8a_WUsq-RGkA,22541
|
|
304
|
-
nat/profiler/utils.py,sha256=
|
|
322
|
+
nat/profiler/utils.py,sha256=XAMq_0nYMf0blD8ffoRj4xSQgwz8KagsqlM7VmnDI44,8266
|
|
305
323
|
nat/profiler/calc/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv-tZzbU9W-izgx9aMEQg,680
|
|
306
324
|
nat/profiler/calc/calc_runner.py,sha256=1xvLvVF4QOX_p1-Ps1wqNGWZ9zX49JZxjqo0KiDDn-g,30624
|
|
307
325
|
nat/profiler/calc/calculations.py,sha256=K_r1OvEOEF5ffoadS4mAzTNHguVLMkNkrxrdtKvJJSs,12327
|
|
@@ -315,7 +333,7 @@ nat/profiler/callbacks/llama_index_callback_handler.py,sha256=xzYve07uMlSTDjj929
|
|
|
315
333
|
nat/profiler/callbacks/semantic_kernel_callback_handler.py,sha256=BknzhQNB-MDMhR4QC9JScCp-zXq7KZ33SFb7X0MiTaI,11087
|
|
316
334
|
nat/profiler/callbacks/token_usage_base_model.py,sha256=X0b_AbBgVQAAbgbDMim-3S3XdQ7PaPs9qMUACvMAe5o,1104
|
|
317
335
|
nat/profiler/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
|
-
nat/profiler/decorators/framework_wrapper.py,sha256=
|
|
336
|
+
nat/profiler/decorators/framework_wrapper.py,sha256=r-ysp4IRZhsfuUzeEukMwvLqD-hIVbF4yfJQ5PXr_5A,5517
|
|
319
337
|
nat/profiler/decorators/function_tracking.py,sha256=aZWPOsWKwFCFZSoxXz3SpHmbVB39W3hC0cVND7Tby4I,15795
|
|
320
338
|
nat/profiler/forecasting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
321
339
|
nat/profiler/forecasting/config.py,sha256=5BhMa8csuPCjEnTaNQjo_2IoO7esh1ch02MoSWkvwPw,791
|
|
@@ -336,6 +354,14 @@ nat/profiler/inference_optimization/bottleneck_analysis/simple_stack_analysis.py
|
|
|
336
354
|
nat/profiler/inference_optimization/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
337
355
|
nat/profiler/inference_optimization/experimental/concurrency_spike_analysis.py,sha256=3hFMDbfW7MKxFIhO7y35qtP5wPtLAA2ZqltlnI-OsVc,16953
|
|
338
356
|
nat/profiler/inference_optimization/experimental/prefix_span_analysis.py,sha256=-e5pEW4CQXYm0c5JrI-d0p-yZzvHlUzZYM8GOYA4hEU,16662
|
|
357
|
+
nat/profiler/parameter_optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
|
+
nat/profiler/parameter_optimization/optimizable_utils.py,sha256=93Pl8A14Zq_f3XsxSH-yFnEJ6B7W5hp7doPnPoLlRB4,3714
|
|
359
|
+
nat/profiler/parameter_optimization/optimizer_runtime.py,sha256=rXmCOq81o7ZorQOUYociVjuO3NO9CIjFBbwql2u_4H4,2715
|
|
360
|
+
nat/profiler/parameter_optimization/parameter_optimizer.py,sha256=-8fP8w0adPVrRlpEwS5b8wCGLNhJ2ZeMHI6BEBQDS2s,6337
|
|
361
|
+
nat/profiler/parameter_optimization/parameter_selection.py,sha256=-cKhoEgwC2K-brHOiLmgLnxk23bRMDefDCZSwvCqqJM,4007
|
|
362
|
+
nat/profiler/parameter_optimization/pareto_visualizer.py,sha256=06SqR6b50dI4emJiGPLV0en19utf3jrrwLUYf_LwNDs,15904
|
|
363
|
+
nat/profiler/parameter_optimization/prompt_optimizer.py,sha256=foO-IQWBzCsFRDxAwucIq1kQOO-XwFeULBWyoGc33Zo,17646
|
|
364
|
+
nat/profiler/parameter_optimization/update_helpers.py,sha256=NxWhrGVchbjws85pPd-jS-C14_l70QvVSvEfENndVcY,2339
|
|
339
365
|
nat/registry_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
366
|
nat/registry_handlers/metadata_factory.py,sha256=MTbXa7pifVPpmLJs86jVCS1wHk5drRykNPpJuv2A_0U,2769
|
|
341
367
|
nat/registry_handlers/package_utils.py,sha256=2xX3IHr5aK-xx8asULFw0VDgZb3MT-o7F-pTWJYgtp4,22517
|
|
@@ -377,11 +403,12 @@ nat/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
377
403
|
nat/settings/global_settings.py,sha256=JSlYnW3CeGJYGxlaXLz5F9xXf72I5TUz-w6qngG5di0,12476
|
|
378
404
|
nat/test/.namespace,sha256=Gace0pOC3ETEJf-TBVuNw0TQV6J_KtOPpEiSzMH-odo,215
|
|
379
405
|
nat/tool/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
380
|
-
nat/tool/chat_completion.py,sha256=
|
|
406
|
+
nat/tool/chat_completion.py,sha256=u9i39TuIPrCSWrNOw57QYD3i6pPbxV-7Gox8GRx9Vz0,3251
|
|
381
407
|
nat/tool/datetime_tools.py,sha256=yZV5lE3FsQuIZE3B36gg38hxfavxgaG04eVFbL0UBTI,3239
|
|
382
408
|
nat/tool/document_search.py,sha256=pLXWNfrddwu45Qa7z3pxfCUQEpTgGekvE-2WzM-CTP4,6751
|
|
409
|
+
nat/tool/github_tools.py,sha256=Pn6p6ebLClNUy6MJIWf-Pl5NguMUT-IJ-bhmpJmvBrg,21900
|
|
383
410
|
nat/tool/nvidia_rag.py,sha256=cEHSc3CZwpd71YcOQngya-Ca_B6ZOb87Dmsoza0VhFY,4163
|
|
384
|
-
nat/tool/register.py,sha256=
|
|
411
|
+
nat/tool/register.py,sha256=F1mQs9gI3Ee0EESFyBiTFZeqscY173ENQlfKcWZup0c,1208
|
|
385
412
|
nat/tool/retriever.py,sha256=FP5JL1vCQNrqaKz4F1up-osjxEPhxPFOyaScrgByc34,3877
|
|
386
413
|
nat/tool/server_tools.py,sha256=rQLipwRv8lAyU-gohky2JoVDxWQTUTSttNWjhu7lcHU,3194
|
|
387
414
|
nat/tool/code_execution/README.md,sha256=sl3YX4As95HX61XqTXOGnUcHBV1lla-OeuTnLI4qgng,4019
|
|
@@ -396,19 +423,12 @@ nat/tool/code_execution/local_sandbox/__init__.py,sha256=k25Kqr_PrH4s0YCfzVzC9va
|
|
|
396
423
|
nat/tool/code_execution/local_sandbox/local_sandbox_server.py,sha256=j8R7YwRyKrCsfqykUaCvbW2fhCAOkLXEwirnNQNXu08,6928
|
|
397
424
|
nat/tool/code_execution/local_sandbox/sandbox.requirements.txt,sha256=R86yJ6mcUhfD9_ZU-rSMdaojR6MU41hcH4pE3vAGmcE,43
|
|
398
425
|
nat/tool/code_execution/local_sandbox/start_local_sandbox.sh,sha256=gnPuzbneKZ61YvzaGIYSUdcyKMLuchYPti3zGLaNCZY,2055
|
|
399
|
-
nat/tool/github_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
400
|
-
nat/tool/github_tools/create_github_commit.py,sha256=O4EmNk_QQlflOpY5gT6oWlnY4wbzA7BnTk49D-2FbT8,6604
|
|
401
|
-
nat/tool/github_tools/create_github_issue.py,sha256=9jAHtKgZFGCJV4OE0Pj8sZDKr25pf7cbJ8Czt5hTaj0,3428
|
|
402
|
-
nat/tool/github_tools/create_github_pr.py,sha256=9nuJq9bAbqVXOyLhjO_3tS70eI_72mhNE6KRtN7PSCQ,4945
|
|
403
|
-
nat/tool/github_tools/get_github_file.py,sha256=tGMzrE-v16rjDoG-IbOkaS5hXe4SCb-onkTZdA-6eSg,4486
|
|
404
|
-
nat/tool/github_tools/get_github_issue.py,sha256=fFJFYt3mWR6CK46r6k3-3eVbAKLNh1yHRMmZU0c-4jA,6532
|
|
405
|
-
nat/tool/github_tools/get_github_pr.py,sha256=p4Xu-YA6L1dQ8O0e5LDzphrn5DknjttDhLeudgk7Iys,9716
|
|
406
|
-
nat/tool/github_tools/update_github_issue.py,sha256=fj_OAp5bSmSyj-wPAUvzfCGRBuwPyoK1kJ95Fn8XDg8,4103
|
|
407
426
|
nat/tool/memory_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
427
|
nat/tool/memory_tools/add_memory_tool.py,sha256=DYaYkVlH2myRshJpzmULfzdF0wFoPCAkTBokFVmhfzU,3349
|
|
409
428
|
nat/tool/memory_tools/delete_memory_tool.py,sha256=EWJVgzIzLDqktY5domXph-N2U9FmybdWl4J7KM7uK4g,2532
|
|
410
429
|
nat/tool/memory_tools/get_memory_tool.py,sha256=pJw6Lu2wukCW3mUGx5TtBNfdmdr-wqf7DQn2yNKxJ_4,2749
|
|
411
430
|
nat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
431
|
+
nat/utils/callable_utils.py,sha256=EIao6NhHRFEoBqYRC7aWoFqhlr2LeFT0XK-ac0coF9E,2475
|
|
412
432
|
nat/utils/debugging_utils.py,sha256=6M4JhbHDNDnfmSRGmHvT5IgEeWSHBore3VngdE_PMqc,1332
|
|
413
433
|
nat/utils/dump_distro_mapping.py,sha256=ptRVwrzhZplEWZUwwHOzyeuLj-ykkxn96t4oxUmRG28,1147
|
|
414
434
|
nat/utils/log_utils.py,sha256=dZLHt7qFqLlpPqMMFO9UVtSkOpMjFwz9tkmbAfOiNlg,1355
|
|
@@ -417,12 +437,12 @@ nat/utils/optional_imports.py,sha256=jQSVBc2fBSRw-2d6r8cEwvh5-di2EUUPakuuo9QbbwA
|
|
|
417
437
|
nat/utils/producer_consumer_queue.py,sha256=AcSYkAMBxLx06A5Xdy960PP3AJ7YaSPGJ7rbN_hJsjI,6599
|
|
418
438
|
nat/utils/string_utils.py,sha256=71HuIzGx7rF8ocTmeoUBpnCi1Qf1yynYlNLLIKP4BVs,1415
|
|
419
439
|
nat/utils/type_converter.py,sha256=tO5XPbr5MPhBqbseEM2hROAk_CTcnlzibTGdOPT3MfQ,10640
|
|
420
|
-
nat/utils/type_utils.py,sha256=
|
|
440
|
+
nat/utils/type_utils.py,sha256=bOsRUaMnGRH3R8xPYKJc40ddSV_QYTErVPiCqKyB_rg,14819
|
|
421
441
|
nat/utils/url_utils.py,sha256=UzDP_xaS6brWTu7vAws0B4jZyrITIK9Si3U6pZBZqDE,1028
|
|
422
442
|
nat/utils/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
423
443
|
nat/utils/data_models/schema_validator.py,sha256=pmGr5KuRX5tbVsymG1NxaSnGrKIfzxXEJNd58wIQ9SM,1532
|
|
424
444
|
nat/utils/exception_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
425
|
-
nat/utils/exception_handlers/automatic_retries.py,sha256=
|
|
445
|
+
nat/utils/exception_handlers/automatic_retries.py,sha256=ppTgYy8MH2LOPladPif5dg0qC4nPqhKkUeXJdE9ZLAo,14511
|
|
426
446
|
nat/utils/exception_handlers/schemas.py,sha256=EcNukc4-oASIX2mHAP-hH1up1roWnm99iY18P_v13D0,3800
|
|
427
447
|
nat/utils/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
448
|
nat/utils/io/model_processing.py,sha256=bEbH_tIgZQvPlEJKVV4kye_Y9UU96W4k2mKuckGErHA,936
|
|
@@ -438,10 +458,10 @@ nat/utils/reactive/base/observer_base.py,sha256=6BiQfx26EMumotJ3KoVcdmFBYR_fnAss
|
|
|
438
458
|
nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
|
|
439
459
|
nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
440
460
|
nat/utils/settings/global_settings.py,sha256=9JaO6pxKT_Pjw6rxJRsRlFCXdVKCl_xUKU2QHZQWWNM,7294
|
|
441
|
-
nvidia_nat-1.3.
|
|
442
|
-
nvidia_nat-1.3.
|
|
443
|
-
nvidia_nat-1.3.
|
|
444
|
-
nvidia_nat-1.3.
|
|
445
|
-
nvidia_nat-1.3.
|
|
446
|
-
nvidia_nat-1.3.
|
|
447
|
-
nvidia_nat-1.3.
|
|
461
|
+
nvidia_nat-1.3.0a20250917.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
462
|
+
nvidia_nat-1.3.0a20250917.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
463
|
+
nvidia_nat-1.3.0a20250917.dist-info/METADATA,sha256=XMVuDEbtqhQizJ5vrgeTy9z2rZJ1_5pVBK2i8Bopvsg,22512
|
|
464
|
+
nvidia_nat-1.3.0a20250917.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
465
|
+
nvidia_nat-1.3.0a20250917.dist-info/entry_points.txt,sha256=FNh4pZVSe_61s29zdks66lmXBPtsnko8KSZ4ffv7WVE,653
|
|
466
|
+
nvidia_nat-1.3.0a20250917.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
|
|
467
|
+
nvidia_nat-1.3.0a20250917.dist-info/RECORD,,
|