with ChartHop and Eden AI?
Emit new event when a new employee is added to the organization. See the documentation
Emit new event when a new group is added to the organization. See the documentation
Emit new event when a new job is added to the organization. See the documentation
Analyzes sentiment in the provided text. See the documentation
Detects AI content in the provided text. See the documentation
Generates an audio from the provided text. See the documentation
Generates an image from the provided description. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
charthop: {
type: "app",
app: "charthop",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.charthop.com/v1/user/me`,
headers: {
Authorization: `Bearer ${this.charthop.$auth.api_token}`,
},
})
},
})
Eden AI provides a simple API for integrating a variety of AI services from different providers. On Pipedream, you can leverage Eden AI to automate tasks that involve natural language processing, computer vision, and other AI capabilities. By connecting Eden AI with other apps, you can create powerful workflows for data enrichment, content moderation, or sentiment analysis without extensive AI expertise.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
eden_ai: {
type: "app",
app: "eden_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.edenai.run/v2/ocr/custom_document_parsing_async`,
headers: {
Authorization: `Bearer ${this.eden_ai.$auth.api_key}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
})
},
})