datarobot-genai 0.2.5__py3-none-any.whl → 0.2.7__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.
- datarobot_genai/nat/agent.py +4 -0
- datarobot_genai/nat/datarobot_auth_provider.py +110 -0
- datarobot_genai/nat/datarobot_mcp_client.py +234 -0
- {datarobot_genai-0.2.5.dist-info → datarobot_genai-0.2.7.dist-info}/METADATA +2 -1
- {datarobot_genai-0.2.5.dist-info → datarobot_genai-0.2.7.dist-info}/RECORD +9 -7
- {datarobot_genai-0.2.5.dist-info → datarobot_genai-0.2.7.dist-info}/entry_points.txt +2 -0
- {datarobot_genai-0.2.5.dist-info → datarobot_genai-0.2.7.dist-info}/WHEEL +0 -0
- {datarobot_genai-0.2.5.dist-info → datarobot_genai-0.2.7.dist-info}/licenses/AUTHORS +0 -0
- {datarobot_genai-0.2.5.dist-info → datarobot_genai-0.2.7.dist-info}/licenses/LICENSE +0 -0
datarobot_genai/nat/agent.py
CHANGED
|
@@ -123,6 +123,8 @@ class NatAgent(BaseAgent[None]):
|
|
|
123
123
|
model: str | None = None,
|
|
124
124
|
verbose: bool | str | None = True,
|
|
125
125
|
timeout: int | None = 90,
|
|
126
|
+
authorization_context: dict[str, Any] | None = None,
|
|
127
|
+
forwarded_headers: dict[str, str] | None = None,
|
|
126
128
|
**kwargs: Any,
|
|
127
129
|
) -> None:
|
|
128
130
|
super().__init__(
|
|
@@ -131,6 +133,8 @@ class NatAgent(BaseAgent[None]):
|
|
|
131
133
|
model=model,
|
|
132
134
|
verbose=verbose,
|
|
133
135
|
timeout=timeout,
|
|
136
|
+
authorization_context=authorization_context,
|
|
137
|
+
forwarded_headers=forwarded_headers,
|
|
134
138
|
**kwargs,
|
|
135
139
|
)
|
|
136
140
|
self.workflow_path = workflow_path
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
# Copyright 2025 DataRobot, Inc. and its affiliates.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
from collections.abc import AsyncGenerator
|
|
15
|
+
from typing import Any
|
|
16
|
+
|
|
17
|
+
from datarobot.core.config import DataRobotAppFrameworkBaseSettings
|
|
18
|
+
from nat.authentication.api_key.api_key_auth_provider import APIKeyAuthProvider
|
|
19
|
+
from nat.authentication.api_key.api_key_auth_provider_config import APIKeyAuthProviderConfig
|
|
20
|
+
from nat.authentication.interfaces import AuthProviderBase
|
|
21
|
+
from nat.builder.builder import Builder
|
|
22
|
+
from nat.cli.register_workflow import register_auth_provider
|
|
23
|
+
from nat.data_models.authentication import AuthProviderBaseConfig
|
|
24
|
+
from nat.data_models.authentication import AuthResult
|
|
25
|
+
from nat.data_models.authentication import HeaderCred
|
|
26
|
+
from pydantic import Field
|
|
27
|
+
|
|
28
|
+
from datarobot_genai.core.mcp.common import MCPConfig
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class Config(DataRobotAppFrameworkBaseSettings):
|
|
32
|
+
"""
|
|
33
|
+
Finds variables in the priority order of: env
|
|
34
|
+
variables (including Runtime Parameters), .env, file_secrets, then
|
|
35
|
+
Pulumi output variables.
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
datarobot_api_token: str | None = None
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
config = Config()
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class DataRobotAPIKeyAuthProviderConfig(APIKeyAuthProviderConfig, name="datarobot_api_key"): # type: ignore[call-arg]
|
|
45
|
+
raw_key: str = Field(
|
|
46
|
+
description=(
|
|
47
|
+
"Raw API token or credential to be injected into the request parameter. "
|
|
48
|
+
"Used for 'bearer','x-api-key','custom', and other schemes. "
|
|
49
|
+
),
|
|
50
|
+
default=config.datarobot_api_token,
|
|
51
|
+
)
|
|
52
|
+
default_user_id: str | None = Field(default="default-user", description="Default user ID")
|
|
53
|
+
allow_default_user_id_for_tool_calls: bool = Field(
|
|
54
|
+
default=True, description="Allow default user ID for tool calls"
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
@register_auth_provider(config_type=DataRobotAPIKeyAuthProviderConfig)
|
|
59
|
+
async def datarobot_api_key_client(
|
|
60
|
+
config: DataRobotAPIKeyAuthProviderConfig, builder: Builder
|
|
61
|
+
) -> AsyncGenerator[APIKeyAuthProvider]:
|
|
62
|
+
yield APIKeyAuthProvider(config=config)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
mcp_config = MCPConfig().server_config
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
class DataRobotMCPAuthProviderConfig(AuthProviderBaseConfig, name="datarobot_mcp_auth"): # type: ignore[call-arg]
|
|
69
|
+
headers: dict[str, str] | None = Field(
|
|
70
|
+
description=("Headers to be used for authentication. "),
|
|
71
|
+
default=mcp_config["headers"] if mcp_config else None,
|
|
72
|
+
)
|
|
73
|
+
default_user_id: str | None = Field(default="default-user", description="Default user ID")
|
|
74
|
+
allow_default_user_id_for_tool_calls: bool = Field(
|
|
75
|
+
default=True, description="Allow default user ID for tool calls"
|
|
76
|
+
)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
class DataRobotMCPAuthProvider(AuthProviderBase[DataRobotMCPAuthProviderConfig]):
|
|
80
|
+
def __init__(
|
|
81
|
+
self, config: DataRobotMCPAuthProviderConfig, config_name: str | None = None
|
|
82
|
+
) -> None:
|
|
83
|
+
assert isinstance(config, DataRobotMCPAuthProviderConfig), (
|
|
84
|
+
"Config is not DataRobotMCPAuthProviderConfig"
|
|
85
|
+
)
|
|
86
|
+
super().__init__(config)
|
|
87
|
+
|
|
88
|
+
async def authenticate(self, user_id: str | None = None, **kwargs: Any) -> AuthResult | None:
|
|
89
|
+
"""
|
|
90
|
+
Authenticate the user using the API key credentials.
|
|
91
|
+
|
|
92
|
+
Args:
|
|
93
|
+
user_id (str): The user ID to authenticate.
|
|
94
|
+
|
|
95
|
+
Returns
|
|
96
|
+
-------
|
|
97
|
+
AuthenticatedContext: The authenticated context containing headers
|
|
98
|
+
"""
|
|
99
|
+
return AuthResult(
|
|
100
|
+
credentials=[
|
|
101
|
+
HeaderCred(name=name, value=value) for name, value in self.config.headers.items()
|
|
102
|
+
]
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
@register_auth_provider(config_type=DataRobotMCPAuthProviderConfig)
|
|
107
|
+
async def datarobot_mcp_auth_provider(
|
|
108
|
+
config: DataRobotMCPAuthProviderConfig, builder: Builder
|
|
109
|
+
) -> AsyncGenerator[DataRobotMCPAuthProvider]:
|
|
110
|
+
yield DataRobotMCPAuthProvider(config=config)
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
# Copyright 2025 DataRobot, Inc. and its affiliates.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
import logging
|
|
16
|
+
from datetime import timedelta
|
|
17
|
+
from typing import Literal
|
|
18
|
+
|
|
19
|
+
import httpx
|
|
20
|
+
from nat.authentication.interfaces import AuthProviderBase
|
|
21
|
+
from nat.builder.builder import Builder
|
|
22
|
+
from nat.cli.register_workflow import register_function_group
|
|
23
|
+
from nat.data_models.component_ref import AuthenticationRef
|
|
24
|
+
from nat.plugins.mcp.client_base import AuthAdapter
|
|
25
|
+
from nat.plugins.mcp.client_base import MCPSSEClient
|
|
26
|
+
from nat.plugins.mcp.client_base import MCPStdioClient
|
|
27
|
+
from nat.plugins.mcp.client_base import MCPStreamableHTTPClient
|
|
28
|
+
from nat.plugins.mcp.client_config import MCPServerConfig
|
|
29
|
+
from nat.plugins.mcp.client_impl import MCPClientConfig
|
|
30
|
+
from nat.plugins.mcp.client_impl import MCPFunctionGroup
|
|
31
|
+
from nat.plugins.mcp.client_impl import mcp_apply_tool_alias_and_description
|
|
32
|
+
from nat.plugins.mcp.client_impl import mcp_session_tool_function
|
|
33
|
+
from pydantic import Field
|
|
34
|
+
from pydantic import HttpUrl
|
|
35
|
+
|
|
36
|
+
from datarobot_genai.core.mcp.common import MCPConfig
|
|
37
|
+
|
|
38
|
+
logger = logging.getLogger(__name__)
|
|
39
|
+
|
|
40
|
+
config = MCPConfig().server_config
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
class DataRobotMCPServerConfig(MCPServerConfig):
|
|
44
|
+
transport: Literal["streamable-http", "sse", "stdio"] = Field(
|
|
45
|
+
default=config["transport"] if config else "stdio",
|
|
46
|
+
description="Transport type to connect to the MCP server (sse or streamable-http)",
|
|
47
|
+
)
|
|
48
|
+
url: HttpUrl | None = Field(
|
|
49
|
+
default=config["url"] if config else None,
|
|
50
|
+
description="URL of the MCP server (for sse or streamable-http transport)",
|
|
51
|
+
)
|
|
52
|
+
# Authentication configuration
|
|
53
|
+
auth_provider: str | AuthenticationRef | None = Field(
|
|
54
|
+
default="datarobot_mcp_auth" if config else None,
|
|
55
|
+
description="Reference to authentication provider",
|
|
56
|
+
)
|
|
57
|
+
command: str | None = Field(
|
|
58
|
+
default=None if config else "docker",
|
|
59
|
+
description="Command to run for stdio transport (e.g. 'python' or 'docker')",
|
|
60
|
+
)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class DataRobotMCPClientConfig(MCPClientConfig, name="datarobot_mcp_client"): # type: ignore[call-arg]
|
|
64
|
+
server: DataRobotMCPServerConfig = Field(
|
|
65
|
+
default=DataRobotMCPServerConfig(), description="DataRobot MCP Server configuration"
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
class DataRobotAuthAdapter(AuthAdapter):
|
|
70
|
+
async def _get_auth_headers(
|
|
71
|
+
self, request: httpx.Request | None = None, response: httpx.Response | None = None
|
|
72
|
+
) -> dict[str, str]:
|
|
73
|
+
"""Get authentication headers from the NAT auth provider."""
|
|
74
|
+
try:
|
|
75
|
+
# Use the user_id passed to this AuthAdapter instance
|
|
76
|
+
auth_result = await self.auth_provider.authenticate(
|
|
77
|
+
user_id=self.user_id, response=response
|
|
78
|
+
)
|
|
79
|
+
as_kwargs = auth_result.as_requests_kwargs()
|
|
80
|
+
return as_kwargs["headers"]
|
|
81
|
+
except Exception as e:
|
|
82
|
+
logger.warning("Failed to get auth token: %s", e)
|
|
83
|
+
return {}
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
class DataRobotMCPStreamableHTTPClient(MCPStreamableHTTPClient):
|
|
87
|
+
def __init__(
|
|
88
|
+
self,
|
|
89
|
+
url: str,
|
|
90
|
+
auth_provider: AuthProviderBase | None = None,
|
|
91
|
+
user_id: str | None = None,
|
|
92
|
+
tool_call_timeout: timedelta = timedelta(seconds=60),
|
|
93
|
+
auth_flow_timeout: timedelta = timedelta(seconds=300),
|
|
94
|
+
reconnect_enabled: bool = True,
|
|
95
|
+
reconnect_max_attempts: int = 2,
|
|
96
|
+
reconnect_initial_backoff: float = 0.5,
|
|
97
|
+
reconnect_max_backoff: float = 50.0,
|
|
98
|
+
):
|
|
99
|
+
super().__init__(
|
|
100
|
+
url=url,
|
|
101
|
+
auth_provider=auth_provider,
|
|
102
|
+
user_id=user_id,
|
|
103
|
+
tool_call_timeout=tool_call_timeout,
|
|
104
|
+
auth_flow_timeout=auth_flow_timeout,
|
|
105
|
+
reconnect_enabled=reconnect_enabled,
|
|
106
|
+
reconnect_max_attempts=reconnect_max_attempts,
|
|
107
|
+
reconnect_initial_backoff=reconnect_initial_backoff,
|
|
108
|
+
reconnect_max_backoff=reconnect_max_backoff,
|
|
109
|
+
)
|
|
110
|
+
effective_user_id = user_id or (
|
|
111
|
+
auth_provider.config.default_user_id if auth_provider else None
|
|
112
|
+
)
|
|
113
|
+
self._httpx_auth = (
|
|
114
|
+
DataRobotAuthAdapter(auth_provider, effective_user_id) if auth_provider else None
|
|
115
|
+
)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
@register_function_group(config_type=DataRobotMCPClientConfig)
|
|
119
|
+
async def datarobot_mcp_client_function_group(
|
|
120
|
+
config: DataRobotMCPClientConfig, _builder: Builder
|
|
121
|
+
) -> MCPFunctionGroup:
|
|
122
|
+
"""
|
|
123
|
+
Connect to an MCP server and expose tools as a function group.
|
|
124
|
+
|
|
125
|
+
Args:
|
|
126
|
+
config: The configuration for the MCP client
|
|
127
|
+
_builder: The builder
|
|
128
|
+
Returns:
|
|
129
|
+
The function group
|
|
130
|
+
"""
|
|
131
|
+
# Resolve auth provider if specified
|
|
132
|
+
auth_provider = None
|
|
133
|
+
if config.server.auth_provider:
|
|
134
|
+
auth_provider = await _builder.get_auth_provider(config.server.auth_provider)
|
|
135
|
+
|
|
136
|
+
# Build the appropriate client
|
|
137
|
+
if config.server.transport == "stdio":
|
|
138
|
+
if not config.server.command:
|
|
139
|
+
raise ValueError("command is required for stdio transport")
|
|
140
|
+
client = MCPStdioClient(
|
|
141
|
+
config.server.command,
|
|
142
|
+
config.server.args,
|
|
143
|
+
config.server.env,
|
|
144
|
+
tool_call_timeout=config.tool_call_timeout,
|
|
145
|
+
auth_flow_timeout=config.auth_flow_timeout,
|
|
146
|
+
reconnect_enabled=config.reconnect_enabled,
|
|
147
|
+
reconnect_max_attempts=config.reconnect_max_attempts,
|
|
148
|
+
reconnect_initial_backoff=config.reconnect_initial_backoff,
|
|
149
|
+
reconnect_max_backoff=config.reconnect_max_backoff,
|
|
150
|
+
)
|
|
151
|
+
elif config.server.transport == "sse":
|
|
152
|
+
client = MCPSSEClient(
|
|
153
|
+
str(config.server.url),
|
|
154
|
+
tool_call_timeout=config.tool_call_timeout,
|
|
155
|
+
auth_flow_timeout=config.auth_flow_timeout,
|
|
156
|
+
reconnect_enabled=config.reconnect_enabled,
|
|
157
|
+
reconnect_max_attempts=config.reconnect_max_attempts,
|
|
158
|
+
reconnect_initial_backoff=config.reconnect_initial_backoff,
|
|
159
|
+
reconnect_max_backoff=config.reconnect_max_backoff,
|
|
160
|
+
)
|
|
161
|
+
elif config.server.transport == "streamable-http":
|
|
162
|
+
# Use default_user_id for the base client
|
|
163
|
+
base_user_id = auth_provider.config.default_user_id if auth_provider else None
|
|
164
|
+
client = DataRobotMCPStreamableHTTPClient(
|
|
165
|
+
str(config.server.url),
|
|
166
|
+
auth_provider=auth_provider,
|
|
167
|
+
user_id=base_user_id,
|
|
168
|
+
tool_call_timeout=config.tool_call_timeout,
|
|
169
|
+
auth_flow_timeout=config.auth_flow_timeout,
|
|
170
|
+
reconnect_enabled=config.reconnect_enabled,
|
|
171
|
+
reconnect_max_attempts=config.reconnect_max_attempts,
|
|
172
|
+
reconnect_initial_backoff=config.reconnect_initial_backoff,
|
|
173
|
+
reconnect_max_backoff=config.reconnect_max_backoff,
|
|
174
|
+
)
|
|
175
|
+
else:
|
|
176
|
+
raise ValueError(f"Unsupported transport: {config.server.transport}")
|
|
177
|
+
|
|
178
|
+
logger.info("Configured to use MCP server at %s", client.server_name)
|
|
179
|
+
|
|
180
|
+
# Create the MCP function group
|
|
181
|
+
group = MCPFunctionGroup(config=config)
|
|
182
|
+
|
|
183
|
+
# Store shared components for session client creation
|
|
184
|
+
group._shared_auth_provider = auth_provider
|
|
185
|
+
group._client_config = config
|
|
186
|
+
|
|
187
|
+
async with client:
|
|
188
|
+
# Expose the live MCP client on the function group instance so other components
|
|
189
|
+
# (e.g., HTTP endpoints) can reuse the already-established session instead of creating a
|
|
190
|
+
# new client per request.
|
|
191
|
+
group.mcp_client = client
|
|
192
|
+
group.mcp_client_server_name = client.server_name
|
|
193
|
+
group.mcp_client_transport = client.transport
|
|
194
|
+
|
|
195
|
+
all_tools = await client.get_tools()
|
|
196
|
+
tool_overrides = mcp_apply_tool_alias_and_description(all_tools, config.tool_overrides)
|
|
197
|
+
|
|
198
|
+
# Add each tool as a function to the group
|
|
199
|
+
for tool_name, tool in all_tools.items():
|
|
200
|
+
# Get override if it exists
|
|
201
|
+
override = tool_overrides.get(tool_name)
|
|
202
|
+
|
|
203
|
+
# Use override values or defaults
|
|
204
|
+
function_name = override.alias if override and override.alias else tool_name
|
|
205
|
+
description = (
|
|
206
|
+
override.description if override and override.description else tool.description
|
|
207
|
+
)
|
|
208
|
+
|
|
209
|
+
# Create the tool function according to configuration
|
|
210
|
+
tool_fn = mcp_session_tool_function(tool, group)
|
|
211
|
+
|
|
212
|
+
# Normalize optional typing for linter/type-checker compatibility
|
|
213
|
+
single_fn = tool_fn.single_fn
|
|
214
|
+
if single_fn is None:
|
|
215
|
+
# Should not happen because FunctionInfo always sets a single_fn
|
|
216
|
+
logger.warning("Skipping tool %s because single_fn is None", function_name)
|
|
217
|
+
continue
|
|
218
|
+
|
|
219
|
+
input_schema = tool_fn.input_schema
|
|
220
|
+
# Convert NoneType sentinel to None for FunctionGroup.add_function signature
|
|
221
|
+
if input_schema is type(None): # noqa: E721
|
|
222
|
+
input_schema = None
|
|
223
|
+
|
|
224
|
+
# Add to group
|
|
225
|
+
logger.info("Adding tool %s to group", function_name)
|
|
226
|
+
group.add_function(
|
|
227
|
+
name=function_name,
|
|
228
|
+
description=description,
|
|
229
|
+
fn=single_fn,
|
|
230
|
+
input_schema=input_schema,
|
|
231
|
+
converters=tool_fn.converters,
|
|
232
|
+
)
|
|
233
|
+
|
|
234
|
+
yield group
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datarobot-genai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
4
4
|
Summary: Generic helpers for GenAI
|
|
5
5
|
Project-URL: Homepage, https://github.com/datarobot-oss/datarobot-genai
|
|
6
6
|
Author: DataRobot, Inc.
|
|
@@ -63,6 +63,7 @@ Requires-Dist: anyio==4.11.0; extra == 'nat'
|
|
|
63
63
|
Requires-Dist: crewai>=1.1.0; (python_version >= '3.11') and extra == 'nat'
|
|
64
64
|
Requires-Dist: llama-index-llms-litellm<0.7.0,>=0.4.1; extra == 'nat'
|
|
65
65
|
Requires-Dist: nvidia-nat-langchain==1.3.0; (python_version >= '3.11') and extra == 'nat'
|
|
66
|
+
Requires-Dist: nvidia-nat-mcp==1.3.0; (python_version >= '3.11') and extra == 'nat'
|
|
66
67
|
Requires-Dist: nvidia-nat-opentelemetry==1.3.0; (python_version >= '3.11') and extra == 'nat'
|
|
67
68
|
Requires-Dist: nvidia-nat==1.3.0; (python_version >= '3.11') and extra == 'nat'
|
|
68
69
|
Requires-Dist: opentelemetry-instrumentation-crewai<1.0.0,>=0.40.5; extra == 'nat'
|
|
@@ -100,12 +100,14 @@ datarobot_genai/llama_index/agent.py,sha256=V6ZsD9GcBDJS-RJo1tJtIHhyW69_78gM6_fO
|
|
|
100
100
|
datarobot_genai/llama_index/base.py,sha256=ovcQQtC-djD_hcLrWdn93jg23AmD6NBEj7xtw4a6K6c,14481
|
|
101
101
|
datarobot_genai/llama_index/mcp.py,sha256=leXqF1C4zhuYEKFwNEfZHY4dsUuGZk3W7KArY-zxVL8,2645
|
|
102
102
|
datarobot_genai/nat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
|
-
datarobot_genai/nat/agent.py,sha256=
|
|
103
|
+
datarobot_genai/nat/agent.py,sha256=jDeIS9f-8vGbeLy5gQkSjeuHINx5Fh_4BvXYERsgIIk,10516
|
|
104
|
+
datarobot_genai/nat/datarobot_auth_provider.py,sha256=Z4NSsrHxK8hUeiqtK_lryHsUuZC74ziNo_FHbsZgtiM,4230
|
|
104
105
|
datarobot_genai/nat/datarobot_llm_clients.py,sha256=STzAZ4OF8U-Y_cUTywxmKBGVotwsnbGP6vTojnu6q0g,9921
|
|
105
106
|
datarobot_genai/nat/datarobot_llm_providers.py,sha256=aDoQcTeGI-odqydPXEX9OGGNFbzAtpqzTvHHEkmJuEQ,4963
|
|
106
|
-
datarobot_genai
|
|
107
|
-
datarobot_genai-0.2.
|
|
108
|
-
datarobot_genai-0.2.
|
|
109
|
-
datarobot_genai-0.2.
|
|
110
|
-
datarobot_genai-0.2.
|
|
111
|
-
datarobot_genai-0.2.
|
|
107
|
+
datarobot_genai/nat/datarobot_mcp_client.py,sha256=35FzilxNp4VqwBYI0NsOc91-xZm1C-AzWqrOdDy962A,9612
|
|
108
|
+
datarobot_genai-0.2.7.dist-info/METADATA,sha256=dWVPDIxuaXhv5tFM-_yhFvatzWmHzLvZtcC5pM_NsLw,6172
|
|
109
|
+
datarobot_genai-0.2.7.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
110
|
+
datarobot_genai-0.2.7.dist-info/entry_points.txt,sha256=jEW3WxDZ8XIK9-ISmTyt5DbmBb047rFlzQuhY09rGrM,284
|
|
111
|
+
datarobot_genai-0.2.7.dist-info/licenses/AUTHORS,sha256=isJGUXdjq1U7XZ_B_9AH8Qf0u4eX0XyQifJZ_Sxm4sA,80
|
|
112
|
+
datarobot_genai-0.2.7.dist-info/licenses/LICENSE,sha256=U2_VkLIktQoa60Nf6Tbt7E4RMlfhFSjWjcJJfVC-YCE,11341
|
|
113
|
+
datarobot_genai-0.2.7.dist-info/RECORD,,
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
[nat.plugins]
|
|
2
|
+
datarobot_auth_provider = datarobot_genai.nat.datarobot_auth_provider
|
|
2
3
|
datarobot_llm_clients = datarobot_genai.nat.datarobot_llm_clients
|
|
3
4
|
datarobot_llm_providers = datarobot_genai.nat.datarobot_llm_providers
|
|
5
|
+
datarobot_mcp_client = datarobot_genai.nat.datarobot_mcp_client
|
|
File without changes
|
|
File without changes
|
|
File without changes
|