with SwarmNode and Datarobot?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swarmnode: {
type: "app",
app: "swarmnode",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.swarmnode.ai/v1/agents/`,
headers: {
Authorization: `Bearer ${this.swarmnode.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})