AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Datarobot Model Deployment

skill-datarobot-oss-datarobot-agent-skills-datarobot-model-deployment · by datarobot-oss

Tools and guidance for deploying DataRobot models, managing deployments, configuring prediction environments, and deployment operations. Use when deploying models, creating or updating deployments, or configuring prediction environments.

No reviews yet
0 installs
27 views
0.0% view→install

Install

$ agentstack add skill-datarobot-oss-datarobot-agent-skills-datarobot-model-deployment

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-datarobot-oss-datarobot-agent-skills-datarobot-model-deployment)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Datarobot Model Deployment? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

DataRobot Model Deployment Skill

This skill provides comprehensive guidance for deploying models, managing deployment configurations, and operating production deployments.

Quick Start

Most common use case: Deploy a trained model to production

  1. Get best model: Find the best model from a project (highest metric score)
  2. Create deployment: create_deployment(model_id, deployment_name) to deploy model
  3. Get endpoint: get_deployment_endpoint(deployment_id) to retrieve prediction URL

Example: "Deploy the best model from project abc123 as 'Sales Prediction v1'"

When to use this skill

Use this skill when you need to:

  • Deploy trained models to production
  • Configure deployment settings and environments
  • Manage multiple deployments
  • Replace a deployment’s champion model with a new model version
  • Configure prediction servers and environments
  • Monitor deployment health and status
  • Manage deployment access and permissions

Key capabilities

1. Deployment Creation

  • Deploy models from projects or registered models
  • Choose prediction environment (DataRobot Serverless, external)
  • Configure deployment settings (challenger models, A/B testing)
  • Set up deployment metadata and descriptions

2. Deployment Configuration

  • Configure prediction servers and environments
  • Set up batch prediction settings
  • Configure real-time prediction endpoints
  • Manage deployment credentials and access

3. Deployment Management

  • Replace deployment champion model (model swap)
  • Enable/disable deployments
  • Manage challenger models for A/B testing
  • Configure replacement policies

4. Deployment Operations

  • Get deployment information and status
  • Retrieve deployment endpoints
  • Manage deployment settings
  • Handle deployment errors and issues

Workflow examples

Example 1: Deploy a model to production

User request: "Deploy the best model from project abc123 to production with the name 'Sales Prediction v1'."

Agent workflow:

  1. Get the best model from the project (highest metric score)
  2. Create a new deployment with the model
  3. Configure deployment settings (name, description, environment)
  4. Set up prediction environment (DataRobot Serverless recommended)
  5. Retrieve deployment endpoint and credentials
  6. Verify deployment is active and ready for predictions

Example 2: Update deployment with new model

User request: "Replace the model in deployment xyz789 with the latest model from project abc123."

Agent workflow:

  1. Get the latest model from the project
  2. Retrieve current deployment information
  3. Validate the replacement model is eligible (deployment.validate_replacement_model(...))
  4. Perform model replacement (deployment.perform_model_replace(...))
  5. Verify replacement completed successfully
  6. Report deployment update status

Using DataRobot SDK

This skill guides you to use the DataRobot Python SDK directly. Install the SDK if needed:

pip install datarobot

Key SDK Operations

Use these DataRobot SDK methods for deployment management:

Deployments:

  • dr.Deployment.create_from_learning_model(model_id, label) - Create deployment
  • dr.Deployment.get(deployment_id) - Get deployment details
  • dr.Deployment.list(project_id) - List deployments
  • deployment.delete() - Delete deployment

Model Replacement (champion swap):

  • deployment.validate_replacement_model(new_model_id=...) - Validate replacement eligibility
  • deployment.perform_model_replace(new_model_id=..., reason=...) - Replace champion model (async)

Challenger Models (limited via SDK):

  • deployment.list_challengers() - List challenger models (if enabled/configured)
  • deployment.get_challenger_models_settings() / deployment.update_challenger_models_settings(...) - Configure challenger models settings

Deployment Info:

  • deployment.get_features() - Get required features

See the [Common Patterns](#common-patterns) section below for complete examples.

Best practices

  1. Naming conventions: Use clear, versioned names for deployments
  2. Environment selection: Choose appropriate prediction environment for your use case
  3. Challenger models: Use challenger models to test new models before full replacement
  4. Monitoring: Set up monitoring and alerts for production deployments
  5. Documentation: Document deployment purpose, model version, and configuration
  6. Access control: Configure appropriate access permissions for deployments

Common patterns

Pattern 1: Standard deployment

import datarobot as dr
import os

# Initialize client
client = dr.Client(
    token=os.getenv("DATAROBOT_API_TOKEN"),
    endpoint=os.getenv("DATAROBOT_ENDPOINT")
)

# Get best model from project
models = dr.Model.list("abc123")
best_model = max(models, key=lambda m: m.metrics.get('AUC', 0))

# Create deployment
deployment = dr.Deployment.create_from_learning_model(
    model_id=best_model.id,
    label="Sales Prediction v1",
    description="Production deployment for sales forecasting"
)

print(f"Deployment created: {deployment.id}")

Pattern 2: Deployment with challenger

import datarobot as dr

# Create deployment with primary model
deployment = dr.Deployment.create_from_learning_model(
    model_id=primary_model.id,
    label="Sales Prediction v2"
)

# List challengers (if challenger models are configured/enabled)
challengers = deployment.list_challengers()
print(f"Challengers: {len(challengers)}")

Deployment environments

DataRobot Serverless

  • Fully managed prediction environment
  • Automatic scaling
  • No infrastructure management
  • Recommended for most use cases

External deployment

  • Deploy to your own infrastructure
  • More control over resources
  • Requires infrastructure management
  • Use for specific compliance or performance requirements

Deployment lifecycle

  1. Create: Deploy model to production environment
  2. Monitor: Track predictions, performance, and health
  3. Update: Replace with new model versions as needed
  4. Retire: Disable or archive old deployments

Error handling

Common errors and solutions:

  • Model not found: Verify model ID and project access
  • Deployment creation failures: Check prediction environment availability
  • Endpoint access issues: Verify credentials and permissions
  • Update failures: Ensure new model is compatible with deployment settings

SDK Setup

Install DataRobot SDK

pip install datarobot

Initialize Client

import datarobot as dr
import os

client = dr.Client(
    token=os.getenv("DATAROBOT_API_TOKEN"),
    endpoint=os.getenv("DATAROBOT_ENDPOINT", "https://app.datarobot.com")
)

Resources

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.