nvidia-nat 1.3.0a20251022__py3-none-any.whl → 1.3.0a20251024__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/data_models/api_server.py +2 -0
- nat/front_ends/mcp/mcp_front_end_config.py +5 -2
- nat/front_ends/mcp/mcp_front_end_plugin_worker.py +4 -0
- {nvidia_nat-1.3.0a20251022.dist-info → nvidia_nat-1.3.0a20251024.dist-info}/METADATA +1 -1
- {nvidia_nat-1.3.0a20251022.dist-info → nvidia_nat-1.3.0a20251024.dist-info}/RECORD +10 -10
- {nvidia_nat-1.3.0a20251022.dist-info → nvidia_nat-1.3.0a20251024.dist-info}/WHEEL +0 -0
- {nvidia_nat-1.3.0a20251022.dist-info → nvidia_nat-1.3.0a20251024.dist-info}/entry_points.txt +0 -0
- {nvidia_nat-1.3.0a20251022.dist-info → nvidia_nat-1.3.0a20251024.dist-info}/licenses/LICENSE-3rd-party.txt +0 -0
- {nvidia_nat-1.3.0a20251022.dist-info → nvidia_nat-1.3.0a20251024.dist-info}/licenses/LICENSE.md +0 -0
- {nvidia_nat-1.3.0a20251022.dist-info → nvidia_nat-1.3.0a20251024.dist-info}/top_level.txt +0 -0
nat/data_models/api_server.py
CHANGED
|
@@ -608,6 +608,8 @@ class WebSocketUserInteractionResponseMessage(BaseModel):
|
|
|
608
608
|
type: typing.Literal[WebSocketMessageType.USER_INTERACTION_MESSAGE]
|
|
609
609
|
id: str = "default"
|
|
610
610
|
thread_id: str = "default"
|
|
611
|
+
parent_id: str = "default"
|
|
612
|
+
conversation_id: str | None = None
|
|
611
613
|
content: UserMessageContent
|
|
612
614
|
user: User = User()
|
|
613
615
|
security: Security = Security()
|
|
@@ -37,8 +37,11 @@ class MCPFrontEndConfig(FrontEndBaseConfig, name="mcp"):
|
|
|
37
37
|
port: int = Field(default=9901, description="Port to bind the server to (default: 9901)", ge=0, le=65535)
|
|
38
38
|
debug: bool = Field(default=False, description="Enable debug mode (default: False)")
|
|
39
39
|
log_level: str = Field(default="INFO", description="Log level for the MCP server (default: INFO)")
|
|
40
|
-
tool_names: list[str] = Field(
|
|
41
|
-
|
|
40
|
+
tool_names: list[str] = Field(
|
|
41
|
+
default_factory=list,
|
|
42
|
+
description="The list of tools MCP server will expose (default: all tools)."
|
|
43
|
+
"Tool names can be functions or function groups",
|
|
44
|
+
)
|
|
42
45
|
transport: Literal["sse", "streamable-http"] = Field(
|
|
43
46
|
default="streamable-http",
|
|
44
47
|
description="Transport type for the MCP server (default: streamable-http, backwards compatible with sse)")
|
|
@@ -234,6 +234,10 @@ class MCPFrontEndPluginWorker(MCPFrontEndPluginWorkerBase):
|
|
|
234
234
|
filtered_functions: dict[str, Function] = {}
|
|
235
235
|
for function_name, function in functions.items():
|
|
236
236
|
if function_name in self.front_end_config.tool_names:
|
|
237
|
+
# Treat current tool_names as function names, so check if the function name is in the list
|
|
238
|
+
filtered_functions[function_name] = function
|
|
239
|
+
elif any(function_name.startswith(f"{group_name}.") for group_name in self.front_end_config.tool_names):
|
|
240
|
+
# Treat tool_names as function group names, so check if the function name starts with the group name
|
|
237
241
|
filtered_functions[function_name] = function
|
|
238
242
|
else:
|
|
239
243
|
logger.debug("Skipping function %s as it's not in tool_names", function_name)
|
|
@@ -112,7 +112,7 @@ nat/control_flow/router_agent/prompt.py,sha256=fIAiNsAs1zXRAatButR76zSpHJNxSkXXK
|
|
|
112
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=
|
|
115
|
+
nat/data_models/api_server.py,sha256=oQtSiP7jpkHIZ75g21A_lTiidNsQo54pq3qy2StIJcs,30652
|
|
116
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
|
|
@@ -259,9 +259,9 @@ nat/front_ends/fastapi/html_snippets/__init__.py,sha256=GUJrgGtpvyMUCjUBvR3faAdv
|
|
|
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
|
|
261
261
|
nat/front_ends/mcp/introspection_token_verifier.py,sha256=s7Q4Q6rWZJ0ZVujSxxpvVI6Bnhkg1LJQ3RLkvhzFIGE,2836
|
|
262
|
-
nat/front_ends/mcp/mcp_front_end_config.py,sha256=
|
|
262
|
+
nat/front_ends/mcp/mcp_front_end_config.py,sha256=KP13AKCyqOwXqebMmYrPwx1Ogq5iPo7R9uzLNSIHySY,4089
|
|
263
263
|
nat/front_ends/mcp/mcp_front_end_plugin.py,sha256=4u_kpen_T-_Uh62V5M7dfW9KyzbqXI7tGBG4AxJXWm0,5231
|
|
264
|
-
nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=
|
|
264
|
+
nat/front_ends/mcp/mcp_front_end_plugin_worker.py,sha256=rOF5Z4o-4n3ky57ncNm8XCdBsbRazGeOeiw55nKbZF4,10618
|
|
265
265
|
nat/front_ends/mcp/register.py,sha256=3aJtgG5VaiqujoeU1-Eq7Hl5pWslIlIwGFU2ASLTXgM,1173
|
|
266
266
|
nat/front_ends/mcp/tool_converter.py,sha256=jyH6tFKUDXSfRBKkv8WjvJsQt05zk3FJBTCwnIuUh5M,11547
|
|
267
267
|
nat/front_ends/simple_base/__init__.py,sha256=Xs1JQ16L9btwreh4pdGKwskffAw1YFO48jKrU4ib_7c,685
|
|
@@ -470,10 +470,10 @@ nat/utils/reactive/base/observer_base.py,sha256=6BiQfx26EMumotJ3KoVcdmFBYR_fnAss
|
|
|
470
470
|
nat/utils/reactive/base/subject_base.py,sha256=UQOxlkZTIeeyYmG5qLtDpNf_63Y7p-doEeUA08_R8ME,2521
|
|
471
471
|
nat/utils/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
472
472
|
nat/utils/settings/global_settings.py,sha256=9JaO6pxKT_Pjw6rxJRsRlFCXdVKCl_xUKU2QHZQWWNM,7294
|
|
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.
|
|
479
|
-
nvidia_nat-1.3.
|
|
473
|
+
nvidia_nat-1.3.0a20251024.dist-info/licenses/LICENSE-3rd-party.txt,sha256=fOk5jMmCX9YoKWyYzTtfgl-SUy477audFC5hNY4oP7Q,284609
|
|
474
|
+
nvidia_nat-1.3.0a20251024.dist-info/licenses/LICENSE.md,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
475
|
+
nvidia_nat-1.3.0a20251024.dist-info/METADATA,sha256=T4Q0KR525iU6Yign1ycF7f6RbxN3cfYg7FddaBmYSaI,10248
|
|
476
|
+
nvidia_nat-1.3.0a20251024.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
477
|
+
nvidia_nat-1.3.0a20251024.dist-info/entry_points.txt,sha256=4jCqjyETMpyoWbCBf4GalZU8I_wbstpzwQNezdAVbbo,698
|
|
478
|
+
nvidia_nat-1.3.0a20251024.dist-info/top_level.txt,sha256=lgJWLkigiVZuZ_O1nxVnD_ziYBwgpE2OStdaCduMEGc,8
|
|
479
|
+
nvidia_nat-1.3.0a20251024.dist-info/RECORD,,
|
|
File without changes
|
{nvidia_nat-1.3.0a20251022.dist-info → nvidia_nat-1.3.0a20251024.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{nvidia_nat-1.3.0a20251022.dist-info → nvidia_nat-1.3.0a20251024.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|