import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tldr: {
type: "app",
app: "tldr",
}
},
async run({steps, $}) {
const data = {
"responseLength": 1,
"responseStyle": "Funny",
"inputText": "Lorem ipsum dolor sit amet..."
}
return await axios($, {
method: "post",
url: `https://runtldr.com/apis/v1/summarize`,
headers: {
Authorization: `Bearer ${this.tldr.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})
Reads in a piece of text and distills the main points. See the documentation
TLDR uses API keys for authentication. When you connect your TLDR account, Pipedream securely stores the keys so you can easily authenticate to TLDR APIs in both code and no-code steps.