AI notetaker - Transcribe, analyse and summarize your calls and meetings.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leexi: {
type: "app",
app: "leexi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://public-api.leexi.ai/v1/users`,
auth: {
username: `${this.leexi.$auth.api_key_id}`,
password: `${this.leexi.$auth.api_key_secret}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})