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`,
}
})
},
})
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
Tess AI by Pareto uses API keys for authentication. When you connect your Tess AI by Pareto account, Pipedream securely stores the keys so you can easily authenticate to Tess AI by Pareto APIs in both code and no-code steps.