Run Python compute workloads anywhere, with only a predict function.
The Function API allows you to run code snippets in various programming languages directly through API calls. This capability can extend Pipedream workflows by enabling custom logic processing, data transformation, or any operation that requires server-side code execution without deploying or managing servers. By using the Function API, you can incorporate code that's beyond the native actions available within Pipedream, offering a flexible and powerful way to handle complex tasks in your automations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
function: {
type: "app",
app: "function",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.fxn.ai/user`,
headers: {
Authorization: `Bearer ${this.function.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform";
import FormData from "form-data";
import request from "request";
export default defineComponent({
props: {
llamaindex: {
type: "app",
app: "llamaindex",
}
},
async run({steps, $}) {
const data = new FormData();
data.append("file", request("https://www.learningcontainer.com/wp-content/uploads/2019/09/sample-pdf-file.pdf"));
return await axios($, {
method: "POST",
url: `${this.llamaindex.$auth.url}/api/parsing/upload`,
headers: {
"Content-Type": `multipart/form-data`,
Authorization: `Bearer ${this.llamaindex.$auth.api_key}`,
},
data,
})
},
})