with AirOps and CustomGPT?
Run a workflow of an app. See the sync documentation or async documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airops: {
type: "app",
app: "airops",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.airops.com/public_api/airops_apps/executions`,
headers: {
Authorization: `Bearer ${this.airops.$auth.workspace_api_key}`,
"accept": `application/json`,
},
})
},
})
CustomGPT API harnesses the power of generative AI to create custom chatbots tailored to specific needs or data sets. With Pipedream's serverless platform, you can integrate CustomGPT into complex workflows, triggering custom AI responses based on events from over 800+ apps. Automate tasks like customer support, personalized content creation, or data analysis by tapping into the rich capabilities of CustomGPT and Pipedream's seamless orchestration.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
customgpt: {
type: "app",
app: "customgpt",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.customgpt.ai/api/v1/projects`,
headers: {
Authorization: `Bearer ${this.customgpt.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})