import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jina_reader: {
type: "app",
app: "jina_reader",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://r.jina.ai/https%3A%2F%2Fpipedream.com`,
headers: {
Authorization: `Bearer ${this.jina_reader.$auth.api_key}`,
},
})
},
})
Converts a provided URL to an LLM-friendly input using Jina Reader. See the documentation
Jina Reader uses API keys for authentication. When you connect your Jina Reader account, Pipedream securely stores the keys so you can easily authenticate to Jina Reader APIs in both code and no-code steps.