マネージドSaaS版リリースノート¶
12月にリリースされたSaaS機能のお知らせ¶
2025年12月
このページでは、新たにリリースされ、DataRobotのSaaS型マルチテナントAIプラットフォームで利用できる機能についてのお知らせと、追加情報へのリンクを掲載しています。 リリースセンターからは、過去にリリースされた機能のお知らせや、セルフマネージドAIプラットフォームのリリースノートにもアクセスできます。
エージェント型AI¶
BYO LLMs now available for select compliance tests¶
This release brings the ability to customize the LLM used in assessing whether a response is appropriate. By default, DataRobot uses GPT-4o because of its performance, but for the following tests, the LLM is configurable.
- ジェイルブレイク
- 毒性
- PII
This broadens the usefulness of compliance tests for those organizations that prohibit use of GPT or those that want to employ a BYO LLM.
TogetherAI LLM deprecated¶
With this release, and as of November 28, 2025, TogetherAI's Mistral-7B-Instruct-v0.1 has been retired. See the availability page for a full list of supported and retired LLMs.
予測とMLOps¶
Access quota monitoring on the Usage tab¶
The Quota monitoring dashboard appears on the Usage tab for agentic and NIM deployments, providing visibility into API usage and rate limiting to help administrators track and manage quota consumption more effectively. This dashboard provides filterable charts and tables displaying information on total requests, total rate limited requests, total token count, and average concurrent requests for the deployment, including access to request tracing details.
For more information, see the quota monitoring documentation.
Custom association IDs and metrics in chat completion requests¶
For DataRobot-deployed text generation and agentic workflow custom models implementing the Bolt-on Governance API (chat completions), specify custom association IDs and report custom metrics directly within chat completion requests using the extra_body field. This enhancement provides more granular monitoring and governance capabilities for custom models integrated via DataRobot’s Bolt-on Governance API.
extra_body = {
# These values pass through to the LLM
"llm_id": "azure-gpt-6",
# If set here, replaces the auto-generated association ID
"datarobot_association_id": "my_association_id_0001",
# DataRobot captures these for custom metrics
"datarobot_metrics": {
"field1": 24,
"field2": 25
}
}
completion = openai_client.chat.completions.create(
model="datarobot-deployed-llm",
messages=[
{"role": "system", "content": "Explain your thoughts using at least 100 words."},
{"role": "user", "content": prompt},
],
max_tokens=512,
extra_body=extra_body
)
print(completion.choices[0].message.content)
詳細については、ボルトオンのガバナンスAPIのドキュメントを参照してください。
Manage custom job environment¶
From the Assemble tab for a custom job, change the selected environment, update the environment version, or view the environment information. If a newer version of the environment is available, a notification appears, and you can click Use latest to update the custom job to use the most recent version with a successful build.
For more information, see the custom job environment management documentation.
プラットフォーム¶
View how assets are handled upon Use Case deletion¶
When you delete a Use Case, DataRobot now displays a window detailing how each Use Case asset will be handled, specifically, which assets will be permanently deleted and which assets will be unlinked from the Use Case but remain accessible in Registry. This provides greater visibility into the effect of deleting a Use Case with assets already associated with it.
管理¶
Grant tenant-wide consent for Microsoft OAuth providers¶
This feature allows administrators to grant tenant-wide consent for user permissions required by the DataRobot application in Microsoft Entra ID. In Azure, by default, user permissions are not granted to individual user resources, requiring personal user consent when authorizing a Microsoft OAuth provider. When enabled, users also no longer receive consent prompts.
コードファースト¶
Configure Kubernetes for notebooks¶
For Self-Managed and STS users, a notebooks' runner service now has the ability to configure (alter the default) Kubernetes liveness and startup probes.
Python client v3.11¶
Python client v3.11 is now generally available. For a complete list of changes introduced in v3.11, see the Python client changelog.
DataRobot REST API v2.40¶
DataRobot's v2.40 for the REST API is now generally available. For a complete list of changes introduced in v2.40, see the REST API changelog.
記載されている製品名および会社名は、各社の商標または登録商標です。 製品名または会社名の使用は、それらとの提携やそれらによる推奨を意味するものではありません。


