with LMNT and Gloria AI?
Generates a custom voice from a batch of input audio data. See the documentation
Generates an audio file from the provided text. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lmnt: {
type: "app",
app: "lmnt",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lmnt.com/v1/account`,
headers: {
"X-API-Key": `${this.lmnt.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gloria_ai: {
type: "app",
app: "gloria_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.iamgloria.com/api/v1/contact`,
headers: {
Authorization: `Bearer ${this.gloria_ai.$auth.api_key}`,
"tenant-id": `${this.gloria_ai.$auth.tenant_id}`,
},
data,
})
},
})