Enterprise AI
DataRobot offers an AI platform that empowers users to build and deploy predictive models. Through its API, you can manage datasets, kick off model training, retrieve predictive scores, and integrate machine learning insights into your business processes. With Pipedream, you can create serverless workflows that leverage DataRobot's capabilities, enabling a powerful synergy between machine learning and everyday business automation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
datarobot: {
type: "app",
app: "datarobot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.datarobot.com/api/v2/projects/`,
headers: {
Authorization: `Bearer ${this.datarobot.$auth.api_key}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.