with Greenhouse Job Board and Replicate?
Cancel a specific prediction identified by Id. See the documentation
Get a specific prediction identified by Id. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
greenhouse_job_board_api: {
type: "app",
app: "greenhouse_job_board_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://boards-api.greenhouse.io/v1/boards/${this.greenhouse_job_board_api.$auth.board_token}/jobs`,
headers: {
"accept": `application/json`,
},
})
},
})
The Replicate API allows you to access a wide array of machine learning models for tasks such as image generation, text-to-image, and more. Using Pipedream, you can orchestrate these models to automate content creation, analyze media, or enhance data with AI-generated insights. Pipedream's serverless platform empowers you to create workflows that react to events, schedule tasks, and integrate with numerous other services, all harnessing the power of Replicate's AI models.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
replicate: {
type: "app",
app: "replicate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.replicate.com/v1/predictions`,
headers: {
"Authorization": `Token ${this.replicate.$auth.api_key}`,
},
})
},
})