nvidia-nat 1.3.0a20250925__py3-none-any.whl → 1.3.0a20250926__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/react_agent/register.py +2 -5
- nat/agent/rewoo_agent/register.py +1 -4
- nat/agent/tool_calling_agent/register.py +1 -3
- nat/builder/function.py +2 -1
- nat/front_ends/console/console_front_end_plugin.py +3 -1
- nat/llm/litellm_llm.py +1 -1
- nat/llm/register.py +1 -1
- nat/runtime/runner.py +2 -1
- {nvidia_nat-1.3.0a20250925.dist-info → nvidia_nat-1.3.0a20250926.dist-info}/METADATA +5 -1
- {nvidia_nat-1.3.0a20250925.dist-info → nvidia_nat-1.3.0a20250926.dist-info}/RECORD +15 -15
- {nvidia_nat-1.3.0a20250925.dist-info → nvidia_nat-1.3.0a20250926.dist-info}/WHEEL +0 -0
- {nvidia_nat-1.3.0a20250925.dist-info → nvidia_nat-1.3.0a20250926.dist-info}/entry_points.txt +0 -0
- {nvidia_nat-1.3.0a20250925.dist-info → nvidia_nat-1.3.0a20250926.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {nvidia_nat-1.3.0a20250925.dist-info → nvidia_nat-1.3.0a20250926.dist-info}/licenses/LICENSE.md +0 -0
- {nvidia_nat-1.3.0a20250925.dist-info → nvidia_nat-1.3.0a20250926.dist-info}/top_level.txt +0 -0
|
@@ -152,11 +152,8 @@ async def react_agent_workflow(config: ReActAgentWorkflowConfig, builder: Builde
|
|
|
152
152
|
return ChatResponse.from_string(str(output_message.content))
|
|
153
153
|
|
|
154
154
|
except Exception as ex:
|
|
155
|
-
logger.exception("%s ReAct Agent failed with exception: %s", AGENT_LOG_PREFIX, ex)
|
|
156
|
-
|
|
157
|
-
if config.verbose:
|
|
158
|
-
return ChatResponse.from_string(str(ex))
|
|
159
|
-
return ChatResponse.from_string("I seem to be having a problem.")
|
|
155
|
+
logger.exception("%s ReAct Agent failed with exception: %s", AGENT_LOG_PREFIX, str(ex))
|
|
156
|
+
raise RuntimeError
|
|
160
157
|
|
|
161
158
|
if (config.use_openai_api):
|
|
162
159
|
yield FunctionInfo.from_fn(_response_fn, description=config.description)
|
|
@@ -158,10 +158,7 @@ async def rewoo_agent_workflow(config: ReWOOAgentWorkflowConfig, builder: Builde
|
|
|
158
158
|
|
|
159
159
|
except Exception as ex:
|
|
160
160
|
logger.exception("ReWOO Agent failed with exception: %s", ex)
|
|
161
|
-
|
|
162
|
-
if config.verbose:
|
|
163
|
-
return ChatResponse.from_string(str(ex))
|
|
164
|
-
return ChatResponse.from_string("I seem to be having a problem.")
|
|
161
|
+
raise RuntimeError
|
|
165
162
|
|
|
166
163
|
if (config.use_openai_api):
|
|
167
164
|
yield FunctionInfo.from_fn(_response_fn, description=config.description)
|
|
@@ -115,9 +115,7 @@ async def tool_calling_agent_workflow(config: ToolCallAgentWorkflowConfig, build
|
|
|
115
115
|
return str(output_message.content)
|
|
116
116
|
except Exception as ex:
|
|
117
117
|
logger.exception("%s Tool Calling Agent failed with exception: %s", AGENT_LOG_PREFIX, ex)
|
|
118
|
-
|
|
119
|
-
return str(ex)
|
|
120
|
-
return "I seem to be having a problem."
|
|
118
|
+
raise RuntimeError
|
|
121
119
|
|
|
122
120
|
try:
|
|
123
121
|
yield FunctionInfo.from_fn(_response_fn, description=config.description)
|
nat/builder/function.py
CHANGED
|
@@ -159,7 +159,8 @@ class Function(FunctionBase[InputT, StreamingOutputT, SingleOutputT], ABC):
|
|
|
159
159
|
|
|
160
160
|
return result
|
|
161
161
|
except Exception as e:
|
|
162
|
-
|
|
162
|
+
err_msg = f"Error: {e}" if str(e).strip() else ""
|
|
163
|
+
logger.error("Error with ainvoke in function with input: %s. %s", value, err_msg)
|
|
163
164
|
raise
|
|
164
165
|
|
|
165
166
|
@typing.final
|
|
@@ -81,7 +81,9 @@ class ConsoleFrontEndPlugin(SimpleFrontEndPluginBase[ConsoleFrontEndConfig]):
|
|
|
81
81
|
input_list = list(self.front_end_config.input_query)
|
|
82
82
|
logger.debug("Processing input: %s", self.front_end_config.input_query)
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
# Make `return_exceptions=False` explicit; all exceptions are raised instead of being silenced
|
|
85
|
+
runner_outputs = await asyncio.gather(*[run_single_query(query) for query in input_list],
|
|
86
|
+
return_exceptions=False)
|
|
85
87
|
|
|
86
88
|
elif (self.front_end_config.input_file):
|
|
87
89
|
|
nat/llm/litellm_llm.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SPDX-FileCopyrightText: Copyright (c)
|
|
1
|
+
# SPDX-FileCopyrightText: Copyright (c) 2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
2
2
|
# SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
nat/llm/register.py
CHANGED
|
@@ -22,6 +22,6 @@ This module is imported by the NeMo Agent Toolkit runtime to ensure providers ar
|
|
|
22
22
|
# Import any providers which need to be automatically registered here
|
|
23
23
|
from . import aws_bedrock_llm
|
|
24
24
|
from . import azure_openai_llm
|
|
25
|
+
from . import litellm_llm
|
|
25
26
|
from . import nim_llm
|
|
26
27
|
from . import openai_llm
|
|
27
|
-
from . import litellm_llm
|
nat/runtime/runner.py
CHANGED
|
@@ -149,7 +149,8 @@ class Runner:
|
|
|
149
149
|
|
|
150
150
|
return result
|
|
151
151
|
except Exception as e:
|
|
152
|
-
|
|
152
|
+
err_msg = f": {e}" if str(e).strip() else "."
|
|
153
|
+
logger.error("Error running workflow%s", err_msg)
|
|
153
154
|
event_stream = self._context_state.event_stream.get()
|
|
154
155
|
if event_stream:
|
|
155
156
|
event_stream.on_complete()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nvidia-nat
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.0a20250926
|
|
4
4
|
Summary: NVIDIA NeMo Agent toolkit
|
|
5
5
|
Author: NVIDIA Corporation
|
|
6
6
|
Maintainer: NVIDIA Corporation
|
|
@@ -323,6 +323,10 @@ Requires-Dist: aiosqlite~=0.21; extra == "async-endpoints"
|
|
|
323
323
|
Requires-Dist: dask==2023.6; extra == "async-endpoints"
|
|
324
324
|
Requires-Dist: distributed==2023.6; extra == "async-endpoints"
|
|
325
325
|
Requires-Dist: sqlalchemy[asyncio]~=2.0; extra == "async-endpoints"
|
|
326
|
+
Provides-Extra: litellm
|
|
327
|
+
Requires-Dist: litellm==1.74.9; extra == "litellm"
|
|
328
|
+
Provides-Extra: openai
|
|
329
|
+
Requires-Dist: openai~=1.106; extra == "openai"
|
|
326
330
|
Dynamic: license-file
|
|
327
331
|
|
|
328
332
|
<!--
|
|
@@ -10,16 +10,16 @@ nat/agent/react_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
10
10
|
nat/agent/react_agent/agent.py,sha256=sWrg9WrglTKQQyG3EcjNm2JTEchCPEo9li-Po7TJKss,21294
|
|
11
11
|
nat/agent/react_agent/output_parser.py,sha256=m7K6wRwtckBBpAHqOf3BZ9mqZLwrP13Kxz5fvNxbyZE,4219
|
|
12
12
|
nat/agent/react_agent/prompt.py,sha256=N47JJrT6xwYQCv1jedHhlul2AE7EfKsSYfAbgJwWRew,1758
|
|
13
|
-
nat/agent/react_agent/register.py,sha256=
|
|
13
|
+
nat/agent/react_agent/register.py,sha256=b97dfNtA0I3bNBOGdr9_akQ89UDwPHPPb7LqpsZNaWI,8815
|
|
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
17
|
nat/agent/rewoo_agent/agent.py,sha256=ogTtUsNqbAjEprBKp2ZEoYfuHvgxnjV7NgygvSgMz7M,19264
|
|
18
18
|
nat/agent/rewoo_agent/prompt.py,sha256=nFMav3Zl_vmKPLzAIhbQHlldWnurPJb1GlwnekUuxDs,3720
|
|
19
|
-
nat/agent/rewoo_agent/register.py,sha256=
|
|
19
|
+
nat/agent/rewoo_agent/register.py,sha256=668zAag6eqajX_PIfh6c-0I0UQN5D-lRiz_mNKHXXjM,8954
|
|
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
|
-
nat/agent/tool_calling_agent/register.py,sha256=
|
|
22
|
+
nat/agent/tool_calling_agent/register.py,sha256=ijiRfgDVtt2p7_q1YbIQZmUVV8-jf3yT18HwtKyReUI,6822
|
|
23
23
|
nat/authentication/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
24
24
|
nat/authentication/interfaces.py,sha256=FAYM-QXVUn3a_8bmAZ7kP-lmN_BrLW8mo6krZJ3e0ME,3314
|
|
25
25
|
nat/authentication/register.py,sha256=lFhswYUk9iZ53mq33fClR9UfjJPdjGIivGGNHQeWiYo,915
|
|
@@ -48,7 +48,7 @@ nat/builder/eval_builder.py,sha256=I-ScvupmorClYoVBIs_PhSsB7Xf9e2nGWe0rCZp3txo,6
|
|
|
48
48
|
nat/builder/evaluator.py,sha256=xWHMND2vcAUkdFP7FU3jnVki1rUHeTa0-9saFh2hWKs,1162
|
|
49
49
|
nat/builder/framework_enum.py,sha256=n7IaTQBxhFozIQqRMcX9kXntw28JhFzCj82jJ0C5tNU,901
|
|
50
50
|
nat/builder/front_end.py,sha256=mHooS1M7mVo1swSgbYoqbzQENXkuG7_Es9q4gFiuL8E,2175
|
|
51
|
-
nat/builder/function.py,sha256=
|
|
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
|
|
54
54
|
nat/builder/intermediate_step_manager.py,sha256=iOuMLWTaES0J0XzaLxhTUqFvuoCAChJu3V69T43K0k0,7599
|
|
@@ -234,7 +234,7 @@ nat/front_ends/register.py,sha256=_C6AFpsQ8hUXavKHaBMy0g137fOcLfEjyU0EAuYqtao,85
|
|
|
234
234
|
nat/front_ends/console/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
235
235
|
nat/front_ends/console/authentication_flow_handler.py,sha256=Q1A7dv-pUlzsGZ8NXu8r-aGCqRiFqadPPBOw2TmyUNk,9566
|
|
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=
|
|
237
|
+
nat/front_ends/console/console_front_end_plugin.py,sha256=euUxC794jhZgODNMfxriCkeHn9eluU1UwWYUnyDh-iU,4315
|
|
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
|
|
@@ -269,10 +269,10 @@ nat/front_ends/simple_base/simple_front_end_plugin_base.py,sha256=py_yA9XAw-yHfK
|
|
|
269
269
|
nat/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
270
|
nat/llm/aws_bedrock_llm.py,sha256=-P6OltFz8CPHmKmgUipFaIpROLGdnnRmd-q5BfjY7lM,3219
|
|
271
271
|
nat/llm/azure_openai_llm.py,sha256=30JWbNyscHhuRjFdWF2yLAEcKurY0q2BSMVFTdtSv9g,2649
|
|
272
|
-
nat/llm/litellm_llm.py,sha256=
|
|
272
|
+
nat/llm/litellm_llm.py,sha256=3XtAKdI4lmbbuiEGKSJob0mqAp8RvYRpxK6t0GQk0UE,2770
|
|
273
273
|
nat/llm/nim_llm.py,sha256=9sU3FUOedx5jY3He3qiN0T-AC48F5maIpz87NxP7Q0Q,2696
|
|
274
274
|
nat/llm/openai_llm.py,sha256=AMf8Xxzo3kYVi7XfyqatuU1-CH0-8QGmshDbSHHREXY,2487
|
|
275
|
-
nat/llm/register.py,sha256=
|
|
275
|
+
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
|
|
@@ -406,7 +406,7 @@ nat/retriever/nemo_retriever/register.py,sha256=3XdrvEJzX2Zc8wpdm__4YYlEWBW-FK3t
|
|
|
406
406
|
nat/retriever/nemo_retriever/retriever.py,sha256=gi3_qJFqE-iqRh3of_cmJg-SwzaQ3z24zA9LwY_MSLY,6930
|
|
407
407
|
nat/runtime/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
408
408
|
nat/runtime/loader.py,sha256=obUdAgZVYCPGC0R8u3wcoKFJzzSPQgJvrbU4OWygtog,7953
|
|
409
|
-
nat/runtime/runner.py,sha256=
|
|
409
|
+
nat/runtime/runner.py,sha256=Kzm5GRrGUFMQ_fbLOCJumYc4R-JXdTm5tUw2yMMDJpE,6450
|
|
410
410
|
nat/runtime/session.py,sha256=U3UHQpdCBkCiJetsWdq9r6wUEVDBa2gv1VQedE64kY8,6959
|
|
411
411
|
nat/runtime/user_metadata.py,sha256=ce37NRYJWnMOWk6A7VAQ1GQztjMmkhMOq-uYf2gNCwo,3692
|
|
412
412
|
nat/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -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.
|
|
473
|
-
nvidia_nat-1.3.
|
|
474
|
-
nvidia_nat-1.3.
|
|
475
|
-
nvidia_nat-1.3.
|
|
476
|
-
nvidia_nat-1.3.
|
|
477
|
-
nvidia_nat-1.3.
|
|
478
|
-
nvidia_nat-1.3.
|
|
472
|
+
nvidia_nat-1.3.0a20250926.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
473
|
+
nvidia_nat-1.3.0a20250926.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
474
|
+
nvidia_nat-1.3.0a20250926.dist-info/METADATA,sha256=AsBqos4EXJEwd-G-QSIF4iXItfZ7ULCpgwh0QCVd1lQ,22862
|
|
475
|
+
nvidia_nat-1.3.0a20250926.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
476
|
+
nvidia_nat-1.3.0a20250926.dist-info/entry_points.txt,sha256=4jCqjyETMpyoWbCBf4GalZU8I_wbstpzwQNezdAVbbo,698
|
|
477
|
+
nvidia_nat-1.3.0a20250926.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
|
|
478
|
+
nvidia_nat-1.3.0a20250926.dist-info/RECORD,,
|
|
File without changes
|
{nvidia_nat-1.3.0a20250925.dist-info → nvidia_nat-1.3.0a20250926.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{nvidia_nat-1.3.0a20250925.dist-info → nvidia_nat-1.3.0a20250926.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|