with Hullo and wit.ai?
Adds a new member or updates an existing member's data in Hullo. See the documentation
Sends a personalized message to a Hullo member. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hullo: {
type: "app",
app: "hullo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.hullo.me/api/endpoints/account`,
headers: {
"X-API-KEY": `${this.hullo.$auth.api_key}`,
},
})
},
})
Wit.ai API enables your apps to process natural language and understand human commands contextually. With it, you can build conversational interfaces, decipher intent from text or voice inputs, and train your model to improve recognition. Pipedream provides a seamless platform to trigger workflows using this API, allowing the automation of tasks based on language cues. It's perfect for crafting custom bots, enhancing customer service, or streamlining internal operations by interpreting human requests and taking action accordingly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wit_ai: {
type: "app",
app: "wit_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.wit.ai/message?v=20170307&q=hello`,
headers: {
Authorization: `Bearer ${this.wit_ai.$auth.app_token}`,
},
})
},
})