with Thoughtful GPT and Acronis Cyber Protect Cloud?
Processes given content using a specified macro. See the documentation
Analyzes provided CSV data, generates queries, and creates data visualizations. See the documentation
The Thoughtful GPT API lets you integrate advanced natural language processing into your workflows on Pipedream. Tap into the power of generative AI to create content, analyze text, or automate responses. With Pipedream, harness this API in serverless workflows that trigger from numerous events and connect to other apps for expanded functionality.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
thoughtful_gpt: {
type: "app",
app: "thoughtful_gpt",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.thoughtfulgpt.com/api/automations/me/`,
params: {
api_key: `${this.thoughtful_gpt.$auth.relay_api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
acronis_cyber_protect_cloud: {
type: "app",
app: "acronis_cyber_protect_cloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.acronis_cyber_protect_cloud.$auth.data_center_url}/api/2/clients/${this.acronis_cyber_protect_cloud.$auth.client_id}`,
headers: {
Authorization: `Bearer ${this.acronis_cyber_protect_cloud.$auth.oauth_access_token}`,
},
})
},
})