with Jina Reader and Zoho Tables?
Converts a provided URL to an LLM-friendly input using Jina Reader. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_tables: {
type: "app",
app: "zoho_tables",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://tables.${this.zoho_tables.$auth.base_api_url}/api/v1/portals`,
headers: {
Authorization: `Bearer ${this.zoho_tables.$auth.oauth_access_token}`,
},
})
},
})