with Hullo and Scale AI?
Adds a new member or updates an existing member's data in Hullo. See the documentation
Create a document transcription task. See the documentation
Sends a personalized message to a Hullo member. See the documentation
Create an image annotation task. See the documentation
Create a text annotation task. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hullo: {
type: "app",
app: "hullo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.hullo.me/api/endpoints/account`,
headers: {
"X-API-KEY": `${this.hullo.$auth.api_key}`,
},
})
},
})
Scale AI offers an API to automate and streamline data labeling for machine learning applications, providing access to a global workforce and sophisticated tools. With Scale AI's API on Pipedream, you can integrate scalable data annotation workflows directly into your apps. Trigger tasks, manage datasets, and receive annotated data, all within Pipedream's serverless platform. This enables seamless automation of labeling tasks, integration with machine learning pipelines, and real-time updates on annotations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
scale_ai: {
type: "app",
app: "scale_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.scale.com/v1/teams`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.scale_ai.$auth.api_key}`,
password: ``,
},
})
},
})