with Botpress and JoggAI?
Emit new event from bot is created. See the documentation
Emit new event when the status of a video changes in JoggAI.
Adds a participant to a conversation. See the documentation
Creates an AI avatar photo using JoggAI API. See the documentation
Creates an avatar video using JoggAI API. See the documentation
Creates a product from product info using JoggAI API. See the documentation
Botpress is a powerful, open-source chatbot platform that enables developers to create intelligent, conversational bots. With its natural language understanding (NLU) capabilities, users can design bots that can interpret human language and respond appropriately. Utilizing the Botpress API on Pipedream allows you to automate interactions, analyze chat data, and integrate with various other services to enhance the functionality of your bots.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
botpress: {
type: "app",
app: "botpress",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.botpress.cloud/v1/chat/users`,
headers: {
Authorization: `Bearer ${this.botpress.$auth.identity_token}`,
"Content-Type": `application/json`,
"x-bot-id": `${this.botpress.$auth.bot_id}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
joggai: {
type: "app",
app: "joggai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.jogg.ai/v1/templates`,
headers: {
"x-api-key": `${this.joggai.$auth.api_key}`,
},
})
},
})