with LMNT and Limitless.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: {
limitless_ai: {
type: "app",
app: "limitless_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.limitless.ai/v1/lifelogs`,
headers: {
"x-api-key": `${this.limitless_ai.$auth.api_key}`,
},
})
},
})