バージョン11.4.x¶
2025年12月19日
このページには、DataRobotのセルフマネージドAIプラットフォーム11.4.0リリースの新機能、機能強化、および修正された問題が記載されています。 これは長期サポート(LTS)リリースではありません。 リリース11.1が最新の長期サポートリリースです。
バージョン11.4.0には、以下の新機能と修正された問題が含まれています。
注目の新機能: エージェント型AI¶
今回のリリースでは、DataRobotはエージェント型製品における開発者体験に焦点を当て、迅速な導入を支援するツールの提供、ローカル開発のサポート、およびフレームワークサポートの拡張を行っています。 MCPサーバーの導入により、エージェント構築プロセスの主要な要素が自動化され、作業の効率化が実現します。
DataRobot CLI¶
DataRobot CLIは、DataRobotのリソース、テンプレート、エージェントアプリケーションを管理するための統一されたコマンドラインインターフェイスを提供します。 開発者向けの対話型の使用と、自動化向けの非対話型モードの両方をサポートしています。 CLIをインストールする詳細な手順については、DataRobot CLIドキュメントを参照してください。
主な機能¶
- 認証:自動かつ安全な資格情報管理を備えたOAuthベースのログイン。 クラウドインスタンス向けのショートカットをサポートし、認証情報はプラットフォーム固有の設定ファイルに保存されます。
- プロジェクトのスキャフォールディング:対話型の
dr templates setupウィザードにより、本番環境で使用可能なアプリケーションテンプレートの探索、クローン作成、設定が可能です。 CLIは、設定完了状況を.datarobot/cli/state.yamlに自動的に記録します。これにより、次回以降の実行では、重複する設定手順を省略できます。 - 統一されたワークフロー:開発ライフサイクルでのタスクベースのコマンドを統合しました。
dr start:初期化、前提条件の検証、クイックスタートスクリプトの実行を自動化します。dr run dev/build/test:開発、構築、テストのワークフローを標準化します。dr dotenv setup:環境変数の設定を簡単にします。- 開発者体験:シェル補完(bash/zsh)、冗長およびデバッグ出力モード、包括的なヘルプドキュメントが含まれます。
CLIの全機能に関する詳細なドキュメントについては、DataRobot CLIドキュメントを参照してください。
DataRobot Agentic Application Starter¶
DataRobot Agentic Application Starterは、エージェントアプリケーションを構築およびデプロイするための本番環境対応のテンプレートであり、ツール連携用のMCP(Model Context Protocol)サーバー、FastAPIバックエンド、Reactフロントエンド、統合されたエージェントランタイムのサポートを含む事前設定されたスタックを備えています。
初期化とデプロイ¶
dr start対話型ウィザード(DataRobot CLIに組み込まれています)は、開発者に向けて、アプリケーションの設定を完了するまでの手順をガイドします。 dr startを実行すると、Agentic Application Starterを含むテンプレートのリストから選択できます。
選択が完了すると、ウィザードによって自動的にリポジトリのクローンが作成され、入力内容に基づいて環境変数が設定されて、すべてのコンポーネントが構成されます。 必要な情報をすべて収集すると、設定が表示され、確認を求められます。
- ローカル開発:
task devを実行して、4つのアプリケーションコンポーネント(フロントエンド、バックエンド、エージェント、MCPサーバー)をすべて並行して起動します。 オプションのChainlitプレイグラウンドインターフェイスでは、アプリケーションスタック全体を使用せずに、エージェントの単体テストが可能です。 - 本番環境へのデプロイ:
dr task run deployを実行して、インフラストラクチャのプロビジョニング(Pulumi経由)、コンテナ化、DataRobotプラットフォームとの連携など、本番環境へのデプロイパイプライン全体を処理します。 このスターターは、Pulumiを通じてインフラストラクチャ・アズ・コード(IaC)を活用して、再現可能なデプロイを実現し、DataRobot内で実行環境、カスタムモデル、デプロイ、ユースケースを自動的に作成します。
中心的な機能¶
- エージェントフレームワークのサポート:LangGraph、CrewAI、Llama-Index、NVIDIA NeMo Agent Toolkit(NAT)、およびカスタムフレームワークと互換性があります。 このテンプレートは、マルチエージェントワークフロー、状態管理、および複雑なエージェントオーケストレーションパターンをサポートする構造化された基盤を提供します。
- MCPサーバー:適切にタグ付けされたDataRobotのデプロイ(予測モデル、カスタムモデル、その他のDataRobotリソース)を自動的に探索し、ツールとして登録します。 カスタムツールの開発、プロンプトテンプレート、およびリソース管理をサポートします。
- セキュリティ:組み込まれているOAuth連携は、Google、BoxなどのエンタープライズIDプロバイダーをサポートし、安全なユーザー認証とセッション管理を可能にします。 このスターターには、資格情報の適切な処理、セッションシークレット、および安全なCookie管理が含まれています。
- LLMの統合:DataRobotのLLM Gateway(デフォルト)、既存のDataRobotテキスト生成デプロイ、およびAzure OpenAI、AWS Bedrock、Google VertexAI、Anthropic、Cohere、TogetherAIを含む外部のLLMプロバイダーをサポートします。 設定は、環境変数または対話型プロンプトで管理できます。
詳細については、DataRobot Agentic Application Starterのドキュメントを参照してください。
NVIDIA NeMo Agent Toolkitの組み込みによって簡単になったエージェント開発¶
DataRobot Agentic Application Starterは、NVIDIA NeMo Agent Toolkit(NAT)をサポートしています。NATはローコードのエージェント開発フレームワークであり、開発者でなくてもコードを記述することなく高度なエージェントワークフローを作成できます。
- YAMLの設定:NATフレームワークは、YAML設定ファイルを通じて完全なエージェントロジックとツール定義を実現します。これにより、コーディングの専門知識がなくても、本番環境対応のエージェントワークフローを作成できます。
- 拡張性:フレームワークは、必要に応じてカスタムPython実装で機能を拡張できる柔軟性を維持しています。
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.
Predictive AI and 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.
データ¶
Support added for Aryn OCR¶
Self-managed and STS deployments can now work with Aryn’s advanced document-parsing API, giving you a more powerful and accurate way to extract information from unstructured documents.
Aryn’s DocsParse engine uses a deep-learning model trained on more than 80,000 real enterprise documents, enabling significantly better understanding of complex layouts, tables, and mixed-format content. When used within DataRobot unstructured knowledge workflow, it helps you create higher-quality vector databases for RAG use cases.
This integration is available as an additional option and requires GPU for document parsing. It does not replace the existing Tesseract OCR engine—you can choose whichever method best fits your data and workflow.
管理¶
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.
View usage information by organization¶
In the Usage Explorer, self-managed administrators can now view GPU, CPU, and LLM usage by specific organizations. To access this organization usage information, open Admin Settings > Usage Explorer and then, click By organization.
コードファースト¶
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クライアントv3.11¶
Pythonクライアントのv3.11が一般提供されました。 v3.11で導入された変更の完全なリストについては、Pythonクライアントの変更履歴を参照してください。
DataRobot REST API v2.40¶
DataRobotのREST API v2.40が一般提供されました。 v2.40で導入された変更の完全なリストについては、REST APIの変更履歴を参照してください。
プラットフォーム¶
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.
Enhanced observability¶
This release provides platform administrators with a pre-configured set of OpenTelemetry collectors to capture logs, metrics, and traces. DataRobot packages hardened versions of all the necessary software; admins only need to enable OpenTelemetry collection and configure a destination for the data. AWS, GCP, Azure, DataDog, and Splunk are all supported. See the administrator's installation guide, or Contact your DataRobot representative, for full details.
リリース11.4.0で修正された問題¶
エージェントの修正¶
RAPTOR-15089:サーバー送信イベント(SSE)の使用時に、ストリーミングチャット補完回答が、逐次ストリーミングされずにバッファリングされていた問題を修正しました。 回答は、意図したとおりにリアルタイムでストリーミングされるようになりました。
データの修正¶
-
DM-19505:Snowflake JDBCドライバーの最新バージョン(3.27.1)が認定されました。
-
DM-19528: Fixes an issue in projects created via the API instead of the UI. If the language set was not attached, it could result in date feature extraction feature suffixes using English instead of Japanese.
-
FLEET-3013:ユースケースのデータセットのAPI呼び出しに関する問題を修正しました。URLに含まれる二重スラッシュにより、意図しないリダイレクトが発生していました。 Now, the extra slash has been removed to ensure correct routing.
コードの修正¶
- CFX-4095: Fixes an issue where ZIP files uploaded in to codespaces were not respecting allowed symlinks.
コアAIの修正¶
-
MODEL-20396: Fixes an issue that prevented time series experiments in NextGen from applying monotonic constraint feature lists correctly.
-
MODEL-21651: Fixes an issue with segmented combined model batch predictions, where they were previously blocked by an incorrect threshold check.
-
PRED-10859: Fixes an issue where the DPE was still serving predictions for a deployment in an inactive state.
-
MMM-21132: Fixes an issue where permanently deleting a model package could cause a UI issue if the model package had previously been affiliated with a deployment as a champion model.
RAPTOR-14945:レジストリのジョブセクションにおけるパッケージインポートエラーの問題を修正しました。 ユーザーは、環境だけでなく、その環境の特定のバージョンや最新バージョンも選択できるようになりました。 セレクターの近くに、追加の環境情報が表示されるようになりました。
プラットフォームの修正¶
-
PLT-19659: The User Activity Monitor now displays changes made to Network Policies.
-
FLEET-3153:
global.extraEnvVarsが指定されている場合に、datarobot-primeHelmチャートのインストールまたはアップグレードが失敗する問題を修正しました。
記載されている製品名および会社名は、各社の商標または登録商標です。 製品名または会社名の使用は、それらとの提携やそれらによる推奨を意味するものではありません。






