Global Leader Generative AI for Companies
Executes an AI Agent (template) with the given input. See the documentation
Retrieves the result of a previously executed AI Agent (template). See the documentation
Retrieve AI Agents (templates) that match the specified criteria. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tess_ai_by_pareto: {
type: "app",
app: "tess_ai_by_pareto",
}
},
async run({steps, $}) {
return await axios($, {
method: "GET",
url: `https://tess.pareto.io/api/templates`,
headers: {
Authorization: `Bearer ${this.tess_ai_by_pareto.$auth.api_token}`,
},
params: {
page: `1`,
per_page: `15`,
}
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.